gopadjs 3.1.0 → 3.2.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.
package/.github/RELEASE CHANGED
@@ -1 +1 @@
1
- Mon Nov 17 08:15:21 UTC 2025
1
+ Mon Dec 1 08:16:34 UTC 2025
@@ -27,12 +27,12 @@ jobs:
27
27
  {"contents": "write"}
28
28
 
29
29
  - name: Checkout source
30
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
30
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
31
31
  with:
32
32
  token: ${{ steps.token.outputs.token }}
33
33
 
34
34
  - name: Install nix
35
- uses: cachix/install-nix-action@fd24c48048070c1be9acd18c9d369a83f0fe94d7 # v31
35
+ uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31
36
36
 
37
37
  - name: Update flake
38
38
  run: nix flake update
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  steps:
21
21
  - name: Checkout source
22
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
22
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
23
23
 
24
24
  - name: Setup nodejs
25
25
  uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
@@ -28,7 +28,7 @@ jobs:
28
28
  {"contents": "write", "pull_requests": "write"}
29
29
 
30
30
  - name: Checkout source
31
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
31
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
32
32
 
33
33
  - name: Setup nodejs
34
34
  uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
@@ -48,7 +48,7 @@ jobs:
48
48
 
49
49
  - name: Create request
50
50
  id: pr
51
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
51
+ uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7
52
52
  with:
53
53
  commit-message: "feat: automated openapi client update"
54
54
  delete-branch: true
@@ -8,7 +8,9 @@ name: release
8
8
  - cron: "0 8 * * 1"
9
9
 
10
10
  permissions:
11
- contents: read
11
+ contents: write
12
+ issues: write
13
+ pull-requests: write
12
14
  id-token: write
13
15
 
14
16
  jobs:
@@ -25,29 +27,36 @@ jobs:
25
27
  installation_retrieval_payload: ${{ secrets.TOKEN_EXCHANGE_INSTALL }}
26
28
  private_key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
27
29
  permissions: >-
28
- {"contents": "write", "pull_requests": "write", "issues": "write"}
30
+ {"contents": "write"}
29
31
 
30
32
  - name: Checkout source
31
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
33
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
32
34
  with:
33
35
  token: ${{ steps.token.outputs.token }}
34
36
 
