Skip to content

Commit d19b335

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/axios-1.16.0
2 parents 22aad60 + dac92b4 commit d19b335

23 files changed

Lines changed: 881 additions & 186 deletions

.changeset/dependabot-pr-617.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
chore(deps): bump fast-uri from 3.1.0 to 3.1.2

.changeset/dependabot-pr-618.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
chore(deps): bump ws from 8.20.0 to 8.20.1

.changeset/dependabot-pr-620.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
chore(deps): bump uuid from 8.3.2 to 14.0.0

.changeset/funky-coins-know.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": minor
3+
---
4+
5+
feat: NIP-42 AUTH handler and WebSocket session wiring

.changeset/quick-cats-agree.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
Refactor EventRepository query construction to reduce method complexity.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": minor
3+
---
4+
5+
refactor(http): remove deprecated network.remote_ip_header fallback and rely on network.remoteIpHeader
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
test(integration): verify response content-type across core HTTP paths

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"ramda": "0.28.0",
175175
"redis": "4.5.1",
176176
"stream-json": "^2.1.0",
177-
"ws": "^8.18.0",
177+
"ws": "^8.20.1",
178178
"zod": "^3.22.4"
179179
},
180180
"optionalDependencies": {

pnpm-lock.yaml

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

src/@types/adapters.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ export type IWebSocketAdapter = EventEmitter & {
1515
getClientId(): string
1616
getClientAddress(): string
1717
getSubscriptions(): Map<string, SubscriptionFilter[]>
18+
getChallenge(): string
19+
getAuthenticatedPubkeys(): ReadonlySet<string>
20+
addAuthenticatedPubkey(pubkey: string): void
1821
}
1922

2023
export interface ICacheAdapter {

0 commit comments

Comments
 (0)