@kenan/npm-cli-login 4.0.3 → 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 +16 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [5.0.0](https://github.com/kenany/npm-cli-login/compare/v4.0.4...v5.0.0) (2025-09-08)
2
+
3
+ ### ⚠ BREAKING CHANGES
4
+
5
+ * Node.js v18 is no longer supported.
6
+
7
+ ### Features
8
+
9
+ * drop Node.js v18 support ([170b949](https://github.com/kenany/npm-cli-login/commit/170b949c440c96821c340463f7a0c5dfda7e7928))
10
+
11
+ ## [4.0.4](https://github.com/kenany/npm-cli-login/compare/v4.0.3...v4.0.4) (2025-08-09)
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** npm-profile@12.0.0 ([f25295d](https://github.com/kenany/npm-cli-login/commit/f25295d96b79bfd103f9cddeb7ae004591a79693))
16
+
1
17
  ## [4.0.3](https://github.com/kenany/npm-cli-login/compare/v4.0.2...v4.0.3) (2024-11-21)
2
18
 
3
19
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kenan/npm-cli-login",
3
- "version": "4.0.3",
3
+ "version": "5.0.0",
4
4
  "description": "Fork of npm-cli-login",
5
5
  "author": "Postman Team <help@getpostman.com>",
6
6
  "license": "Apache-2.0",
@@ -10,7 +10,7 @@
10
10
  "provenance": true
11
11
  },
12
12
  "engines": {
13
- "node": "18 || >=20"
13
+ "node": "20 || 22 || >=24"
14
14
  },
15
15
  "main": "index.js",
16
16
  "bin": {
@@ -28,14 +28,14 @@
28
28
  "test": "mocha tests"
29
29
  },
30
30
  "dependencies": {
31
- "npm-profile": "^11.0.1"
31
+ "npm-profile": "^12.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@semantic-release/changelog": "^6.0.3",
35
35
  "@semantic-release/git": "^10.0.1",
36
36
  "chai": "^4.5.0",
37
- "conventional-changelog-conventionalcommits": "^8.0.0",
38
- "mocha": "^10.8.2",
39
- "semantic-release": "^24.2.0"
37
+ "conventional-changelog-conventionalcommits": "^9.1.0",
38
+ "mocha": "^11.7.2",
39
+ "semantic-release": "^24.2.7"
40
40
  }
41
41
  }