minecraft-data 3.105.1 → 3.107.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.
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  strategy:
11
11
  matrix:
12
- node-version: [22.x]
12
+ node-version: [24.x]
13
13
  steps:
14
14
  - uses: actions/checkout@v2
15
15
  with:
@@ -25,7 +25,7 @@ jobs:
25
25
  - id: publish
26
26
  uses: JS-DevTools/npm-publish@v4
27
27
  - name: Create Release
28
- if: steps.publish.outputs.type != 'none'
28
+ if: ${{ steps.publish.outputs.type }}
29
29
  id: create_release
30
30
  uses: actions/create-release@v1
31
31
  env:
@@ -39,7 +39,7 @@ jobs:
39
39
 
40
40
  - name: "Trigger new GH Page creation in mcData repo"
41
41
  uses: peter-evans/repository-dispatch@v1
42
- if: steps.publish.outputs.type != 'none' || github.event_name == 'workflow_dispatch'
42
+ if: ${{ steps.publish.outputs.type }} || github.event_name == 'workflow_dispatch'
43
43
  with:
44
44
  token: ${{ secrets.PAT_PASSWORD }}
45
45
  repository: PrismarineJS/minecraft-data
package/doc/history.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # History
2
2
 
3
+ ## 3.107.0
4
+ * [Update CI to Node 24 (#445)](https://github.com/PrismarineJS/node-minecraft-data/commit/cd37593e8ede05f266ef3e3d519f344b16f20ef7) (thanks @rom1504)
5
+ * [Fix publish condition for npm-publish v4 (#444)](https://github.com/PrismarineJS/node-minecraft-data/commit/f63f8f9760f5717bfb530b2e87d6f670b97f7b4d) (thanks @rom1504)
6
+
7
+ ## 3.106.0
8
+ * [Use Node 24 for trusted publishing support (#442)](https://github.com/PrismarineJS/node-minecraft-data/commit/f451f6a634f0f7e93344cfe23608fcfacf6d4c8a) (thanks @rom1504)
9
+ * [Upgrade npm for trusted publishing support (#440)](https://github.com/PrismarineJS/node-minecraft-data/commit/d6271bfcd4d1834795ee1f7ab928265839780f53) (thanks @rom1504)
10
+ * [Add registry-url to setup-node for trusted publishing (#439)](https://github.com/PrismarineJS/node-minecraft-data/commit/47551b2c18dfd9c2fc79f24217a596ff56a5777b) (thanks @rom1504)
11
+ * [Create commands.yml](https://github.com/PrismarineJS/node-minecraft-data/commit/278f7bd1cc41d7359c620e817c12fff29a431890) (thanks @extremeheat)
12
+ * [Switch to trusted publishing via OIDC (#438)](https://github.com/PrismarineJS/node-minecraft-data/commit/43950d173e947f110178c56c3f3bfdcff426183a) (thanks @rom1504)
13
+
3
14
  ## 3.105.1
4
15
 
5
16
  * update `minecraft-data`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.105.1",
3
+ "version": "3.107.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",