@decafhub/decaf-client-extras 0.6.0 → 0.7.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.
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ${{ matrix.os }}
13
13
  strategy:
14
14
  matrix:
15
- node: [18, 20, 22]
15
+ node: [20, 22, 23]
16
16
  os: [ubuntu-latest]
17
17
  steps:
18
18
  - uses: actions/checkout@v4
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.6.0"
2
+ ".": "0.7.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.0](https://github.com/teloscube/decaf-client-javascript-extras/compare/v0.6.0...v0.7.0) (2025-04-28)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * drop support for Node 18
9
+
10
+ ### Miscellaneous Chores
11
+
12
+ * upgrade dependencies ([c61009b](https://github.com/teloscube/decaf-client-javascript-extras/commit/c61009b1b948f76057c4a1b846f80b861dacedb4))
13
+
3
14
  ## [0.6.0](https://github.com/teloscube/decaf-client-javascript-extras/compare/v0.5.2...v0.6.0) (2024-12-31)
4
15
 
5
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decafhub/decaf-client-extras",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "DECAF Client Extras",
5
5
  "author": "Teloscube Pte Ltd",
6
6
  "license": "MIT",
@@ -23,42 +23,42 @@
23
23
  "prepare": "npm run build && ./postinstall.sh"
24
24
  },
25
25
  "engines": {
26
- "node": ">=18"
26
+ "node": ">=20"
27
27
  },
28
28
  "peerDependencies": {
29
- "@decafhub/decaf-client": "^0.6"
29
+ "@decafhub/decaf-client": "^0.7"
30
30
  },
31
31
  "dependencies": {
32
32
  "@telostat/prelude": "^0.6",
33
33
  "dayjs": "^1.11.13"
34
34
  },
35
35
  "devDependencies": {
36
- "@commitlint/cli": "^19.6.1",
37
- "@commitlint/config-conventional": "^19.6.0",
38
- "@decafhub/decaf-client": "^0.6.0",
39
- "@eslint/eslintrc": "^3.2.0",
40
- "@eslint/js": "^9.17.0",
36
+ "@commitlint/cli": "^19.8.0",
37
+ "@commitlint/config-conventional": "^19.8.0",
38
+ "@decafhub/decaf-client": "^0.7.0",
39
+ "@eslint/eslintrc": "^3.3.1",
40
+ "@eslint/js": "^9.25.1",
41
41
  "@types/jest": "^29.5.14",
42
- "@types/node": "^22.10.2",
43
- "@typescript-eslint/eslint-plugin": "^8.19.0",
44
- "@typescript-eslint/parser": "^8.19.0",
45
- "dotenv": "^16.4.7",
46
- "eslint": "^9.17.0",
47
- "eslint-config-prettier": "^9.1.0",
48
- "eslint-plugin-n": "^17.15.1",
49
- "eslint-plugin-prettier": "^5.2.1",
42
+ "@types/node": "^22.15.3",
43
+ "@typescript-eslint/eslint-plugin": "^8.31.1",
44
+ "@typescript-eslint/parser": "^8.31.1",
45
+ "dotenv": "^16.5.0",
46
+ "eslint": "^9.25.1",
47
+ "eslint-config-prettier": "^10.1.2",
48
+ "eslint-plugin-n": "^17.17.0",
49
+ "eslint-plugin-prettier": "^5.2.6",
50
50
  "eslint-plugin-promise": "^7.2.1",
51
51
  "eslint-plugin-standard": "^5.0.0",
52
- "gh-pages": "^6.2.0",
53
- "globals": "^15.14.0",
52
+ "gh-pages": "^6.3.0",
53
+ "globals": "^16.0.0",
54
54
  "husky": "^9.1.7",
55
55
  "jest": "^29.7.0",
56
- "lint-staged": "^15.3.0",
57
- "prettier": "^3.4.2",
56
+ "lint-staged": "^15.5.1",
57
+ "prettier": "^3.5.3",
58
58
  "prettier-plugin-organize-imports": "^4.1.0",
59
- "ts-jest": "^29.2.5",
60
- "typedoc": "^0.27.6",
61
- "typescript": "^5.7.2"
59
+ "ts-jest": "^29.3.2",
60
+ "typedoc": "^0.28.3",
61
+ "typescript": "^5.8.3"
62
62
  },
63
63
  "lint-staged": {
64
64
  "src/**/*.{ts,tsx}": [
package/shell.nix CHANGED
@@ -1,4 +1,4 @@
1
- with import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/24.05.tar.gz") { };
1
+ with import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/24.11.tar.gz") { };
2
2
 
3
3
  stdenv.mkDerivation {
4
4
  name = "decaf-client-javascript-extras";