@eik/core 2.1.1 → 2.1.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.
- package/CHANGELOG.md +49 -0
- package/package.json +13 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
|
1
|
+
## [2.1.8](https://github.com/eik-lib/core/compare/v2.1.7...v2.1.8) (2025-12-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* nuding ([37863e9](https://github.com/eik-lib/core/commit/37863e9c101701be93210993c54ddedbc9882bf7))
|
|
7
|
+
|
|
8
|
+
## [2.1.7](https://github.com/eik-lib/core/compare/v2.1.6...v2.1.7) (2025-12-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* nudge again ([0ceb186](https://github.com/eik-lib/core/commit/0ceb18639052972d9b3fe9d315adf1837282c210))
|
|
14
|
+
|
|
15
|
+
## [2.1.6](https://github.com/eik-lib/core/compare/v2.1.5...v2.1.6) (2025-12-11)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* nudge ([79a607c](https://github.com/eik-lib/core/commit/79a607c33e0900371deabb7c051519bea2c4fddc))
|
|
21
|
+
|
|
22
|
+
## [2.1.5](https://github.com/eik-lib/core/compare/v2.1.4...v2.1.5) (2025-12-11)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* triggering release ([59121a4](https://github.com/eik-lib/core/commit/59121a484d0df3e09ca6811a0627bce3badc0f0f))
|
|
28
|
+
|
|
29
|
+
## [2.1.4](https://github.com/eik-lib/core/compare/v2.1.3...v2.1.4) (2025-11-21)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **deps:** update dependency http-errors to v2.0.1 ([#523](https://github.com/eik-lib/core/issues/523)) ([c01cfb0](https://github.com/eik-lib/core/commit/c01cfb0d4b632f5e493c0091b36269760e59b439))
|
|
35
|
+
|
|
36
|
+
## [2.1.3](https://github.com/eik-lib/core/compare/v2.1.2...v2.1.3) (2025-10-30)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **deps:** update dependency tar to v7.5.2 [security] ([#519](https://github.com/eik-lib/core/issues/519)) ([336c28e](https://github.com/eik-lib/core/commit/336c28effd4ddecfa6a318403471b0dbc94bf06f))
|
|
42
|
+
|
|
43
|
+
## [2.1.2](https://github.com/eik-lib/core/compare/v2.1.1...v2.1.2) (2025-10-08)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* **deps:** update eik packages ([#512](https://github.com/eik-lib/core/issues/512)) ([7bf0101](https://github.com/eik-lib/core/commit/7bf0101455977e7811cd3f9ad07ab800a67ca945))
|
|
49
|
+
|
|
1
50
|
## [2.1.1](https://github.com/eik-lib/core/compare/v2.1.0...v2.1.1) (2025-10-08)
|
|
2
51
|
|
|
3
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eik/core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "Core server package",
|
|
5
5
|
"main": "lib/main.js",
|
|
6
6
|
"types": "./types/main.d.ts",
|
|
@@ -21,39 +21,43 @@
|
|
|
21
21
|
"types:module": "tsc",
|
|
22
22
|
"types:test": "tsc --project tsconfig.test.json"
|
|
23
23
|
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git@github.com:eik-lib/core.git"
|
|
27
|
+
},
|
|
24
28
|
"keywords": [],
|
|
25
29
|
"author": "",
|
|
26
30
|
"license": "MIT",
|
|
27
31
|
"dependencies": {
|
|
28
32
|
"@eik/common": "5.1.7",
|
|
29
33
|
"@eik/sink": "1.2.5",
|
|
30
|
-
"@eik/sink-file-system": "2.0.
|
|
34
|
+
"@eik/sink-file-system": "2.0.13",
|
|
31
35
|
"@eik/sink-memory": "2.0.12",
|
|
32
36
|
"@metrics/client": "2.5.5",
|
|
33
37
|
"abslog": "2.4.4",
|
|
34
38
|
"busboy": "1.6.0",
|
|
35
|
-
"http-errors": "2.0.
|
|
39
|
+
"http-errors": "2.0.1",
|
|
36
40
|
"mime": "4.1.0",
|
|
37
41
|
"original-url": "1.2.3",
|
|
38
42
|
"semver": "7.7.3",
|
|
39
43
|
"ssri": "12.0.0",
|
|
40
|
-
"tar": "7.5.
|
|
44
|
+
"tar": "7.5.2",
|
|
41
45
|
"unique-slug": "5.0.0"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
44
48
|
"@eik/eslint-config": "1.0.23",
|
|
45
49
|
"@eik/prettier-config": "1.0.1",
|
|
46
|
-
"@eik/semantic-release-config": "1.0.
|
|
50
|
+
"@eik/semantic-release-config": "1.0.10",
|
|
47
51
|
"@eik/typescript-config": "1.0.0",
|
|
48
|
-
"@types/readable-stream": "4.0.
|
|
49
|
-
"eslint": "9.
|
|
50
|
-
"form-data": "4.0.
|
|
52
|
+
"@types/readable-stream": "4.0.22",
|
|
53
|
+
"eslint": "9.39.1",
|
|
54
|
+
"form-data": "4.0.5",
|
|
51
55
|
"mkdirp": "3.0.1",
|
|
52
56
|
"node-fetch": "3.3.2",
|
|
53
57
|
"npm-run-all2": "7.0.2",
|
|
54
58
|
"prettier": "3.5.3",
|
|
55
59
|
"rimraf": "6.0.1",
|
|
56
|
-
"semantic-release": "
|
|
60
|
+
"semantic-release": "25.0.2",
|
|
57
61
|
"tap": "21.0.1",
|
|
58
62
|
"typescript": "5.6.3"
|
|
59
63
|
}
|