Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions crates/devtools-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.6...devtools-core-v0.4.0) - 2026-09-11

### Added

- Add the opt-in `test-utils` feature, exposing `ServerHandle::reset_defaults` to reset allowed origins for testing production and development modes. ([#402](https://github.com/crabnebula-dev/devtools/pull/402))

### Changed

- BREAKING: updated `devtools-wire-format` to `0.6.0` including a breaking version upgrade of tonic/prost types.
- Raise MSRV to 1.85. Added MSRV policy ([#414](https://github.com/crabnebula-dev/devtools/pull/414))
- Upgrade to tonic/prost 0.14 and http 1. ([#407](https://github.com/crabnebula-dev/devtools/pull/407))
- Simplified CORS handling to mirror the allowed request origin in `Access-Control-Allow-Origin`, including in local development mode, instead of returning an origin list or `*`. ([#407](https://github.com/crabnebula-dev/devtools/pull/407))
- Remove the unused `async-stream` dependency. ([#413](https://github.com/crabnebula-dev/devtools/pull/413))

### Fixed

- Increase span buffer size to avoid dropped spans and UX issues. ([#227](https://github.com/crabnebula-dev/devtools/pull/227))

### Other

- General dependency updates
- General CI maintenance

## [0.3.7](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.6...devtools-core-v0.3.7) - 2026-09-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/devtools-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devtools-core"
version = "0.3.7"
version = "0.4.0"
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
rust-version = "1.85.0"
authors.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.1](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.2.0...tauri-plugin-devtools-v2.2.1) - 2026-09-11

### Fixed

- `devtools-core` release should have been breaking, upgrade to `0.4.0`.

## [2.2.0](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.1.0...tauri-plugin-devtools-v2.2.0) - 2026-09-11

### Changed
Expand Down
6 changes: 3 additions & 3 deletions crates/devtools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-devtools"
version = "2.2.0"
version = "2.2.1"
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
rust-version = "1.85.0"
authors.workspace = true
Expand All @@ -23,10 +23,10 @@ tauri = { workspace = true, features = ["test"] }
reqwest = { version = "0.13.2", default-features = false, features = [
"rustls",
] }
devtools-core = { path = "../devtools-core", version = "0.3.7", features = ["test-utils"] }
devtools-core = { path = "../devtools-core", version = "0.4.0", features = ["test-utils"] }

[dependencies]
devtools-core = { path = "../devtools-core", version = "0.3.7" }
devtools-core = { path = "../devtools-core", version = "0.4.0" }
tauri.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
Expand Down
5 changes: 2 additions & 3 deletions crates/v1/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/v1/crates/devtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/crabnebula-dev/devtools"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
devtools-core = { path = "../../../devtools-core", version = "0.3.3" }
devtools-core = { path = "../../../devtools-core", version = "0.4.0" }
tauri = { version = "1.6.1", features = ["tracing"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tauri-build.workspace = true

[dependencies]
tauri.workspace = true
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.2.0" }
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.2.1" }
tracing.workspace = true
tokio = { workspace = true, features = ["time"] }
reqwest = { version = "0.13.2", default-features = false, features = [
Expand Down