-
Notifications
You must be signed in to change notification settings - Fork 0
Relese Candidate 6 #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relese Candidate 6 #131
Conversation
Merge pull request #109 from Jordonbc/Dev
Disabled Flatpak build in workflows
Right click options
First implementation of plugins
update readme
Removed the 'Local-first' feature description from the README.
Remove 'Local-first' feature description
Update Cargo.lock
Update stdio_rpc.rs
Fix plugin issues
Update plugin_paths.rs
Bumps the actions-minor-patch group with 1 update: [tauri-apps/tauri-action](https://github.com/tauri-apps/tauri-action). Updates `tauri-apps/tauri-action` from 0.6.0 to 0.6.1 - [Release notes](https://github.com/tauri-apps/tauri-action/releases) - [Changelog](https://github.com/tauri-apps/tauri-action/blob/dev/CHANGELOG.md) - [Commits](tauri-apps/tauri-action@19b93bb...73fb865) --- updated-dependencies: - dependency-name: tauri-apps/tauri-action dependency-version: 0.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps the cargo-minor-patch group with 1 update: [tokio](https://github.com/tokio-rs/tokio). Updates `tokio` from 1.48.0 to 1.49.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.48.0...tokio-1.49.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.49.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…ctions-minor-patch-2b735e35b7 Bump tauri-apps/tauri-action from 0.6.0 to 0.6.1 in the actions-minor-patch group
This reverts commit 8980e69.
…r-patch-db66a9c534 Bump tokio from 1.48.0 to 1.49.0 in the cargo-minor-patch group
- Skip Git LFS checkout in Dev CI\n- Free space on Linux runner images\n- Remove Frontend/node_modules before rust-cache post-save\n- Treat rust-cache failures as non-fatal
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 4f5c63dabd
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| cmd.env_clear(); | ||
| for (k, v) in sanitized_env() { | ||
| cmd.env(k, v); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Preserve PATH entries needed for git discovery
Here process.exec clears the environment and then rebuilds it from sanitized_env, which later hard-sets PATH to /usr/bin:/bin (Unix) or %SystemRoot%\System32 (Windows). That means Command::new("git") will fail on common installs where git lives in /usr/local/bin or /opt/homebrew/bin (macOS) or C:\Program Files\Git\bin (Windows), so the plugin-backed git backend can’t execute even basic repo operations on those systems. Consider preserving the existing PATH or explicitly appending common git locations to avoid breaking default setups.
Useful? React with 👍 / 👎.
No description provided.