@twin.org/context 0.0.3-next.5 → 0.0.3-next.8

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 +64 -0
  2. package/package.json +3 -3
package/docs/changelog.md CHANGED
@@ -1,5 +1,69 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/context-v0.0.3-next.7...context-v0.0.3-next.8) (2025-11-26)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **context:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
16
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
20
+ * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
21
+
22
+ ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/context-v0.0.3-next.6...context-v0.0.3-next.7) (2025-11-25)
23
+
24
+
25
+ ### Features
26
+
27
+ * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
28
+ * context id handler derives from component ([c868ec2](https://github.com/twinfoundation/framework/commit/c868ec21d3a576d4faa222bf130270a21936e50e))
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * use singleton pattern for context storage ([c69f358](https://github.com/twinfoundation/framework/commit/c69f358e45361b45d4e46f19846cd5b8c99b0ccd))
34
+ * use singleton pattern for context storage ([5cc706a](https://github.com/twinfoundation/framework/commit/5cc706a2bbfc601fa3d00f3efd8b764052e9f91d))
35
+
36
+
37
+ ### Dependencies
38
+
39
+ * The following workspace dependencies were updated
40
+ * dependencies
41
+ * @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
42
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
43
+ * devDependencies
44
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
45
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
46
+ * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
47
+
48
+ ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/context-v0.0.3-next.5...context-v0.0.3-next.6) (2025-11-25)
49
+
50
+
51
+ ### Miscellaneous Chores
52
+
53
+ * **context:** Synchronize repo versions
54
+
55
+
56
+ ### Dependencies
57
+
58
+ * The following workspace dependencies were updated
59
+ * dependencies
60
+ * @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
61
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
62
+ * devDependencies
63
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
64
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
65
+ * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
66
+
3
67
  ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/context-v0.0.3-next.4...context-v0.0.3-next.5) (2025-11-20)
4
68
 
5
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/context",
3
- "version": "0.0.3-next.5",
3
+ "version": "0.0.3-next.8",
4
4
  "description": "Helper methods/classes for context handling",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.3-next.5",
18
- "@twin.org/nameof": "0.0.3-next.5"
17
+ "@twin.org/core": "0.0.3-next.8",
18
+ "@twin.org/nameof": "0.0.3-next.8"
19
19
  },
20
20
  "main": "./dist/es/index.js",
21
21
  "types": "./dist/types/index.d.ts",