Skip to content

Commit 83a2ed7

Browse files
committed
Update dependencies
1 parent 0ec28db commit 83a2ed7

6 files changed

Lines changed: 832 additions & 1118 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout the repository
15-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
15+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
- name: Extract the changelog
1717
id: changelog
1818
run: |
@@ -36,7 +36,7 @@ jobs:
3636
echo "EOF" >> $GITHUB_OUTPUT
3737
- name: Create the release
3838
if: steps.changelog.outputs.changelog_content != ''
39-
uses: softprops/action-gh-release@fbadcc90e88ecface60a0a0d123795b784ceb239 # v2.3.2
39+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
4040
with:
4141
name: ${{ github.ref_name }}
4242
body: '${{ steps.changelog.outputs.changelog_content }}'

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout the repository
16-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
- name: Install pnpm
18-
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0 # v4.1.0
18+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
1919
with:
2020
version: 10
2121
- name: Install Node.js
22-
uses: actions/setup-node@d7a11313b581b306c961b506cfc8971208bb03f6 # v4.4.0
22+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2323
with:
2424
node-version: 25
2525
cache: pnpm
@@ -37,13 +37,13 @@ jobs:
3737
name: Node.js ${{ matrix.node-version }} Quick
3838
steps:
3939
- name: Checkout the repository
40-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
40+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4141
- name: Install pnpm
42-
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0 # v4.1.0
42+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
4343
with:
4444
version: 10
4545
- name: Install Node.js ${{ matrix.node-version }}
46-
uses: actions/setup-node@d7a11313b581b306c961b506cfc8971208bb03f6 # v4.4.0
46+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
4747
with:
4848
node-version: ${{ matrix.node-version }}
4949
cache: pnpm

base-server/index.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -480,29 +480,25 @@ type ActionCallbacks<
480480
TypeAction extends Action,
481481
Data extends object,
482482
Headers extends object
483-
> = {
484-
finally?: ActionFinally<TypeAction, Data, Headers>
485-
resend?: Resender<TypeAction, Data, Headers>
486-
} & (
483+
> = (
487484
| {
488485
access: Authorizer<TypeAction, Data, Headers>
489486
process?: Processor<TypeAction, Data, Headers>
490487
}
491488
| {
492489
accessAndProcess: Processor<TypeAction, Data, Headers>
493490
}
494-
)
491+
) & {
492+
finally?: ActionFinally<TypeAction, Data, Headers>
493+
resend?: Resender<TypeAction, Data, Headers>
494+
}
495495

496496
type ChannelCallbacks<
497497
SubscribeAction extends Action,
498498
Data extends object,
499499
ChannelParams extends object | string[],
500500
Headers extends object
501-
> = {
502-
filter?: FilterCreator<SubscribeAction, Data, ChannelParams, Headers>
503-
finally?: ChannelFinally<SubscribeAction, Data, ChannelParams, Headers>
504-
unsubscribe?: ChannelUnsubscribe<Data, ChannelParams, Headers>
505-
} & (
501+
> = (
506502
| {
507503
access: ChannelAuthorizer<SubscribeAction, Data, ChannelParams, Headers>
508504
load?: ChannelLoader<SubscribeAction, Data, ChannelParams, Headers>
@@ -515,7 +511,11 @@ type ChannelCallbacks<
515511
Headers
516512
>
517513
}
518-
)
514+
) & {
515+
filter?: FilterCreator<SubscribeAction, Data, ChannelParams, Headers>
516+
finally?: ChannelFinally<SubscribeAction, Data, ChannelParams, Headers>
517+
unsubscribe?: ChannelUnsubscribe<Data, ChannelParams, Headers>
518+
}
519519

520520
interface ActionReporter {
521521
action: Readonly<Action>

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,32 +35,32 @@
3535
"dependencies": {
3636
"@logux/actions": "^0.5.0",
3737
"@logux/core": "^0.10.0",
38-
"cookie": "^1.0.2",
39-
"fastq": "^1.19.1",
38+
"cookie": "^1.1.1",
39+
"fastq": "^1.20.1",
4040
"nanoevents": "^9.1.0",
41-
"nanoid": "^5.1.5",
42-
"tinyglobby": "^0.2.14",
41+
"nanoid": "^5.1.6",
42+
"tinyglobby": "^0.2.15",
4343
"url-pattern": "^1.0.3",
44-
"ws": "^8.18.3"
44+
"ws": "^8.19.0"
4545
},
4646
"devDependencies": {
47-
"@logux/eslint-config": "^56.1.0",
47+
"@logux/eslint-config": "^57.0.2",
4848
"@types/cross-spawn": "^6.0.6",
49-
"@types/node": "^24.3.0",
49+
"@types/node": "^25.3.5",
5050
"@types/ws": "^8.18.1",
51-
"@typescript-eslint/eslint-plugin": "^8.41.0",
52-
"@typescript-eslint/parser": "^8.41.0",
53-
"@vitest/coverage-v8": "^3.2.4",
54-
"actions-up": "^1.2.1",
51+
"@typescript-eslint/eslint-plugin": "^8.56.1",
52+
"@typescript-eslint/parser": "^8.56.1",
53+
"@vitest/coverage-v8": "^4.0.18",
54+
"actions-up": "^1.12.0",
5555
"check-dts": "^0.9.0",
56-
"clean-publish": "^5.2.2",
56+
"clean-publish": "^6.0.3",
5757
"cross-spawn": "^7.0.6",
58-
"eslint": "^9.34.0",
58+
"eslint": "^10.0.2",
5959
"nanospy": "^1.0.0",
6060
"print-snapshots": "^0.4.2",
61-
"typescript": "^5.9.2",
62-
"vite": "^7.1.4",
63-
"vitest": "^3.2.4"
61+
"typescript": "^5.9.3",
62+
"vite": "^7.3.1",
63+
"vitest": "^4.0.18"
6464
},
6565
"prettier": {
6666
"arrowParens": "avoid",

0 commit comments

Comments
 (0)