Release stable 0.2.0#73
Merged
Merged
Conversation
Contributor
Package Changes Through 04432adThere are 2 changes which include tracing with minor, tracing-js with minor Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
766e3d0 to
1090249
Compare
Remove prerelease configuration and bump versions to 0.2.0. **Highlights:** - Add flamegraph feature for performance profiling - Add WebviewLayer for custom subscriber setups - Add file logging with rotation - Add takeoverConsole() for full console integration - Add interceptConsole() and attachConsole() for flexible routing - Add StripAnsiWriter for clean file output - Add custom filter and layer support - Add format options and timezone strategy - Add per-target log level filtering - Add clippy lints to deny unwrap/expect in production - Remove timing feature
1090249 to
04432ad
Compare
Merged
johncarmack1984
pushed a commit
that referenced
this pull request
Jan 14, 2026
# Version Updates Merging this PR will release new versions of the following packages based on your change files. # tracing ## [0.3.0] - 061b015 (#84 by @johncarmack1984) Clarify that the flamegraph feature measures span timing (wall-clock time), not CPU time. Updated documentation with appropriate use cases and limitations. - b059e9f (#73 by @johncarmack1984) Release 0.2.0 stable. **Highlights:** - Add `flamegraph` feature for performance profiling with flamegraph/flamechart generation - Add `WebviewLayer` for custom subscriber setups - Add file logging with rotation (`with_file_logging()`, `with_rotation()`, `with_max_file_size()`) - Add `StripAnsiWriter` for clean file output when using colored terminal output - Add custom filter support (`filter()`) and custom layer support (`with_layer()`) - Add format options (`with_format()`, `with_file()`, `with_line_number()`, etc.) - Add timezone strategy for log timestamps - Add per-target log level filtering (`with_target()`) - Add `takeoverConsole()` for full console integration (JS → Rust → browser) - Add `interceptConsole()` and `attachConsole()` for flexible console routing - Add early initialization support for flamegraph (`create_flame_layer_with_path()`) - Add clippy lints to deny `unwrap()`/`expect()` in production code - Remove `timing` feature (use native `console.time()` or tracing spans instead) - 829732c (#87 by @johncarmack1984) Remove private registry configuration. - 437dab0 (#85 by @johncarmack1984) Shorten README, link to docs.rs for details. - 675d209 (#82 by @johncarmack1984) Switch to public package publishing: Rust on crates.io, npm with public access. # tracing-js ## [0.3.0] - 061b015 (#84 by @johncarmack1984) Clarify that the flamegraph feature measures span timing (wall-clock time), not CPU time. Updated documentation with appropriate use cases and limitations. - b059e9f (#73 by @johncarmack1984) Release 0.2.0 stable. **Highlights:** - Add `flamegraph` feature for performance profiling with flamegraph/flamechart generation - Add `WebviewLayer` for custom subscriber setups - Add file logging with rotation (`with_file_logging()`, `with_rotation()`, `with_max_file_size()`) - Add `StripAnsiWriter` for clean file output when using colored terminal output - Add custom filter support (`filter()`) and custom layer support (`with_layer()`) - Add format options (`with_format()`, `with_file()`, `with_line_number()`, etc.) - Add timezone strategy for log timestamps - Add per-target log level filtering (`with_target()`) - Add `takeoverConsole()` for full console integration (JS → Rust → browser) - Add `interceptConsole()` and `attachConsole()` for flexible console routing - Add early initialization support for flamegraph (`create_flame_layer_with_path()`) - Add clippy lints to deny `unwrap()`/`expect()` in production code - Remove `timing` feature (use native `console.time()` or tracing spans instead) - 829732c (#87 by @johncarmack1984) Remove private registry configuration. - 437dab0 (#85 by @johncarmack1984) Shorten README, link to docs.rs for details. - 675d209 (#82 by @johncarmack1984) Switch to public package publishing: Rust on crates.io, npm with public access. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Prepare stable 0.2.0 release by removing prerelease configuration and change files.
Version bumps:
tauri-plugin-tracing: 0.2.0-canary.19 → 0.2.0@fltsci/tauri-plugin-tracing: 0.2.0-canary.19 → 0.2.0Highlights:
flamegraphfeature for performance profiling with flamegraph/flamechart generationWebviewLayerfor custom subscriber setupswith_file_logging(),with_rotation(),with_max_file_size())StripAnsiWriterfor clean file output when using colored terminal outputfilter()) and custom layer support (with_layer())with_format(),with_file(),with_line_number(), etc.)with_target())takeoverConsole()for full console integration (JS → Rust → browser)interceptConsole()andattachConsole()for flexible console routingcreate_flame_layer_with_path())unwrap()/expect()in production codetimingfeature (use nativeconsole.time()or tracing spans instead)Test plan
cargo clippypassescargo nextest runpassespnpm testpasses