chore(deps): bump toml from 0.8.23 to 0.9.12+spec-1.1.0 - #1009
chore(deps): bump toml from 0.8.23 to 0.9.12+spec-1.1.0#1009dependabot[bot] wants to merge 1 commit into
Conversation
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
|
This PR changes mirrored Maestro source files in the public repo, but it does not link the matching private source-of-truth PR. Add one of these to the PR body, then re-run the check:
Mirrored files touched:
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: fd84a39520
ℹ️ About Codex in GitHub
Codex has been enabled to automatically 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 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| dunce.workspace = true | ||
| fd-lock.workspace = true | ||
| toml = "0.8" | ||
| toml = "0.9" |
There was a problem hiding this comment.
Fix config document parsing before bumping toml
With toml = "0.9", toml::Value's FromStr parses a single TOML value rather than a document, but this crate still reads config files with content.parse::<toml::Value>() in paths like set_workspace_trust_in_global_config, config_cli::load_toml, and skill package config loading. For any existing config.toml containing ordinary document syntax such as model = "..." or [projects], those paths now fail to parse and either drop settings or reject trust/package updates, breaking the configured global/project config layers. Parse as toml::Table/toml::from_str and wrap it in Value::Table where a generic value is needed.
Useful? React with 👍 / 👎.
Bumps [toml](https://github.com/toml-rs/toml) from 0.8.23 to 0.9.12+spec-1.1.0. - [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.12) --- updated-dependencies: - dependency-name: toml dependency-version: 0.9.12+spec-1.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
fd84a39 to
7b75e48
Compare
Bumps toml from 0.8.23 to 0.9.12+spec-1.1.0.
Commits
a26defdchore: Release6c45f8edocs: Update changeloge3c7aa7chore: Release2dabe11docs: Update changelogfb98198fix(parser): Don't panic on bad hex characters (#1097)85761c4fix(parser): Avoid panic5edb477fix(parser): Don't panic on bad hex characterscac04aftest(parser): Show another assert cased96417afix(parser): Consistently assume spaces mean strings88b657ftest(parser): Show assert case