@luca-financial/luca-schema 3.3.1 → 3.3.3
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.
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/schemas/lucaSchema.json +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.3.3] - 2026-05-11
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Bump the published package version to `3.3.3` while leaving the Luca Schema contract version at `3.3.2`.
|
|
13
|
+
- Refresh runtime and development dependencies, including the Ajv, Babel, ESLint, Jest, Prettier, ts-jest, and typescript-eslint stacks.
|
|
14
|
+
- Regenerate `pnpm-lock.yaml` to capture the updated dependency graph for the 3.3.3 release.
|
|
15
|
+
|
|
16
|
+
## [3.3.2] - 2026-04-05
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Bump the Luca Schema contract version to `3.3.2`.
|
|
21
|
+
- Align bundled aggregate example files with `SCHEMA_VERSION` so example validation and version-consistency checks stay in sync.
|
|
22
|
+
|
|
8
23
|
## [3.3.1] - 2026-04-05
|
|
9
24
|
|
|
10
25
|
### Changed
|
package/README.md
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luca-financial/luca-schema",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.3",
|
|
4
4
|
"description": "Schemas for the Luca Ledger application",
|
|
5
5
|
"author": "Johnathan Aspinwall",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -71,34 +71,34 @@
|
|
|
71
71
|
"CHANGELOG.md"
|
|
72
72
|
],
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"ajv": "^8.
|
|
74
|
+
"ajv": "^8.20.0",
|
|
75
75
|
"ajv-formats": "^3.0.1"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@babel/cli": "^7.28.6",
|
|
79
79
|
"@babel/core": "^7.29.0",
|
|
80
80
|
"@babel/plugin-syntax-import-attributes": "^7.28.6",
|
|
81
|
-
"@babel/preset-env": "^7.29.
|
|
81
|
+
"@babel/preset-env": "^7.29.5",
|
|
82
82
|
"@babel/preset-typescript": "^7.28.5",
|
|
83
83
|
"@eslint/js": "^10.0.1",
|
|
84
84
|
"@types/jest": "^30.0.0",
|
|
85
|
-
"babel-jest": "^30.
|
|
86
|
-
"eslint": "^10.0
|
|
85
|
+
"babel-jest": "^30.4.1",
|
|
86
|
+
"eslint": "^10.3.0",
|
|
87
87
|
"eslint-config-prettier": "^10.1.8",
|
|
88
88
|
"eslint-plugin-json": "^4.0.1",
|
|
89
89
|
"eslint-plugin-prettier": "^5.5.5",
|
|
90
|
-
"fs-extra": "^11.3.
|
|
91
|
-
"globals": "^17.
|
|
90
|
+
"fs-extra": "^11.3.5",
|
|
91
|
+
"globals": "^17.6.0",
|
|
92
92
|
"husky": "^9.1.7",
|
|
93
|
-
"jest": "^30.
|
|
93
|
+
"jest": "^30.4.2",
|
|
94
94
|
"json-schema-to-typescript": "^15.0.4",
|
|
95
95
|
"lint-staged": "^16.4.0",
|
|
96
|
-
"prettier": "^3.8.
|
|
96
|
+
"prettier": "^3.8.3",
|
|
97
97
|
"rimraf": "^6.1.3",
|
|
98
|
-
"ts-jest": "^29.4.
|
|
98
|
+
"ts-jest": "^29.4.9",
|
|
99
99
|
"ts-node": "^10.9.2",
|
|
100
100
|
"typescript": "^5.9.3",
|
|
101
|
-
"typescript-eslint": "^8.
|
|
101
|
+
"typescript-eslint": "^8.59.3"
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|
|
104
104
|
"build": "pnpm clean && pnpm generate:types && node scripts/build.js",
|