Skip to content

Commit 0eedd8c

Browse files
authored
Merge branch 'v2' into notification-fixes
2 parents 3731c04 + c463d8a commit 0eedd8c

138 files changed

Lines changed: 3415 additions & 3124 deletions

File tree

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: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
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",
5+
# libflate crates can't be updated in the repo because of MSRV, users are unaffected
6+
"RUSTSEC-2026-0105",
117
]

.changes/change-pr-3244.md

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

.changes/change-pr-3252.md

Lines changed: 0 additions & 6 deletions
This file was deleted.
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+
Fix broken iOS custom URL schemes
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"opener": patch
3+
"opener-js": patch
4+
---
5+
6+
Fix `revealItemInDir`/`reveal_items_in_dir` can't reveal network paths like `\\wsl.localhost\Ubuntu\etc` on Windows
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
store: patch
3+
store-js: patch
4+
---
5+
6+
Fix a deadlock when calling `Store::set` while exiting (on `RunEvent::Exit`)

.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)