Skip to content

Commit baca47b

Browse files
committed
Merge branch 'v2' into updater-install-no-restart
2 parents 534bd9a + 2e5bcdf commit baca47b

66 files changed

Lines changed: 2467 additions & 2478 deletions

Some content is hidden

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

.cargo/audit.toml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
[advisories]
22
ignore = [
3-
# time 0.1
4-
"RUSTSEC-2020-0071",
5-
# needs sqlx 0.7 (still in alpha)
6-
"RUSTSEC-2022-0090",
7-
# wry needs kuchiki on Android
8-
"RUSTSEC-2023-0019",
9-
# atty is only used when the `colored` feature is enabled on tauri-plugin-log
10-
"RUSTSEC-2021-0145",
3+
# time crate can't be updated in the repo because of MSRV, users are unaffected
4+
"RUSTSEC-2026-0009",
115
]
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"sql": minor
3+
"sql-js": minor
4+
---
5+
6+
Add support for Postgres `NUMERIC` and custom data types.

.changes/change-pr-3214.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"deep-link": patch
3+
"deep-link-js": patch
4+
---
5+
6+
Account for differing Android VIEW intent in ChromeOS, fixing deep-link behaviour on Chromium platforms.

.changes/change-pr-3285.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"updater": patch
3+
"updater-js": patch
4+
---
5+
6+
fix: preserve file extension of updater package, otherwise users may get confused when presented with a sudo dialog suggesting to install a file with the extension `.rpm` using `dpkg -i`
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"fs": patch
3+
"fs-js": patch
4+
---
5+
6+
Removed the dependency on `tauri-utils`'s `build` feature

.changes/nfc-lambda.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
nfc: patch
3+
nfc-js: patch
4+
---
5+
6+
Fixed syntax error in kotlin files potentially causing issues when trying to write to tags when no prior session existed.

.changes/security-scoped-ios.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"fs": minor
3+
"fs-js": minor
4+
---
5+
6+
Enable access for security-scoped resources on iOS by automatically calling `NSURL::startAccessingSecurityScopedResource` on resource access and adding the `stopAccessingSecurityScopedResource` API.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"deep-link": patch
3+
"deep-link-js": patch
4+
---
5+
6+
Validate Android new intent is actually a deep link before triggering the onOpenUrl event.

.github/CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Hi! We, the maintainers, are really excited that you are interested in contribut
55
- [Issue Reporting Guidelines](#issue-reporting-guidelines)
66
- [Pull Request Guidelines](#pull-request-guidelines)
77
- [Development Guide](#development-guide)
8+
- [AI Tool Policy](#ai-tool-policy)
89

910
## Issue Reporting Guidelines
1011

@@ -60,3 +61,13 @@ The easiest way to test your changes is to use the [example app](https://github.
6061
To test local changes against your own application simply point the plugin create to your local repository, for example:
6162

6263
`tauri-plugin-sample = { path = "path/to/local/tauri-plugin-sample/" }`
64+
65+
## AI Tool Policy
66+
67+
It takes a lot of time to review a Pull Request while it's very easy to make a nonsensical but plausible looking one using AI tools.
68+
It is unfair for other contributors and the reviewers to spend much of the time dealing with this, hence these rules:
69+
70+
1. Review and test all LLM-generated content before submitting, you're the one responsible for it, not the AI.
71+
2. Don't use AI to respond to review comments (except for translations).
72+
73+
We will close the Pull Request with a `ai-slop` tag if you failed to do so.

.github/workflows/audit-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@v4
37-
- uses: rustsec/audit-check@v1
37+
- uses: rustsec/audit-check@v2
3838
with:
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
# https://github.com/tauri-apps/plugins-workspace/issues/774

0 commit comments

Comments
 (0)