37
+ - name: Setup nodejs
38
+ uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
39
+ with:
40
+ node-version: lts/*
41
+ cache: npm
42
+
35
43
  - name: Write buildtime
36
44
  run: date >| .github/RELEASE
37
45
 
38
46
  - name: Install releaser
39
47
  run: |
40
48
  npm install -g \
41
- conventional-changelog-conventionalcommits@6.1.0 \
42
- semantic-release@23.1.1 \
49
+ conventional-changelog-conventionalcommits \
50
+ semantic-release@25.0.2 \
43
51
  @semantic-release/changelog \
44
52
  @semantic-release/git \
53
+ @semantic-release/github \
54
+ @semantic-release/npm \
45
55
  semantic-release-replace-plugin
46
56
 
47
57
  - name: Run releaser
48
58
  env:
49
- GITHUB_TOKEN: ${{ steps.token.outputs.token }}
50
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
59
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
60
  run: semantic-release
52
61
 
53
62
  - name: Update repo
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.0](https://github.com/gopad/gopad-js/compare/v3.1.0...v3.2.0) (2025-12-01)
4
+
5
+ ### Features
6
+
7
+ * **minor:** update dependency prettier to v3.7.0 ([#225](https://github.com/gopad/gopad-js/issues/225)) ([04c6d72](https://github.com/gopad/gopad-js/commit/04c6d7281c9efbed0eaac456a0c8491155547c63))
8
+
9
+ ### Bugfixes
10
+
11
+ * **patch:** update dependency prettier to v3.7.1 ([#226](https://github.com/gopad/gopad-js/issues/226)) ([09bdd50](https://github.com/gopad/gopad-js/commit/09bdd5044a64b47eaf547df2d3dbedd25b708e07))
12
+
3
13
  ## [3.1.0](https://github.com/gopad/gopad-js/compare/v3.0.1...v3.1.0) (2025-11-17)
4
14
 
5
15
 
package/README.md CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Typescript/Javascript. This SDK is
6
6
  automatically generated by the [OpenAPI Generator][generator] project:
7
7
 
8
8
  - API version: 1.0.0-alpha1
9
- - Package version: 3.1.0
9
+ - Package version: 3.2.0
10
10
  - Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
11
11
 
12
12
  For more information, please visit [https://gopad.eu](https://gopad.eu)
@@ -39,7 +39,7 @@ the following command within your project directory, after that you can import
39
39
  it as other libraries:
40
40
 
41
41
  ```console
42
- npm install --save gopadjs@3.1.0
42
+ npm install --save gopadjs@3.2.0
43
43
  ```
44
44
 
45
45
  ### Installation with Git
package/flake.lock CHANGED
@@ -43,11 +43,11 @@
43
43
  "nixpkgs": "nixpkgs"
44
44
  },
45
45
  "locked": {
46
- "lastModified": 1762706931,
47
- "narHash": "sha256-rsegLsEHnUsfUDN4e/Z534yJIi4Yi6qMA3LI5LK0YwA=",
46
+ "lastModified": 1763939584,
47
+ "narHash": "sha256-LXNXIEQ6YxZ5UBmu1fYaxCBKBPScM93kwuSDKRer9JQ=",
48
48
  "owner": "cachix",
49
49
  "repo": "devenv",
50
- "rev": "9a8147b9345ecbb1321890ce7603df1507b1125d",
50
+ "rev": "1ebc7baa0726314d24bb5cc34d5fc7927aa57929",
51
51
  "type": "github"
52
52
  },
53
53
  "original": {
@@ -114,11 +114,11 @@
114
114
  "nixpkgs-lib": "nixpkgs-lib"
115
115
  },
116
116
  "locked": {
117
- "lastModified": 1762440070,
118
- "narHash": "sha256-xxdepIcb39UJ94+YydGP221rjnpkDZUlykKuF54PsqI=",
117
+ "lastModified": 1763759067,
118
+ "narHash": "sha256-LlLt2Jo/gMNYAwOgdRQBrsRoOz7BPRkzvNaI/fzXi2Q=",
119
119
  "owner": "hercules-ci",
120
120
  "repo": "flake-parts",
121
- "rev": "26d05891e14c88eb4a5d5bee659c0db5afb609d8",
121
+ "rev": "2cccadc7357c0ba201788ae99c4dfa90728ef5e0",
122
122
  "type": "github"
123
123
  },
124
124
  "original": {
@@ -160,11 +160,11 @@
160
160
  "nixpkgs": "nixpkgs_2"
161
161
  },
162
162
  "locked": {
163
- "lastModified": 1762441963,
164
- "narHash": "sha256-j+rNQ119ffYUkYt2YYS6rnd6Jh/crMZmbqpkGLXaEt0=",
163
+ "lastModified": 1763741496,
164
+ "narHash": "sha256-uIRqs/H18YEtMOn1OkbnPH+aNTwXKx+iU3qnxEkVUd0=",
165
165
  "owner": "cachix",
166
166
  "repo": "git-hooks.nix",
167
- "rev": "8e7576e79b88c16d7ee3bbd112c8d90070832885",
167
+ "rev": "20e71a403c5de9ce5bd799031440da9728c1cda1",
168
168
  "type": "github"
169
169
  },
170
170
  "original": {
@@ -305,11 +305,11 @@
305
305
  },
306
306
  "nixpkgs_3": {
307
307
  "locked": {
308
- "lastModified": 1762596750,
309
- "narHash": "sha256-rXXuz51Bq7DHBlfIjN7jO8Bu3du5TV+3DSADBX7/9YQ=",
308
+ "lastModified": 1763835633,
309
+ "narHash": "sha256-HzxeGVID5MChuCPESuC0dlQL1/scDKu+MmzoVBJxulM=",
310
310
  "owner": "NixOS",
311
311
  "repo": "nixpkgs",
312
- "rev": "b6a8526db03f735b89dd5ff348f53f752e7ddc8e",
312
+ "rev": "050e09e091117c3d7328c7b2b7b577492c43c134",
313
313
  "type": "github"
314
314
  },
315
315
  "original": {
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 3.1.0
3
+ npmVersion: 3.2.0
4
4
  supportsES6: true
5
5
  useSingleRequestParameter: true
6
6
  withNodeImports: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopadjs",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",
@@ -35,7 +35,10 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "24.10.1",
38
- "prettier": "3.6.2",
38
+ "prettier": "3.7.1",
39
39
  "typescript": "5.9.3"
40
+ },
41
+ "publishConfig": {
42
+ "provenance": true
40
43
  }
41
44
  }