Skip to content

Commit 66391b4

Browse files
authored
Merge branch 'master' into CLEN-3438
2 parents fd1b9e4 + 0ad7d97 commit 66391b4

9 files changed

Lines changed: 41 additions & 30 deletions

File tree

.coderabbit.yaml

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ reviews:
1717
enabled: true
1818
drafts: true
1919

20+
# Sparse-checkout / review scope: include .github explicitly; exclude generated and vendor paths
21+
path_filters:
22+
- ".github/**"
23+
- "!dist/**"
24+
- "!lib/**"
25+
- "!upload/**"
26+
- "!node_modules/**"
27+
- "!package-lock.json"
28+
- "!.pubnub.yml"
29+
- "!.vscode/**"
30+
2031
# Path-based review instructions
2132
path_instructions:
2233
- path: "src/core/**"
@@ -69,37 +80,27 @@ reviews:
6980
- Proper use of mocks/stubs (Sinon + Nock)
7081
- No flaky patterns (hardcoded timeouts, race conditions)
7182
- Tests that actually assert meaningful behavior
83+
- path: ".github/**"
84+
instructions: |
85+
GitHub Actions workflows and repo automation. Review for:
86+
- Valid workflow YAML (triggers, concurrency, job dependencies)
87+
- Safe use of secrets and minimal required permissions
88+
- Reasonable timeouts and matrix coverage; actionlint/YAMLlint findings should be addressed
7289
7390
# Tools configuration
7491
tools:
7592
# Enable GitHub checks integration
7693
github-checks:
7794
enabled: true
7895
timeout_ms: 120000
96+
yamllint:
97+
enabled: true
98+
actionlint:
99+
enabled: true
79100

80101
chat:
81102
auto_reply: true
82103

83104
knowledge_base:
84105
mcp:
85106
usage: enabled
86-
87-
# Path filters - ignore generated/vendored/build output
88-
path_filters:
89-
# Build outputs
90-
- "!dist/**"
91-
- "!lib/**"
92-
- "!upload/**"
93-
94-
# Dependencies
95-
- "!node_modules/**"
96-
97-
# Lock files - too noisy, low review value
98-
- "!package-lock.json"
99-
100-
# Config/metadata that rarely needs review
101-
- "!.pubnub.yml"
102-
- "!.vscode/**"
103-
104-
# Generated type bundles
105-
- "!lib/types/**"

.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: 2026-05-13
4+
version: v11.0.1
5+
changes:
6+
- type: improvement
7+
text: "Bumped version of basic-ftp through override deps for proxy agent to use safe transitive dependency."
38
- date: 2026-04-20
49
version: v11.0.0
510
changes:
@@ -1406,7 +1411,7 @@ supported-platforms:
14061411
- 'Ubuntu 14.04 and up'
14071412
- 'Windows 7 and up'
14081413
version: 'Pubnub Javascript for Node'
1409-
version: '11.0.0'
1414+
version: '11.0.1'
14101415
sdks:
14111416
- full-name: PubNub Javascript SDK
14121417
short-name: Javascript
@@ -1422,7 +1427,7 @@ sdks:
14221427
- distribution-type: source
14231428
distribution-repository: GitHub release
14241429
package-name: pubnub.js
1425-
location: https://github.com/pubnub/javascript/archive/refs/tags/v11.0.0.zip
1430+
location: https://github.com/pubnub/javascript/archive/refs/tags/v11.0.1.zip
14261431
requires:
14271432
- name: 'agentkeepalive'
14281433
min-version: '3.5.2'
@@ -2093,7 +2098,7 @@ sdks:
20932098
- distribution-type: library
20942099
distribution-repository: GitHub release
20952100
package-name: pubnub.js
2096-
location: https://github.com/pubnub/javascript/releases/download/v11.0.0/pubnub.11.0.0.js
2101+
location: https://github.com/pubnub/javascript/releases/download/v11.0.1/pubnub.11.0.1.js
20972102
requires:
20982103
- name: 'agentkeepalive'
20992104
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+
## v11.0.1
2+
May 13 2026
3+
4+
#### Modified
5+
- Bumped version of basic-ftp through override deps for proxy agent to use safe transitive dependency.
6+
17
## v11.0.0
28
April 20 2026
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.11.0.0.js
31-
* https://cdn.pubnub.com/sdk/javascript/pubnub.11.0.0.min.js
30+
* https://cdn.pubnub.com/sdk/javascript/pubnub.11.0.1.js
31+
* https://cdn.pubnub.com/sdk/javascript/pubnub.11.0.1.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
@@ -5525,7 +5525,7 @@
55255525
return base.PubNubFile;
55265526
},
55275527
get version() {
5528-
return '11.0.0';
5528+
return '11.0.1';
55295529
},
55305530
getVersion() {
55315531
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
@@ -168,7 +168,7 @@ const makeConfiguration = (base, setupCryptoModule) => {
168168
return base.PubNubFile;
169169
},
170170
get version() {
171-
return '11.0.0';
171+
return '11.0.1';
172172
},
173173
getVersion() {
174174
return this.version;

package-lock.json

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

src/core/components/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export const makeConfiguration = (
236236
return base.PubNubFile;
237237
},
238238
get version(): string {
239-
return '11.0.0';
239+
return '11.0.1';
240240
},
241241
getVersion(): string {
242242
return this.version;

0 commit comments

Comments
 (0)