Skip to content

chore(deps): bump log from 0.4.29 to 0.4.32 in /src-tauri#8

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/src-tauri/log-0.4.32
Closed

chore(deps): bump log from 0.4.29 to 0.4.32 in /src-tauri#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/src-tauri/log-0.4.32

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown

Bumps log from 0.4.29 to 0.4.32.

Release notes

Sourced from log's releases.

0.4.32

What's Changed

Full Changelog: rust-lang/log@0.4.31...0.4.32

0.4.31

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

0.4.30

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes

Changelog

Sourced from log's changelog.

[0.4.32] - 2026-06-04

What's Changed

Full Changelog: rust-lang/log@0.4.31...0.4.32

[0.4.31] - 2026-06-02

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

[0.4.30] - 2026-05-21

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes

Commits
  • a5b5b21 Merge pull request #730 from rust-lang/cargo/0.4.32
  • c8d3b12 prepare for 0.4.32 release
  • ce6cd9f Merge pull request #729 from tisonkun/kv-std-support
  • 20b3b05 drop cfg-feature=kv as it is already met
  • 7bc1200 kv::std_support may not need value-bag
  • 5808392 Merge pull request #728 from rust-lang/cargo/0.4.31
  • 86d739f prepare for 0.4.31 release
  • c906cfb Merge pull request #727 from tisonkun/leverage-static-str-key-when-possible
  • 756c279 leverage str literal as well
  • 3dd250d rename Key::from_static_str to from_str_static
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 8, 2026
Bumps [log](https://github.com/rust-lang/log) from 0.4.29 to 0.4.32.
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.29...0.4.32)

---
updated-dependencies:
- dependency-name: log
  dependency-version: 0.4.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/src-tauri/log-0.4.32 branch from f344ac7 to a68974b Compare June 9, 2026 04:14
rwetz pushed a commit that referenced this pull request Jun 12, 2026
The in-app half of the ML Suite (spec: ML_SUITE.md). A new ML Lab
sidebar panel (pinned to the rail by default, one-time promotion for
existing rails) drives the external nexis-ml engine over an NDJSON
stdio protocol: one-click engine install into the detected venv (CPU
or CUDA torch via fixed pip flavors), in-panel project scaffolding
(Create & train), live training with a progress bar, plain-language
status sentences, friendly metric names, and decimated canvas charts;
past runs render from metrics.jsonl with no engine running. A status
bar pill shows progress and jumps to the panel.

Rust side (modules/ml.rs, modeled on the LSP session): ml_detect /
ml_spawn (train|replay|new allowlist, authorize_spawn_cwd, ConPTY-safe
hide_console) with a reader->flusher pair batching stdout at ~30 Hz,
ml_cancel via stdin, ml_kill, ml_install (allowlisted pip flavors),
ml_env capability probe, ml_gpu_probe (nvidia-smi). Engine >=0.2.0
reports the training device (auto/cpu/gpu with a job-size heuristic);
the panel surfaces it as a GPU chip, an install-time GPU checkbox, and
an Enable GPU upsell when the CPU torch build sits next to an NVIDIA
card.

Pitfalls carried over: #1C (authorize before spawn), #4/#1D
(hide_console everywhere), #8 (poison-recovering locks), #10
(detection memoized with delete-on-reject), #14 (charts subscribe to a
primitive tick; series buffers live outside zustand), #7-adjacent
(decimation caps series memory; Rust caps line length).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@dependabot @github

dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Author

Superseded by #24.

@dependabot dependabot Bot closed this Jun 22, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/src-tauri/log-0.4.32 branch June 22, 2026 07:37
rwetz pushed a commit that referenced this pull request Jul 4, 2026
…f shared locks, consolidate helpers

The CLAUDE.md pitfall invariants move from prose into the build:

- proc::command() is the only sanctioned subprocess constructor
  (CREATE_NO_WINDOW pre-applied); raw std::process::Command::new is banned
  by clippy disallowed-methods + a tripwire test (pitfalls #1D/#4). All 17
  spawn sites migrated; hide_console is now private.
- New tripwire suites: src-tauri/tests/pitfall_invariants.rs (ConPTY
  lifecycle lock on create+close, detached panic-free pty_close,
  authorize_spawn_cwd, -Command/NEXIS_PWSH_PROFILE launch, Command::new
  confinement, lock-poison bans) and src/lib/pitfall-guards.test.ts
  (pty_open confinement, writePref routing, composer disabled, reasoning
  pruning, Zustand selector stability). Failure messages name the pitfall.
- Pitfall-#8 poison recovery extended beyond the PTY to every shared-thread
  module: shell session map + background log buffers, LSP/DAP sessions,
  the fs_grep sink, and CONPTY_LIFECYCLE_LOCK itself. fs_stat's unreachable
  symlink kind fixed.
- Helper consolidation: canonical basename/dirname family in lib/path.ts
  (seven private copies still carried the fixed pitfall-#12 drive-root
  bug), formatBytes in lib/format.ts; shell_init.rs write_if_changed /
  integration_root / script consts de-duplicated across platforms.

Gates: tsc, vitest+coverage, cargo test/clippy/fmt all green; the clippy
ban verified to fire on an injected violation.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants