@kenan/npm-cli-login 3.0.5 → 4.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 +19 -0
  2. package/package.json +8 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## [4.0.0](https://github.com/kenany/npm-cli-login/compare/v3.0.6...v4.0.0) (2023-09-11)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * Node.js v14 and v16 are no longer supported.
7
+
8
+ ### Features
9
+
10
+ * drop Node.js v14 and v16 ([c085f4a](https://github.com/kenany/npm-cli-login/commit/c085f4a634a2d5ab29fce5085117e2312da206f8))
11
+
12
+ ## [3.0.6](https://github.com/kenany/npm-cli-login/compare/v3.0.5...v3.0.6) (2023-06-09)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **ci:** enable npm provenance ([8446d50](https://github.com/kenany/npm-cli-login/commit/8446d50bf748042bd98ae0791c552d1f3277dc31))
18
+ * **ci:** fix publish job permissions ([7b46410](https://github.com/kenany/npm-cli-login/commit/7b464102d5452cb3d638c9382ac5755b2ecc30d5))
19
+
1
20
  ## [3.0.5](https://github.com/kenany/npm-cli-login/compare/v3.0.4...v3.0.5) (2023-06-03)
2
21
 
3
22
 
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@kenan/npm-cli-login",
3
- "version": "3.0.5",
3
+ "version": "4.0.0",
4
4
  "description": "Fork of npm-cli-login",
5
5
  "author": "Postman Team <help@getpostman.com>",
6
6
  "license": "Apache-2.0",
7
7
  "repository": "github:kenany/npm-cli-login",
8
8
  "publishConfig": {
9
- "access": "public"
9
+ "access": "public",
10
+ "provenance": true
10
11
  },
11
12
  "engines": {
12
- "node": "14 || 16 || 18 || >=20"
13
+ "node": "18 || >=20"
13
14
  },
14
15
  "main": "index.js",
15
16
  "bin": {
@@ -27,14 +28,14 @@
27
28
  "test": "mocha tests"
28
29
  },
29
30
  "dependencies": {
30
- "npm-profile": "^7.0.1"
31
+ "npm-profile": "^9.0.0"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@semantic-release/changelog": "^6.0.3",
34
35
  "@semantic-release/git": "^10.0.1",
35
- "chai": "^4.3.7",
36
- "conventional-changelog-conventionalcommits": "^5.0.0",
36
+ "chai": "^4.3.8",
37
+ "conventional-changelog-conventionalcommits": "^6.1.0",
37
38
  "mocha": "^10.2.0",
38
- "semantic-release": "^21.0.2"
39
+ "semantic-release": "^21.1.1"
39
40
  }
40
41
  }