semantic-release-minecraft 2.3.14 → 2.3.16
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/.github/renovate.json +5 -0
- package/.github/workflows/release.yml +4 -6
- package/CHANGELOG.md +13 -0
- package/package.json +3 -3
package/.github/renovate.json
CHANGED
|
@@ -2,20 +2,18 @@
|
|
|
2
2
|
on:
|
|
3
3
|
push:
|
|
4
4
|
branches:
|
|
5
|
-
- master
|
|
5
|
+
- master
|
|
6
6
|
|
|
7
7
|
permissions:
|
|
8
|
-
contents: read
|
|
8
|
+
contents: read
|
|
9
9
|
|
|
10
10
|
jobs:
|
|
11
11
|
release:
|
|
12
12
|
name: Release
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
permissions:
|
|
15
|
-
contents: write
|
|
16
|
-
|
|
17
|
-
pull-requests: write # to be able to comment on released pull requests
|
|
18
|
-
id-token: write # to enable use of OIDC for npm provenance
|
|
15
|
+
contents: write
|
|
16
|
+
id-token: write
|
|
19
17
|
steps:
|
|
20
18
|
- name: Checkout
|
|
21
19
|
uses: actions/checkout@v6
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [2.3.16](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.15...v2.3.16) (2025-12-15)
|
|
2
|
+
|
|
3
|
+
### 🔧 Miscellaneous Changes
|
|
4
|
+
|
|
5
|
+
* **deps:** update dependency @types/node to ^24.10.4 ([7e010cc](https://github.com/pynickle/semantic-release-minecraft/commit/7e010ccfe76a4c4a64ad98ecc42074ab4b0368cb))
|
|
6
|
+
* update renovate settings [skip ci] ([87bebeb](https://github.com/pynickle/semantic-release-minecraft/commit/87bebebd3701d77ba645c459e2ad9aa5c91e23f1))
|
|
7
|
+
|
|
8
|
+
## [2.3.15](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.14...v2.3.15) (2025-12-13)
|
|
9
|
+
|
|
10
|
+
### 🔧 Miscellaneous Changes
|
|
11
|
+
|
|
12
|
+
* **deps:** update dependency @semantic-release/npm to ^13.1.3 ([fd4c574](https://github.com/pynickle/semantic-release-minecraft/commit/fd4c5746f51f5dca119d14cb97a01a1f10eba000))
|
|
13
|
+
|
|
1
14
|
## [2.3.14](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.13...v2.3.14) (2025-12-12)
|
|
2
15
|
|
|
3
16
|
### 💄 Style Improvements
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release-minecraft",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.16",
|
|
4
4
|
"description": "Automated Release For Minecraft Project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"semantic-release",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"@semantic-release/changelog": "^6.0.3",
|
|
28
28
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
29
29
|
"@semantic-release/git": "^10.0.1",
|
|
30
|
-
"@semantic-release/npm": "^13.1.
|
|
30
|
+
"@semantic-release/npm": "^13.1.3",
|
|
31
31
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
32
32
|
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
|
|
33
33
|
"@types/lodash": "^4.17.21",
|
|
34
|
-
"@types/node": "^24.10.
|
|
34
|
+
"@types/node": "^24.10.4",
|
|
35
35
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
36
36
|
"oxfmt": "^0.17.0",
|
|
37
37
|
"oxlint": "^1.32.0",
|