Skip to content

Commit dbf5695

Browse files
committed
Merge branch 'v2' into feat/http/persist-cookies
2 parents 10ce353 + 5347de8 commit dbf5695

File tree

189 files changed

+3291
-2954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+3291
-2954
lines changed

.changes/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,20 @@
1414
"command": "pnpm build",
1515
"dryRunCommand": "pnpm build"
1616
},
17+
{
18+
"command": "echo '<details>\n<summary><em><h4>PNPM Publish</h4></em></summary>\n\n```'",
19+
"dryRunCommand": true,
20+
"pipe": true
21+
},
1722
{
1823
"command": "npm publish --provenance --access public",
1924
"dryRunCommand": "npm publish --provenance --access public --dry-run",
2025
"pipe": true
26+
},
27+
{
28+
"command": "echo '```\n\n</details>\n'",
29+
"dryRunCommand": true,
30+
"pipe": true
2131
}
2232
]
2333
},

.changes/log-caller-location-throw.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/audit-javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
node-version: 'lts/*'
4747
- uses: pnpm/action-setup@v4
4848
with:
49-
version: 9.x.x
49+
version: 10.x.x
5050
run_install: true
5151
- name: audit
5252
run: pnpm audit

.github/workflows/check-generated-files.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
pull_request:
99
paths:
1010
- '.github/workflows/check-generated-files.yml'
11+
- pnpm-lock.yaml
1112
- '**/guest-js/**'
1213

