@twin.org/api-server-fastify 0.0.3-next.2 → 0.0.3-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/docs/changelog.md +51 -0
  2. package/package.json +4 -4
package/docs/changelog.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # @twin.org/api-server-fastify - Changelog
2
2
 
3
+ ## [0.0.3-next.4](https://github.com/twinfoundation/api/compare/api-server-fastify-v0.0.3-next.3...api-server-fastify-v0.0.3-next.4) (2025-11-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * add authentication generators and process features option ([a67edf1](https://github.com/twinfoundation/api/commit/a67edf1df212bd8ab94a40cddf5338551155696f))
9
+ * add context id features ([#42](https://github.com/twinfoundation/api/issues/42)) ([0186055](https://github.com/twinfoundation/api/commit/0186055c48afde842a4254b4df9ac9249c40fe40))
10
+ * add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
11
+ * add logging component type to request contexts ([210de1b](https://github.com/twinfoundation/api/commit/210de1b9e1c91079b59a2b90ddd57569668d647d))
12
+ * add root, favicon routes ([71da1c3](https://github.com/twinfoundation/api/commit/71da1c3a93c349588aff7084d1d8d6a29a277da8))
13
+ * add socket id, connect and disconnect ([20b0d0e](https://github.com/twinfoundation/api/commit/20b0d0ec279cab46141fee09de2c4a7087cdce16))
14
+ * add validate-locales ([cdba610](https://github.com/twinfoundation/api/commit/cdba610a0acb5022d2e3ce729732e6646a297e5e))
15
+ * eslint migration to flat config ([0dd5820](https://github.com/twinfoundation/api/commit/0dd5820e3af97350fd08b8d226f4a6c1a9246805))
16
+ * improve socket route logging ([b8d9519](https://github.com/twinfoundation/api/commit/b8d95199f838ac6ba9f45c30ef7c4e613201ff53))
17
+ * logging naming consistency ([a4a6ef2](https://github.com/twinfoundation/api/commit/a4a6ef2de5049045589eb78b177ff62e744bde9d))
18
+ * update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
19
+ * update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
20
+ * update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
21
+ * use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * locales ([1b84d8e](https://github.com/twinfoundation/api/commit/1b84d8eb4dbe2302897e184e6389892b7ba12608))
27
+ * use correct format for log messaging ([6b62a18](https://github.com/twinfoundation/api/commit/6b62a185e1da1150bb1e4331337e2799294b83c4))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/api-core bumped from 0.0.3-next.3 to 0.0.3-next.4
35
+ * @twin.org/api-models bumped from 0.0.3-next.3 to 0.0.3-next.4
36
+ * @twin.org/api-processors bumped from 0.0.3-next.3 to 0.0.3-next.4
37
+
38
+ ## [0.0.3-next.3](https://github.com/twinfoundation/api/compare/api-server-fastify-v0.0.3-next.2...api-server-fastify-v0.0.3-next.3) (2025-11-14)
39
+
40
+
41
+ ### Miscellaneous Chores
42
+
43
+ * **api-server-fastify:** Synchronize repo versions
44
+
45
+
46
+ ### Dependencies
47
+
48
+ * The following workspace dependencies were updated
49
+ * dependencies
50
+ * @twin.org/api-core bumped from 0.0.3-next.2 to 0.0.3-next.3
51
+ * @twin.org/api-models bumped from 0.0.3-next.2 to 0.0.3-next.3
52
+ * @twin.org/api-processors bumped from 0.0.3-next.2 to 0.0.3-next.3
53
+
3
54
  ## [0.0.3-next.2](https://github.com/twinfoundation/api/compare/api-server-fastify-v0.0.3-next.1...api-server-fastify-v0.0.3-next.2) (2025-11-12)
4
55
 
5
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/api-server-fastify",
3
- "version": "0.0.3-next.2",
3
+ "version": "0.0.3-next.4",
4
4
  "description": "Use Fastify as the core web server for APIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,9 +16,9 @@
16
16
  "dependencies": {
17
17
  "@fastify/compress": "8.3.0",
18
18
  "@fastify/cors": "11.1.0",
19
- "@twin.org/api-core": "0.0.3-next.2",
20
- "@twin.org/api-models": "0.0.3-next.2",
21
- "@twin.org/api-processors": "0.0.3-next.2",
19
+ "@twin.org/api-core": "0.0.3-next.4",
20
+ "@twin.org/api-models": "0.0.3-next.4",
21
+ "@twin.org/api-processors": "0.0.3-next.4",
22
22
  "@twin.org/context": "next",
23
23
  "@twin.org/core": "next",
24
24
  "@twin.org/logging-models": "next",