Skip to content

Commit 8d6f94e

Browse files
authored
Request 'id-token' permission for OIDC (#469)
build(workflow): request 'id-token' permission for OIDC
1 parent 1f99c8e commit 8d6f94e

File tree

9 files changed

+36
-10
lines changed

9 files changed

+36
-10
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ on:
55
branches: [master]
66
types: [closed]
77

8+
permissions:
9+
actions: write
10+
attestations: write
11+
checks: write
12+
contents: write
13+
deployments: write
14+
discussions: write
15+
issues: write
16+
id-token: write
17+
packages: write
18+
pull-requests: write
19+
repository-projects: write
20+
security-events: write
21+
statuses: write
22+
823
jobs:
924
check-release:
1025
name: Check release required

.pubnub.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22
changelog:
3+
- date: 2025-07-28
4+
version: v9.8.3
5+
changes:
6+
- type: improvement
7+
text: "Update workflow with `id-token: write` permission for AWS CLI configuration."
38
- date: 2025-07-28
49
version: v9.8.2
510
changes:
@@ -1303,7 +1308,7 @@ supported-platforms:
13031308
- 'Ubuntu 14.04 and up'
13041309
- 'Windows 7 and up'
13051310
version: 'Pubnub Javascript for Node'
1306-
version: '9.8.2'
1311+
version: '9.8.3'
13071312
sdks:
13081313
- full-name: PubNub Javascript SDK
13091314
short-name: Javascript
@@ -1319,7 +1324,7 @@ sdks:
13191324
- distribution-type: source
13201325
distribution-repository: GitHub release
13211326
package-name: pubnub.js
1322-
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.8.2.zip
1327+
location: https://github.com/pubnub/javascript/archive/refs/tags/v9.8.3.zip
13231328
requires:
13241329
- name: 'agentkeepalive'
13251330
min-version: '3.5.2'
@@ -1990,7 +1995,7 @@ sdks:
19901995
- distribution-type: library
19911996
distribution-repository: GitHub release
19921997
package-name: pubnub.js
1993-
location: https://github.com/pubnub/javascript/releases/download/v9.8.2/pubnub.9.8.2.js
1998+
location: https://github.com/pubnub/javascript/releases/download/v9.8.3/pubnub.9.8.3.js
19941999
requires:
19952000
- name: 'agentkeepalive'
19962001
min-version: '3.5.2'

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v9.8.3
2+
July 28 2025
3+
4+
#### Modified
5+
- Update workflow with `id-token: write` permission for AWS CLI configuration.
6+
17
## v9.8.2
28
July 28 2025
39

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Watch [Getting Started with PubNub JS SDK](https://app.dashcam.io/replay/64ee0d2
2727
npm install pubnub
2828
```
2929
* or download one of our builds from our CDN:
30-
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.8.2.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.8.2.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.8.3.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.9.8.3.min.js
3232
3333
2. Configure your keys:
3434

dist/web/pubnub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5333,7 +5333,7 @@
53335333
return base.PubNubFile;
53345334
},
53355335
get version() {
5336-
return '9.8.2';
5336+
return '9.8.3';
53375337
},
53385338
getVersion() {
53395339
return this.version;

dist/web/pubnub.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
164164
return base.PubNubFile;
165165
},
166166
get version() {
167-
return '9.8.2';
167+
return '9.8.3';
168168
},
169169
getVersion() {
170170
return this.version;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "9.8.2",
3+
"version": "9.8.3",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"scripts": {

src/core/components/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export const makeConfiguration = (
232232
return base.PubNubFile;
233233
},
234234
get version(): string {
235-
return '9.8.2';
235+
return '9.8.3';
236236
},
237237
getVersion(): string {
238238
return this.version;

0 commit comments

Comments
 (0)