1314
concurrency:
@@ -27,94 +28,117 @@ jobs:
2728
filters: |
2829
autostart:
2930
- .github/workflows/check-generated-files.yml
31+
- pnpm-lock.yaml
3032
- plugins/autostart/guest-js/**
3133
- plugins/autostart/src/api-iife.js
3234
cli:
3335
- .github/workflows/check-generated-files.yml
36+
- pnpm-lock.yaml
3437
- plugins/cli/guest-js/**
3538
- plugins/cli/src/api-iife.js
3639
clipboard-manager:
3740
- .github/workflows/check-generated-files.yml
41+
- pnpm-lock.yaml
3842
- plugins/clipboard-manager/guest-js/**
3943
- plugins/clipboard-manager/src/api-iife.js
4044
dialog:
4145
- .github/workflows/check-generated-files.yml
46+
- pnpm-lock.yaml
4247
- plugins/dialog/guest-js/**
4348
- plugins/dialog/src/api-iife.js
4449
fs:
4550
- .github/workflows/check-generated-files.yml
51+
- pnpm-lock.yaml
4652
- plugins/fs/guest-js/**
4753
- plugins/fs/src/api-iife.js
4854
geolocation:
4955
- .github/workflows/check-generated-files.yml
56+
- pnpm-lock.yaml
5057
- plugins/geolocation/guest-js/**
5158
- plugins/geolocation/src/api-iife.js
5259
global-shortcut:
5360
- .github/workflows/check-generated-files.yml
61+
- pnpm-lock.yaml
5462
- plugins/global-shortcut/guest-js/**
5563
- plugins/global-shortcut/src/api-iife.js
5664
opener:
5765
- .github/workflows/check-generated-files.yml
66+
- pnpm-lock.yaml
5867
- plugins/opener/guest-js/**
5968
- plugins/opener/src/api-iife.js
6069
haptics:
6170
- .github/workflows/check-generated-files.yml
71+
- pnpm-lock.yaml
6272
- plugins/haptics/guest-js/**
6373
- plugins/haptics/src/api-iife.js
6474
http:
6575
- .github/workflows/check-generated-files.yml
76+
- pnpm-lock.yaml
6677
- plugins/http/guest-js/**
6778
- plugins/http/src/api-iife.js
6879
log:
6980
- .github/workflows/check-generated-files.yml
81+
- pnpm-lock.yaml
7082
- plugins/log/guest-js/**
7183
- plugins/log/src/api-iife.js
7284
notification:
7385
- .github/workflows/check-generated-files.yml
86+
- pnpm-lock.yaml
7487
- plugins/notification/guest-js/**
7588
- plugins/notification/src/api-iife.js
7689
os:
7790
- .github/workflows/check-generated-files.yml
91+
- pnpm-lock.yaml
7892
- plugins/os/guest-js/**
7993
- plugins/os/src/api-iife.js
8094
positioner:
8195
- .github/workflows/check-generated-files.yml
96+
- pnpm-lock.yaml
8297
- plugins/positioner/guest-js/**
8398
- plugins/positioner/src/api-iife.js
8499
process:
85100
- .github/workflows/check-generated-files.yml
101+
- pnpm-lock.yaml
86102
- plugins/process/guest-js/**
87103
- plugins/process/src/api-iife.js
88104
shell:
89105
- .github/workflows/check-generated-files.yml
106+
- pnpm-lock.yaml
90107
- plugins/shell/guest-js/**
91108
- plugins/shell/src/api-iife.js
92109
sql:
93110
- .github/workflows/check-generated-files.yml
111+
- pnpm-lock.yaml
94112
- plugins/sql/guest-js/**
95113
- plugins/sql/src/api-iife.js
96114
store:
97115
- .github/workflows/check-generated-files.yml
116+
- pnpm-lock.yaml
98117
- plugins/store/guest-js/**
99118
- plugins/store/src/api-iife.js
100119
stronghold:
101120
- .github/workflows/check-generated-files.yml
121+
- pnpm-lock.yaml
102122
- plugins/stronghold/guest-js/**
103123
- plugins/stronghold/src/api-iife.js
104124
updater:
105125
- .github/workflows/check-generated-files.yml
126+
- pnpm-lock.yaml
106127
- plugins/updater/guest-js/**
107128
- plugins/updater/src/api-iife.js
108129
upload:
109130
- .github/workflows/check-generated-files.yml
131+
- pnpm-lock.yaml
110132
- plugins/upload/guest-js/**
111133
- plugins/upload/src/api-iife.js
112134
websocket:
113135
- .github/workflows/check-generated-files.yml
136+
- pnpm-lock.yaml
114137
- plugins/websocket/guest-js/**
115138
- plugins/websocket/src/api-iife.js
116139
window-state:
117140
- .github/workflows/check-generated-files.yml
141+
- pnpm-lock.yaml
118142
- plugins/window-state/guest-js/**
119143
- plugins/window-state/src/api-iife.js
120144
@@ -143,7 +167,7 @@ jobs:
143167
node-version: 'lts/*'
144168
- uses: pnpm/action-setup@v4
145169
with:
146-
version: 9.x.x
170+
version: 10.x.x
147171
run_install: true
148172

149173
- name: build api

.github/workflows/covector-version-or-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- uses: pnpm/action-setup@v4
4141
with:
42-
version: 9.x.x
42+
version: 10.x.x
4343
run_install: true
4444

4545
- name: cargo login
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Create Pull Request With Versions Bumped
7777
id: cpr
78-
uses: tauri-apps/create-pull-request@v3
78+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # 7.0.7
7979
if: steps.covector.outputs.commandRan == 'version'
8080
with:
8181
title: 'Publish New Versions (${{ github.ref_name }})'

.github/workflows/fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: 'lts/*'
3939
- uses: pnpm/action-setup@v4
4040
with:
41-
version: 9.x.x
41+
version: 10.x.x
4242
run_install: true
4343
- run: pnpm format:check
4444

.github/workflows/lint-javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
node-version: 'lts/*'
5050
- uses: pnpm/action-setup@v4
5151
with:
52-
version: 9.x.x
52+
version: 10.x.x
5353
run_install: true
5454
- name: eslint
5555
run: pnpm lint

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: pnpm/action-setup@v4
4040
with:
41-
version: 9.x.x
41+
version: 10.x.x
4242
run_install: true
4343

4444
- name: Build packages

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ target/
1414

1515
# .vscode workspace settings file
1616
.vscode/settings.json
17+
.vscode/launch.json
18+
.vscode/tasks.json
1719

1820
# npm, yarn and bun lock files
1921
package-lock.json

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"singleQuote": true,
33
"semi": false,
4-
"trailingComma": "none"
4+
"trailingComma": "none",
5+
"experimentalOperatorPosition": "start"
56
}

0 commit comments

Comments
 (0)