@anolilab/semantic-release-preset 11.0.3 → 12.0.0-alpha.1
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 +33 -0
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## @anolilab/semantic-release-preset [12.0.0-alpha.1](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-preset@11.0.4...@anolilab/semantic-release-preset@12.0.0-alpha.1) (2025-10-14)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* - node-versions: the minimum node version for the v24 range is now v24.10.0
|
|
6
|
+
- deps: a minimum of node v22.14 is now required
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* update dependencies and node version across multiple packages ([3cea078](https://github.com/anolilab/semantic-release/commit/3cea078f8aa27d0873e082bc54c4c5117e5105bf))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* **@anolilab/semantic-release-clean-package-json:** upgraded to 4.0.0-alpha.1
|
|
16
|
+
* **@anolilab/semantic-release-pnpm:** upgraded to 3.0.0-alpha.1
|
|
17
|
+
|
|
18
|
+
## @anolilab/semantic-release-preset [11.0.4](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-preset@11.0.3...@anolilab/semantic-release-preset@11.0.4) (2025-09-22)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **deps:** update dependencies across multiple packages ([150593f](https://github.com/anolilab/semantic-release/commit/150593fec51e1646e8bc5d8aa9db76a8370d42c1))
|
|
23
|
+
* **deps:** update dependency @semantic-release/npm to ^12.0.2 ([#187](https://github.com/anolilab/semantic-release/issues/187)) ([714da82](https://github.com/anolilab/semantic-release/commit/714da820f15f1a830fb72912686237fd35d03890))
|
|
24
|
+
* update dependencies and configuration across multiple packages ([9c9b4cb](https://github.com/anolilab/semantic-release/commit/9c9b4cb5b1f9e172f2e1ce509491b950ae448c09))
|
|
25
|
+
* update dependencies and improve configuration ([de0cf70](https://github.com/anolilab/semantic-release/commit/de0cf702c2c5217203409b475f96061702806475))
|
|
26
|
+
* update package dependencies and configurations ([8241a76](https://github.com/anolilab/semantic-release/commit/8241a762582a25742d385d8cf113851ac8b9b801))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* **@anolilab/semantic-release-clean-package-json:** upgraded to 3.0.4
|
|
32
|
+
* **@anolilab/semantic-release-pnpm:** upgraded to 2.0.4
|
|
33
|
+
|
|
1
34
|
## @anolilab/semantic-release-preset [11.0.3](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-preset@11.0.2...@anolilab/semantic-release-preset@11.0.3) (2025-07-31)
|
|
2
35
|
|
|
3
36
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/semantic-release-preset",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0-alpha.1",
|
|
4
4
|
"description": "Semantic-release predefined presets.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -45,44 +45,44 @@
|
|
|
45
45
|
},
|
|
46
46
|
"exports": {
|
|
47
47
|
".": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
48
|
+
"import": "./config/without-npm.json",
|
|
49
|
+
"require": "./config/without-npm.json"
|
|
50
50
|
},
|
|
51
51
|
"./npm": {
|
|
52
|
-
"
|
|
53
|
-
"
|
|
52
|
+
"import": "./config/with-npm.json",
|
|
53
|
+
"require": "./config/with-npm.json"
|
|
54
54
|
},
|
|
55
55
|
"./pnpm": {
|
|
56
|
-
"
|
|
57
|
-
"
|
|
56
|
+
"import": "./config/with-pnpm.json",
|
|
57
|
+
"require": "./config/with-pnpm.json"
|
|
58
58
|
},
|
|
59
59
|
"./yarn": {
|
|
60
|
-
"
|
|
61
|
-
"
|
|
60
|
+
"import": "./config/with-yarn.json",
|
|
61
|
+
"require": "./config/with-yarn.json"
|
|
62
62
|
},
|
|
63
63
|
"./package.json": "./package.json"
|
|
64
64
|
},
|
|
65
65
|
"main": "config/without-npm.json",
|
|
66
66
|
"files": [
|
|
67
|
-
"README.md",
|
|
68
67
|
"CHANGELOG.md",
|
|
69
68
|
"LICENSE.md",
|
|
69
|
+
"README.md",
|
|
70
70
|
"config"
|
|
71
71
|
],
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@anolilab/semantic-release-clean-package-json": "
|
|
73
|
+
"@anolilab/semantic-release-clean-package-json": "4.0.0-alpha.1",
|
|
74
74
|
"@semantic-release/changelog": "^6.0.3",
|
|
75
75
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
76
76
|
"@semantic-release/exec": "^7.1.0",
|
|
77
77
|
"@semantic-release/git": "^10.0.1",
|
|
78
|
-
"@semantic-release/github": "^11.0.
|
|
79
|
-
"@semantic-release/release-notes-generator": "14.0
|
|
78
|
+
"@semantic-release/github": "^11.0.6",
|
|
79
|
+
"@semantic-release/release-notes-generator": "14.1.0",
|
|
80
80
|
"conventional-changelog-conventionalcommits": "9.1.0"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@anolilab/semantic-release-pnpm": "
|
|
84
|
-
"@semantic-release/npm": "^
|
|
85
|
-
"semantic-release": "^24.2.
|
|
83
|
+
"@anolilab/semantic-release-pnpm": "3.0.0-alpha.1",
|
|
84
|
+
"@semantic-release/npm": "^13.0.0",
|
|
85
|
+
"semantic-release": "^24.2.9",
|
|
86
86
|
"semantic-release-yarn": "^3.0.2"
|
|
87
87
|
},
|
|
88
88
|
"peerDependenciesMeta": {
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
"engines": {
|
|
100
|
-
"node": ">=
|
|
100
|
+
"node": "^22.14.0 || >=24.10.0"
|
|
101
101
|
},
|
|
102
102
|
"os": [
|
|
103
103
|
"darwin",
|