Skip to content

Commit 616d9ca

Browse files
semantic-release-botvansergen
authored andcommitted
chore(release): 1.0.0 [skip ci]
## 1.0.0 (2022-08-16) ### ⚠ BREAKING CHANGES * rename `Kauai` to `Binden` * drop Node.js `<18.7.0` support ### Features * add `Context` ([ebfc75d](ebfc75d)) * add `Kauai` ([dab27ab](dab27ab)) * add `KauaiError` ([9498106](9498106)) * add `KauaiRequest` ([4986039](4986039)) * add `KauaiResponse` ([2313985](2313985)) * add `Middleware` ([86e96fb](86e96fb)) * add `Router` ([55f2780](55f2780)) * add logger ([7157667](7157667)) * **Headers:** add `Content-Encoding` ([82d1cc2](82d1cc2)) * **Headers:** add `Content-Type` ([f9fc897](f9fc897)) * **headers:** add `Forwarded` ([abe665c](abe665c)) * **Headers:** add `If-Modified-Since` ([1a894b9](1a894b9)) * **headers:** add Content-Range ([a0f68a0](a0f68a0)) * **headers:** add Cookie ([e78474e](e78474e)) * **headers:** add Range ([2473776](2473776)) * **Headers:** add the `Accept-Encoding` header ([a26a658](a26a658)) * **KauaiRequest:** parse the `Cookie` header ([4c4fb44](4c4fb44)) * **KauaiRequest:** parse the `Forwarded` header ([bfb9080](bfb9080)) * **KauaiRequest:** parse the `Range` header ([a555d7e](a555d7e)) ### Bug Fixes * **KauaiResponse:** allow the `.json()` method to accept arrays ([8637ac8](8637ac8)) ### Performance Improvements * add `id` to the `KauaiRequest` class ([8b2048c](8b2048c)) * **Context:** add the `.setHeader()` method ([4e48d2e](4e48d2e)) * drop Node.js `<18.7.0` support ([7cb854e](7cb854e)) * **Headers:** add the `Authorization` header ([dc53f28](dc53f28)) * **sendFile:** add partial request support ([b319879](b319879)) ### Dependencies * add `@binden/logger` ([e38d95f](e38d95f)) * add `@kauai/logger` ([998056b](998056b)) * add `pino` ([6a449ac](6a449ac)) * remove `pino` ([753452c](753452c)) * upgrade `@kauai/logger` to `v1.0.1` ([5d500df](5d500df)) * upgrade `pino` to `v6.12.0` ([eb8d21f](eb8d21f)) * upgrade `pino` to `v6.13.0` ([13f7e8a](13f7e8a)) ### Miscellaneous Chores * rename `Kauai` to `Binden` ([17b83ed](17b83ed))
1 parent 8602d40 commit 616d9ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+96113
-1
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Changelog
2+
3+
## 1.0.0 (2022-08-16)
4+
5+
### ⚠ BREAKING CHANGES
6+
7+
- rename `Kauai` to `Binden`
8+
- drop Node.js `<18.7.0` support
9+
10+
### Features
11+
12+
- add `Context` ([ebfc75d](https://github.com/binden-js/binden/commit/ebfc75da9037280b9f3ebfbb8c301fe5f6ddf30f))
13+
- add `Kauai` ([dab27ab](https://github.com/binden-js/binden/commit/dab27ab82e5995b2a062b69d4d1308abc48c9e28))
14+
- add `KauaiError` ([9498106](https://github.com/binden-js/binden/commit/949810618e9f96b178376a8604d9c4e146d0a701))
15+
- add `KauaiRequest` ([4986039](https://github.com/binden-js/binden/commit/4986039f9050e3c2619a6ee73781958a457e8f3b))
16+
- add `KauaiResponse` ([2313985](https://github.com/binden-js/binden/commit/23139857603b301d40a4bb3502b4245384d127b0))
17+
- add `Middleware` ([86e96fb](https://github.com/binden-js/binden/commit/86e96fb548ce68de8294626eaf0f4ffbdfa7ab82))
18+
- add `Router` ([55f2780](https://github.com/binden-js/binden/commit/55f27806fdb7499b5174f8f44303aa4f31f00a97))
19+
- add logger ([7157667](https://github.com/binden-js/binden/commit/7157667f7506c2b6f393454294c5edbbf382e7d0))
20+
- **Headers:** add `Content-Encoding` ([82d1cc2](https://github.com/binden-js/binden/commit/82d1cc25aa43cdeb1e1da288002923768a632ed4))
21+
- **Headers:** add `Content-Type` ([f9fc897](https://github.com/binden-js/binden/commit/f9fc8974c9d76eb09005169462edd8f7b3892bf9))
22+
- **headers:** add `Forwarded` ([abe665c](https://github.com/binden-js/binden/commit/abe665cdf00d0ad1957d6682e4e1dd824ddf0d02))
23+
- **Headers:** add `If-Modified-Since` ([1a894b9](https://github.com/binden-js/binden/commit/1a894b99806eb37ba21400aaa5fcbff49022425b))
24+
- **headers:** add Content-Range ([a0f68a0](https://github.com/binden-js/binden/commit/a0f68a0d8621690229be04389ad6d921ce529fca))
25+
- **headers:** add Cookie ([e78474e](https://github.com/binden-js/binden/commit/e78474ef61dbdf62255a3b03f767d9c27542a110))
26+
- **headers:** add Range ([2473776](https://github.com/binden-js/binden/commit/247377654c233ce78f32437ffd91f646124439a0))
27+
- **Headers:** add the `Accept-Encoding` header ([a26a658](https://github.com/binden-js/binden/commit/a26a6589cc1d3dd504fc395ec8d905256d49c07f))
28+
- **KauaiRequest:** parse the `Cookie` header ([4c4fb44](https://github.com/binden-js/binden/commit/4c4fb4427555e1c311570d214ee9cbd81555582e))
29+
- **KauaiRequest:** parse the `Forwarded` header ([bfb9080](https://github.com/binden-js/binden/commit/bfb908069147a6b76d1fa565a3a0981e6b90d176))
30+
- **KauaiRequest:** parse the `Range` header ([a555d7e](https://github.com/binden-js/binden/commit/a555d7ebbecb81a6dc55ef117658a7f257f74e5a))
31+
32+
### Bug Fixes
33+
34+
- **KauaiResponse:** allow the `.json()` method to accept arrays ([8637ac8](https://github.com/binden-js/binden/commit/8637ac8a527340eb411826000f7c33a5e81e2c0e))
35+
36+
### Performance Improvements
37+
38+
- add `id` to the `KauaiRequest` class ([8b2048c](https://github.com/binden-js/binden/commit/8b2048cdda85dba7d3b05824b074b41ded8a1b2e))
39+
- **Context:** add the `.setHeader()` method ([4e48d2e](https://github.com/binden-js/binden/commit/4e48d2e2cde9dd0deb7c9805a2feea962d78a7db))
40+
- drop Node.js `<18.7.0` support ([7cb854e](https://github.com/binden-js/binden/commit/7cb854ee216e7b02a3d4cf942afc05a93cbfbf8b))
41+
- **Headers:** add the `Authorization` header ([dc53f28](https://github.com/binden-js/binden/commit/dc53f28a5bd7267f8eca3cdf640993afb5c34a45))
42+
- **sendFile:** add partial request support ([b319879](https://github.com/binden-js/binden/commit/b31987905e553393cf71d5a62930ecaa06d054a4))
43+
44+
### Dependencies
45+
46+
- add `@binden/logger` ([e38d95f](https://github.com/binden-js/binden/commit/e38d95f95eb2e85f2c0a40ce65d50bbd610d543c))
47+
- add `@kauai/logger` ([998056b](https://github.com/binden-js/binden/commit/998056b3dc208ac2b84546bf3227af4cbf8f9a1b))
48+
- add `pino` ([6a449ac](https://github.com/binden-js/binden/commit/6a449ac25e64be022752ea4b7b5c9cdef91cb631))
49+
- remove `pino` ([753452c](https://github.com/binden-js/binden/commit/753452cbeb68ebab380d161ec84fd83714c0c3b0))
50+
- upgrade `@kauai/logger` to `v1.0.1` ([5d500df](https://github.com/binden-js/binden/commit/5d500df1aeec5b3303a163ec6b5ff3bf945014b2))
51+
- upgrade `pino` to `v6.12.0` ([eb8d21f](https://github.com/binden-js/binden/commit/eb8d21f49a8367fdeee2f87a3613c98935750629))
52+
- upgrade `pino` to `v6.13.0` ([13f7e8a](https://github.com/binden-js/binden/commit/13f7e8a92d4445db662dd7c2250dffacd845394a))
53+
54+
### Miscellaneous Chores
55+
56+
- rename `Kauai` to `Binden` ([17b83ed](https://github.com/binden-js/binden/commit/17b83ed23df79a1baf934742af9677a1c440651d))

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/assets/highlight.css

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
:root {
2+
--light-hl-0: #000000;
3+
--dark-hl-0: #d4d4d4;
4+
--light-hl-1: #af00db;
5+
--dark-hl-1: #c586c0;
6+
--light-hl-2: #001080;
7+
--dark-hl-2: #9cdcfe;
8+
--light-hl-3: #a31515;
9+
--dark-hl-3: #ce9178;
10+
--light-hl-4: #0000ff;
11+
--dark-hl-4: #569cd6;
12+
--light-hl-5: #0070c1;
13+
--dark-hl-5: #4fc1ff;
14+
--light-hl-6: #795e26;
15+
--dark-hl-6: #dcdcaa;
16+
--light-hl-7: #267f99;
17+
--dark-hl-7: #4ec9b0;
18+
--light-hl-8: #098658;
19+
--dark-hl-8: #b5cea8;
20+
--light-hl-9: #008000;
21+
--dark-hl-9: #6a9955;
22+
--light-hl-10: #000000ff;
23+
--dark-hl-10: #d4d4d4;
24+
--light-hl-11: #ee0000;
25+
--dark-hl-11: #d7ba7d;
26+
--light-hl-12: #811f3f;
27+
--dark-hl-12: #d16969;
28+
--light-code-background: #ffffff;
29+
--dark-code-background: #1e1e1e;
30+
}
31+
32+
@media (prefers-color-scheme: light) {
33+
:root {
34+
--hl-0: var(--light-hl-0);
35+
--hl-1: var(--light-hl-1);
36+
--hl-2: var(--light-hl-2);
37+
--hl-3: var(--light-hl-3);
38+
--hl-4: var(--light-hl-4);
39+
--hl-5: var(--light-hl-5);
40+
--hl-6: var(--light-hl-6);
41+
--hl-7: var(--light-hl-7);
42+
--hl-8: var(--light-hl-8);
43+
--hl-9: var(--light-hl-9);
44+
--hl-10: var(--light-hl-10);
45+
--hl-11: var(--light-hl-11);
46+
--hl-12: var(--light-hl-12);
47+
--code-background: var(--light-code-background);
48+
}
49+
}
50+
51+
@media (prefers-color-scheme: dark) {
52+
:root {
53+
--hl-0: var(--dark-hl-0);
54+
--hl-1: var(--dark-hl-1);
55+
--hl-2: var(--dark-hl-2);
56+
--hl-3: var(--dark-hl-3);
57+
--hl-4: var(--dark-hl-4);
58+
--hl-5: var(--dark-hl-5);
59+
--hl-6: var(--dark-hl-6);
60+
--hl-7: var(--dark-hl-7);
61+
--hl-8: var(--dark-hl-8);
62+
--hl-9: var(--dark-hl-9);
63+
--hl-10: var(--dark-hl-10);
64+
--hl-11: var(--dark-hl-11);
65+
--hl-12: var(--dark-hl-12);
66+
--code-background: var(--dark-code-background);
67+
}
68+
}
69+
70+
:root[data-theme="light"] {
71+
--hl-0: var(--light-hl-0);
72+
--hl-1: var(--light-hl-1);
73+
--hl-2: var(--light-hl-2);
74+
--hl-3: var(--light-hl-3);
75+
--hl-4: var(--light-hl-4);
76+
--hl-5: var(--light-hl-5);
77+
--hl-6: var(--light-hl-6);
78+
--hl-7: var(--light-hl-7);
79+
--hl-8: var(--light-hl-8);
80+
--hl-9: var(--light-hl-9);
81+
--hl-10: var(--light-hl-10);
82+
--hl-11: var(--light-hl-11);
83+
--hl-12: var(--light-hl-12);
84+
--code-background: var(--light-code-background);
85+
}
86+
87+
:root[data-theme="dark"] {
88+
--hl-0: var(--dark-hl-0);
89+
--hl-1: var(--dark-hl-1);
90+
--hl-2: var(--dark-hl-2);
91+
--hl-3: var(--dark-hl-3);
92+
--hl-4: var(--dark-hl-4);
93+
--hl-5: var(--dark-hl-5);
94+
--hl-6: var(--dark-hl-6);
95+
--hl-7: var(--dark-hl-7);
96+
--hl-8: var(--dark-hl-8);
97+
--hl-9: var(--dark-hl-9);
98+
--hl-10: var(--dark-hl-10);
99+
--hl-11: var(--dark-hl-11);
100+
--hl-12: var(--dark-hl-12);
101+
--code-background: var(--dark-code-background);
102+
}
103+
104+
.hl-0 {
105+
color: var(--hl-0);
106+
}
107+
.hl-1 {
108+
color: var(--hl-1);
109+
}
110+
.hl-2 {
111+
color: var(--hl-2);
112+
}
113+
.hl-3 {
114+
color: var(--hl-3);
115+
}
116+
.hl-4 {
117+
color: var(--hl-4);
118+
}
119+
.hl-5 {
120+
color: var(--hl-5);
121+
}
122+
.hl-6 {
123+
color: var(--hl-6);
124+
}
125+
.hl-7 {
126+
color: var(--hl-7);
127+
}
128+
.hl-8 {
129+
color: var(--hl-8);
130+
}
131+
.hl-9 {
132+
color: var(--hl-9);
133+
}
134+
.hl-10 {
135+
color: var(--hl-10);
136+
}
137+
.hl-11 {
138+
color: var(--hl-11);
139+
}
140+
.hl-12 {
141+
color: var(--hl-12);
142+
}
143+
pre,
144+
code {
145+
background: var(--code-background);
146+
}

0 commit comments

Comments
 (0)