Skip to content

Conversation

@Jordonbc
Copy link
Collaborator

@Jordonbc Jordonbc commented Jan 8, 2026

No description provided.

Jordonbc and others added 30 commits December 26, 2025 00:39
Merge pull request #109 from Jordonbc/Dev
First implementation of plugins
Removed the 'Local-first' feature description from the README.
Remove 'Local-first' feature description
Jordonbc and others added 28 commits January 1, 2026 03:06
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
…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
@Jordonbc Jordonbc merged commit c63deba into stable Jan 8, 2026
5 checks passed
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a 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".

Comment on lines +770 to +772
cmd.env_clear();
for (k, v) in sanitized_env() {
cmd.env(k, v);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge 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 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants