@eik/service 4.0.0 → 5.0.0

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/CHANGELOG.md +14 -0
  2. package/package.json +12 -10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [5.0.0](https://github.com/eik-lib/service/compare/v4.0.0...v5.0.0) (2024-11-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * set minimum engine ([8d339a3](https://github.com/eik-lib/service/commit/8d339a33b902d916d9a7fe526e6cf05b3553d621))
7
+ * update eik dependencies ([9c8f3af](https://github.com/eik-lib/service/commit/9c8f3afc22cae7139f1baa879d4d40f9ad8c7371))
8
+
9
+
10
+ ### BREAKING CHANGES
11
+
12
+ * returns mimetype text/javascript instead of the deprecated application/javascript.
13
+ * Requires Node >=20.5.0.
14
+
1
15
  # [4.0.0](https://github.com/eik-lib/service/compare/v3.0.0...v4.0.0) (2024-11-13)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/service",
3
- "version": "4.0.0",
3
+ "version": "5.0.0",
4
4
  "description": "Eik REST API as a standalone HTTP service",
5
5
  "type": "module",
6
6
  "main": "./lib/main.js",
@@ -10,6 +10,9 @@
10
10
  "eik-service": "bin/eik-server.js",
11
11
  "service": "bin/eik-server.js"
12
12
  },
13
+ "engines": {
14
+ "node": ">=20.5.0"
15
+ },
13
16
  "scripts": {
14
17
  "clean": "rimraf .tap node_modules types",
15
18
  "lint": "eslint .",
@@ -41,10 +44,10 @@
41
44
  },
42
45
  "homepage": "https://github.com/eik-lib/service#readme",
43
46
  "dependencies": {
44
- "@eik/core": "1.4.2",
47
+ "@eik/core": "2.0.0",
45
48
  "@eik/sink": "1.2.5",
46
- "@eik/sink-file-system": "1.0.1",
47
- "@eik/sink-memory": "1.1.2",
49
+ "@eik/sink-file-system": "2.0.0",
50
+ "@eik/sink-memory": "2.0.0",
48
51
  "@fastify/compress": "8.0.1",
49
52
  "@fastify/cors": "10.0.1",
50
53
  "@fastify/jwt": "9.0.1",
@@ -59,19 +62,18 @@
59
62
  "@eik/prettier-config": "1.0.1",
60
63
  "@eik/semantic-release-config": "1.0.0",
61
64
  "@eik/typescript-config": "1.0.0",
62
- "@types/mime": "3.0.4",
63
65
  "@types/readable-stream": "4.0.18",
64
66
  "cross-env": "7.0.3",
65
- "eslint": "9.13.0",
67
+ "eslint": "9.14.0",
66
68
  "form-data": "4.0.1",
67
69
  "node-fetch": "3.3.2",
68
- "npm-run-all2": "5.0.2",
70
+ "npm-run-all2": "7.0.1",
69
71
  "pino-pretty": "10.3.1",
70
72
  "prettier": "3.3.3",
71
73
  "rimraf": "6.0.1",
72
- "semantic-release": "24.1.2",
74
+ "semantic-release": "24.2.0",
73
75
  "tap": "21.0.1",
74
- "typescript": "5.5.4",
75
- "unique-slug": "4.0.0"
76
+ "typescript": "5.6.3",
77
+ "unique-slug": "5.0.0"
76
78
  }
77
79
  }