@tak-ps/node-tak 11.20.0 → 11.20.2

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.
@@ -7,7 +7,7 @@ on:
7
7
 
8
8
  permissions:
9
9
  id-token: write # Required for OIDC
10
- contents: read
10
+ contents: write
11
11
 
12
12
  jobs:
13
13
  build:
@@ -17,7 +17,7 @@ jobs:
17
17
 
18
18
  - uses: actions/setup-node@v6
19
19
  with:
20
- node-version: 22
20
+ node-version: 24
21
21
 
22
22
  - name: Update npm
23
23
  run: npm install -g npm@latest
@@ -30,3 +30,15 @@ jobs:
30
30
 
31
31
  - name: npm publish
32
32
  run: npm publish --provenance --access public
33
+
34
+ - name: Get tag
35
+ id: tag
36
+ uses: dawidd6/action-get-tag@v1
37
+
38
+ - name: Generate CHANGELOG
39
+ run: grep -Pzo "### ${{steps.tag.outputs.tag}}(?s).*?(?=###)" CHANGELOG.md > RELEASE
40
+
41
+ - name: Github Release
42
+ uses: softprops/action-gh-release@v2
43
+ with:
44
+ body_path: RELEASE
package/CHANGELOG.md CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v11.20.2 - 2025-12-24
14
+
15
+ - :bug: Update Github Actions Workflow
16
+
17
+ ### v11.20.1 - 2025-12-21
18
+
19
+ - :bug: Update Github Actions Workflow
20
+
13
21
  ### v11.20.0 - 2025-12-21
14
22
 
15
23
  - :tada: Introduce deleting/revoking by ID and add TS Docs
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/node-tak",
3
3
  "type": "module",
4
- "version": "11.20.0",
4
+ "version": "11.20.2",
5
5
  "description": "Lightweight JavaScript library for communicating with TAK Server",
6
6
  "author": "Nick Ingalls <nick@ingalls.ca>",
7
7
  "main": "dist/index.js",