From 6a62ced645598301d69d6a7c7fd32dd239b8ad9d Mon Sep 17 00:00:00 2001 From: Jack Wright <56345+ayax79@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:54:54 -0700 Subject: [PATCH 01/13] Updating version for nu-ansi-term and reedline (#13432) Updating nu-answer-term to 0.50.1 and reedline to 0.33 --- Cargo.lock | 11 ++++++----- Cargo.toml | 8 ++++---- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97f81d5185..ee3faef06d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2913,11 +2913,11 @@ dependencies = [ [[package]] name = "nu-ansi-term" -version = "0.50.0" +version = "0.50.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd2800e1520bdc966782168a627aa5d1ad92e33b984bf7c7615d31280c83ff14" +checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -5004,8 +5004,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.32.0" -source = "git+https://github.com/nushell/reedline?branch=main#480059a3f52cf919341cda88e8c544edd846bc73" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f8c676a3f3814a23c6a0fc9dff6b6c35b2e04df8134aae6f3929cc34de21a53" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 81602fb4b1..32274816f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,7 +116,7 @@ mockito = { version = "1.4", default-features = false } native-tls = "0.2" nix = { version = "0.28", default-features = false } notify-debouncer-full = { version = "0.3", default-features = false } -nu-ansi-term = "0.50.0" +nu-ansi-term = "0.50.1" num-format = "0.4" num-traits = "0.2" omnipath = "0.1" @@ -138,7 +138,7 @@ quote = "1.0" rand = "0.8" ratatui = "0.26" rayon = "1.10" -reedline = "0.32.0" +reedline = "0.33.0" regex = "1.9.5" rmp = "0.8" rmp-serde = "1.3" @@ -305,8 +305,8 @@ bench = false # To use a development version of a dependency please use a global override here # changing versions in each sub-crate of the workspace is tedious -[patch.crates-io] -reedline = { git = "https://github.com/nushell/reedline", branch = "main" } +# [patch.crates-io] +# reedline = { git = "https://github.com/nushell/reedline", branch = "main" } # nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} # Run all benchmarks with `cargo bench` From a80dfe8e807035ad8d5bb751b385315982e7aad6 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Tue, 23 Jul 2024 16:10:35 -0700 Subject: [PATCH 02/13] Bump version to `0.96.0` (#13433) --- Cargo.lock | 74 +++++++++---------- Cargo.toml | 42 +++++------ crates/nu-cli/Cargo.toml | 24 +++--- crates/nu-cmd-base/Cargo.toml | 10 +-- crates/nu-cmd-extra/Cargo.toml | 22 +++--- crates/nu-cmd-lang/Cargo.toml | 10 +-- crates/nu-cmd-plugin/Cargo.toml | 10 +-- crates/nu-color-config/Cargo.toml | 10 +-- crates/nu-command/Cargo.toml | 36 ++++----- crates/nu-derive-value/Cargo.toml | 2 +- crates/nu-engine/Cargo.toml | 12 +-- crates/nu-explore/Cargo.toml | 18 ++--- crates/nu-glob/Cargo.toml | 2 +- crates/nu-json/Cargo.toml | 8 +- crates/nu-lsp/Cargo.toml | 14 ++-- crates/nu-parser/Cargo.toml | 10 +-- crates/nu-path/Cargo.toml | 4 +- crates/nu-plugin-core/Cargo.toml | 6 +- crates/nu-plugin-engine/Cargo.toml | 16 ++-- crates/nu-plugin-protocol/Cargo.toml | 6 +- crates/nu-plugin-test-support/Cargo.toml | 18 ++--- crates/nu-plugin/Cargo.toml | 14 ++-- crates/nu-pretty-hex/Cargo.toml | 2 +- crates/nu-protocol/Cargo.toml | 14 ++-- crates/nu-std/Cargo.toml | 8 +- crates/nu-system/Cargo.toml | 2 +- crates/nu-table/Cargo.toml | 12 +-- crates/nu-term-grid/Cargo.toml | 4 +- crates/nu-test-support/Cargo.toml | 8 +- crates/nu-utils/Cargo.toml | 2 +- .../src/sample_config/default_config.nu | 4 +- .../nu-utils/src/sample_config/default_env.nu | 2 +- crates/nu_plugin_custom_values/Cargo.toml | 6 +- crates/nu_plugin_example/Cargo.toml | 10 +-- crates/nu_plugin_formats/Cargo.toml | 8 +- crates/nu_plugin_gstat/Cargo.toml | 6 +- crates/nu_plugin_inc/Cargo.toml | 6 +- .../nu_plugin_nu_example.nu | 2 +- crates/nu_plugin_polars/Cargo.toml | 22 +++--- .../nu_plugin_python_example.py | 4 +- crates/nu_plugin_query/Cargo.toml | 8 +- crates/nu_plugin_stress_internals/Cargo.toml | 2 +- crates/nuon/Cargo.toml | 8 +- 43 files changed, 254 insertions(+), 254 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee3faef06d..6390b32ee3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2868,7 +2868,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.95.1" +version = "0.96.0" dependencies = [ "assert_cmd", "crossterm", @@ -2922,7 +2922,7 @@ dependencies = [ [[package]] name = "nu-cli" -version = "0.95.1" +version = "0.96.0" dependencies = [ "chrono", "crossterm", @@ -2957,7 +2957,7 @@ dependencies = [ [[package]] name = "nu-cmd-base" -version = "0.95.1" +version = "0.96.0" dependencies = [ "indexmap", "miette", @@ -2969,7 +2969,7 @@ dependencies = [ [[package]] name = "nu-cmd-extra" -version = "0.95.1" +version = "0.96.0" dependencies = [ "fancy-regex", "heck 0.5.0", @@ -2994,7 +2994,7 @@ dependencies = [ [[package]] name = "nu-cmd-lang" -version = "0.95.1" +version = "0.96.0" dependencies = [ "itertools 0.12.1", "nu-engine", @@ -3006,7 +3006,7 @@ dependencies = [ [[package]] name = "nu-cmd-plugin" -version = "0.95.1" +version = "0.96.0" dependencies = [ "itertools 0.12.1", "nu-engine", @@ -3017,7 +3017,7 @@ dependencies = [ [[package]] name = "nu-color-config" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-ansi-term", "nu-engine", @@ -3029,7 +3029,7 @@ dependencies = [ [[package]] name = "nu-command" -version = "0.95.1" +version = "0.96.0" dependencies = [ "alphanumeric-sort", "base64 0.22.1", @@ -3139,7 +3139,7 @@ dependencies = [ [[package]] name = "nu-derive-value" -version = "0.95.1" +version = "0.96.0" dependencies = [ "convert_case", "proc-macro-error", @@ -3150,7 +3150,7 @@ dependencies = [ [[package]] name = "nu-engine" -version = "0.95.1" +version = "0.96.0" dependencies = [ "log", "nu-glob", @@ -3161,7 +3161,7 @@ dependencies = [ [[package]] name = "nu-explore" -version = "0.95.1" +version = "0.96.0" dependencies = [ "ansi-str", "anyhow", @@ -3186,14 +3186,14 @@ dependencies = [ [[package]] name = "nu-glob" -version = "0.95.1" +version = "0.96.0" dependencies = [ "doc-comment", ] [[package]] name = "nu-json" -version = "0.95.1" +version = "0.96.0" dependencies = [ "fancy-regex", "linked-hash-map", @@ -3206,7 +3206,7 @@ dependencies = [ [[package]] name = "nu-lsp" -version = "0.95.1" +version = "0.96.0" dependencies = [ "assert-json-diff", "crossbeam-channel", @@ -3227,7 +3227,7 @@ dependencies = [ [[package]] name = "nu-parser" -version = "0.95.1" +version = "0.96.0" dependencies = [ "bytesize", "chrono", @@ -3243,7 +3243,7 @@ dependencies = [ [[package]] name = "nu-path" -version = "0.95.1" +version = "0.96.0" dependencies = [ "dirs", "omnipath", @@ -3252,7 +3252,7 @@ dependencies = [ [[package]] name = "nu-plugin" -version = "0.95.1" +version = "0.96.0" dependencies = [ "log", "nix", @@ -3268,7 +3268,7 @@ dependencies = [ [[package]] name = "nu-plugin-core" -version = "0.95.1" +version = "0.96.0" dependencies = [ "interprocess", "log", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "nu-plugin-engine" -version = "0.95.1" +version = "0.96.0" dependencies = [ "log", "nu-engine", @@ -3298,7 +3298,7 @@ dependencies = [ [[package]] name = "nu-plugin-protocol" -version = "0.95.1" +version = "0.96.0" dependencies = [ "bincode", "nu-protocol", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "nu-plugin-test-support" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-ansi-term", "nu-cmd-lang", @@ -3328,7 +3328,7 @@ dependencies = [ [[package]] name = "nu-pretty-hex" -version = "0.95.1" +version = "0.96.0" dependencies = [ "heapless", "nu-ansi-term", @@ -3337,7 +3337,7 @@ dependencies = [ [[package]] name = "nu-protocol" -version = "0.95.1" +version = "0.96.0" dependencies = [ "brotli", "byte-unit", @@ -3374,7 +3374,7 @@ dependencies = [ [[package]] name = "nu-std" -version = "0.95.1" +version = "0.96.0" dependencies = [ "log", "miette", @@ -3385,7 +3385,7 @@ dependencies = [ [[package]] name = "nu-system" -version = "0.95.1" +version = "0.96.0" dependencies = [ "chrono", "itertools 0.12.1", @@ -3403,7 +3403,7 @@ dependencies = [ [[package]] name = "nu-table" -version = "0.95.1" +version = "0.96.0" dependencies = [ "fancy-regex", "nu-ansi-term", @@ -3417,7 +3417,7 @@ dependencies = [ [[package]] name = "nu-term-grid" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-utils", "unicode-width", @@ -3425,7 +3425,7 @@ dependencies = [ [[package]] name = "nu-test-support" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-glob", "nu-path", @@ -3437,7 +3437,7 @@ dependencies = [ [[package]] name = "nu-utils" -version = "0.95.1" +version = "0.96.0" dependencies = [ "crossterm_winapi", "log", @@ -3463,7 +3463,7 @@ dependencies = [ [[package]] name = "nu_plugin_example" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-cmd-lang", "nu-plugin", @@ -3473,7 +3473,7 @@ dependencies = [ [[package]] name = "nu_plugin_formats" -version = "0.95.1" +version = "0.96.0" dependencies = [ "eml-parser", "ical", @@ -3486,7 +3486,7 @@ dependencies = [ [[package]] name = "nu_plugin_gstat" -version = "0.95.1" +version = "0.96.0" dependencies = [ "git2", "nu-plugin", @@ -3495,7 +3495,7 @@ dependencies = [ [[package]] name = "nu_plugin_inc" -version = "0.95.1" +version = "0.96.0" dependencies = [ "nu-plugin", "nu-protocol", @@ -3504,7 +3504,7 @@ dependencies = [ [[package]] name = "nu_plugin_polars" -version = "0.95.1" +version = "0.96.0" dependencies = [ "chrono", "chrono-tz 0.9.0", @@ -3538,7 +3538,7 @@ dependencies = [ [[package]] name = "nu_plugin_query" -version = "0.95.1" +version = "0.96.0" dependencies = [ "gjson", "nu-plugin", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "nu_plugin_stress_internals" -version = "0.95.1" +version = "0.96.0" dependencies = [ "interprocess", "serde", @@ -3679,7 +3679,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nuon" -version = "0.95.1" +version = "0.96.0" dependencies = [ "chrono", "fancy-regex", diff --git a/Cargo.toml b/Cargo.toml index 32274816f1..8397c2ca46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" name = "nu" repository = "https://github.com/nushell/nushell" rust-version = "1.77.2" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -183,22 +183,22 @@ windows-sys = "0.48" winreg = "0.52" [dependencies] -nu-cli = { path = "./crates/nu-cli", version = "0.95.1" } -nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.95.1" } -nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.95.1" } -nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.95.1", optional = true } -nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.95.1" } -nu-command = { path = "./crates/nu-command", version = "0.95.1" } -nu-engine = { path = "./crates/nu-engine", version = "0.95.1" } -nu-explore = { path = "./crates/nu-explore", version = "0.95.1" } -nu-lsp = { path = "./crates/nu-lsp/", version = "0.95.1" } -nu-parser = { path = "./crates/nu-parser", version = "0.95.1" } -nu-path = { path = "./crates/nu-path", version = "0.95.1" } -nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.95.1" } -nu-protocol = { path = "./crates/nu-protocol", version = "0.95.1" } -nu-std = { path = "./crates/nu-std", version = "0.95.1" } -nu-system = { path = "./crates/nu-system", version = "0.95.1" } -nu-utils = { path = "./crates/nu-utils", version = "0.95.1" } +nu-cli = { path = "./crates/nu-cli", version = "0.96.0" } +nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.96.0" } +nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.96.0" } +nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.96.0", optional = true } +nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.96.0" } +nu-command = { path = "./crates/nu-command", version = "0.96.0" } +nu-engine = { path = "./crates/nu-engine", version = "0.96.0" } +nu-explore = { path = "./crates/nu-explore", version = "0.96.0" } +nu-lsp = { path = "./crates/nu-lsp/", version = "0.96.0" } +nu-parser = { path = "./crates/nu-parser", version = "0.96.0" } +nu-path = { path = "./crates/nu-path", version = "0.96.0" } +nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.96.0" } +nu-protocol = { path = "./crates/nu-protocol", version = "0.96.0" } +nu-std = { path = "./crates/nu-std", version = "0.96.0" } +nu-system = { path = "./crates/nu-system", version = "0.96.0" } +nu-utils = { path = "./crates/nu-utils", version = "0.96.0" } reedline = { workspace = true, features = ["bashisms", "sqlite"] } crossterm = { workspace = true } @@ -227,9 +227,9 @@ nix = { workspace = true, default-features = false, features = [ ] } [dev-dependencies] -nu-test-support = { path = "./crates/nu-test-support", version = "0.95.1" } -nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.95.1" } -nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.95.1" } +nu-test-support = { path = "./crates/nu-test-support", version = "0.96.0" } +nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.96.0" } +nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.96.0" } assert_cmd = "2.0" dirs = { workspace = true } tango-bench = "0.5" @@ -313,4 +313,4 @@ bench = false # Run individual benchmarks like `cargo bench -- ` e.g. `cargo bench -- parse` [[bench]] name = "benchmarks" -harness = false +harness = false \ No newline at end of file diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 2ed504d502..6baafda789 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -5,27 +5,27 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli" edition = "2021" license = "MIT" name = "nu-cli" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } -nu-command = { path = "../nu-command", version = "0.95.1" } -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-command = { path = "../nu-command", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } rstest = { workspace = true, default-features = false } tempfile = { workspace = true } [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.95.1", optional = true } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } -nu-color-config = { path = "../nu-color-config", version = "0.95.1" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0", optional = true } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-color-config = { path = "../nu-color-config", version = "0.96.0" } nu-ansi-term = { workspace = true } reedline = { workspace = true, features = ["bashisms", "sqlite"] } diff --git a/crates/nu-cmd-base/Cargo.toml b/crates/nu-cmd-base/Cargo.toml index 2fe8610f49..031636adfc 100644 --- a/crates/nu-cmd-base/Cargo.toml +++ b/crates/nu-cmd-base/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" license = "MIT" name = "nu-cmd-base" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-base" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } indexmap = { workspace = true } miette = { workspace = true } diff --git a/crates/nu-cmd-extra/Cargo.toml b/crates/nu-cmd-extra/Cargo.toml index 8609adb44c..2b26a962de 100644 --- a/crates/nu-cmd-extra/Cargo.toml +++ b/crates/nu-cmd-extra/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-cmd-extra" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-extra" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,13 +13,13 @@ version = "0.95.1" bench = false [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-json = { version = "0.95.1", path = "../nu-json" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-pretty-hex = { version = "0.95.1", path = "../nu-pretty-hex" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-json = { version = "0.96.0", path = "../nu-json" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-pretty-hex = { version = "0.96.0", path = "../nu-pretty-hex" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } # Potential dependencies for extras heck = { workspace = true } @@ -33,6 +33,6 @@ v_htmlescape = { workspace = true } itertools = { workspace = true } [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } -nu-command = { path = "../nu-command", version = "0.95.1" } -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } \ No newline at end of file +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-command = { path = "../nu-command", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index 16ac1b893a..5a9d552cba 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -6,16 +6,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang" edition = "2021" license = "MIT" name = "nu-cmd-lang" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } itertools = { workspace = true } shadow-rs = { version = "0.29", default-features = false } diff --git a/crates/nu-cmd-plugin/Cargo.toml b/crates/nu-cmd-plugin/Cargo.toml index 7d26fe5ddd..a73d4eef89 100644 --- a/crates/nu-cmd-plugin/Cargo.toml +++ b/crates/nu-cmd-plugin/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" license = "MIT" name = "nu-cmd-plugin" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-plugin" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0" } itertools = { workspace = true } diff --git a/crates/nu-color-config/Cargo.toml b/crates/nu-color-config/Cargo.toml index 23af09432c..f3e977f3ab 100644 --- a/crates/nu-color-config/Cargo.toml +++ b/crates/nu-color-config/Cargo.toml @@ -5,18 +5,18 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-confi edition = "2021" license = "MIT" name = "nu-color-config" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-json = { path = "../nu-json", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-json = { path = "../nu-json", version = "0.96.0" } nu-ansi-term = { workspace = true } serde = { workspace = true, features = ["derive"] } [dev-dependencies] -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } \ No newline at end of file +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index ea501578b6..f3805dac5a 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-command" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,21 +13,21 @@ version = "0.95.1" bench = false [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.95.1" } -nu-color-config = { path = "../nu-color-config", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-glob = { path = "../nu-glob", version = "0.95.1" } -nu-json = { path = "../nu-json", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-system = { path = "../nu-system", version = "0.95.1" } -nu-table = { path = "../nu-table", version = "0.95.1" } -nu-term-grid = { path = "../nu-term-grid", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } +nu-color-config = { path = "../nu-color-config", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-glob = { path = "../nu-glob", version = "0.96.0" } +nu-json = { path = "../nu-json", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-system = { path = "../nu-system", version = "0.96.0" } +nu-table = { path = "../nu-table", version = "0.96.0" } +nu-term-grid = { path = "../nu-term-grid", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } nu-ansi-term = { workspace = true } -nuon = { path = "../nuon", version = "0.95.1" } +nuon = { path = "../nuon", version = "0.96.0" } alphanumeric-sort = { workspace = true } base64 = { workspace = true } @@ -137,8 +137,8 @@ sqlite = ["rusqlite"] trash-support = ["trash"] [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } dirs = { workspace = true } mockito = { workspace = true, default-features = false } @@ -146,4 +146,4 @@ quickcheck = { workspace = true } quickcheck_macros = { workspace = true } rstest = { workspace = true, default-features = false } pretty_assertions = { workspace = true } -tempfile = { workspace = true } +tempfile = { workspace = true } \ No newline at end of file diff --git a/crates/nu-derive-value/Cargo.toml b/crates/nu-derive-value/Cargo.toml index 50ca5d2407..3ce0f00ed5 100644 --- a/crates/nu-derive-value/Cargo.toml +++ b/crates/nu-derive-value/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-derive-value" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-derive-value" -version = "0.95.1" +version = "0.96.0" [lib] proc-macro = true diff --git a/crates/nu-engine/Cargo.toml b/crates/nu-engine/Cargo.toml index c416a2f590..89ff80cf80 100644 --- a/crates/nu-engine/Cargo.toml +++ b/crates/nu-engine/Cargo.toml @@ -5,17 +5,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine" edition = "2021" license = "MIT" name = "nu-engine" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-glob = { path = "../nu-glob", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-glob = { path = "../nu-glob", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } log = { workspace = true } [features] -plugin = [] +plugin = [] \ No newline at end of file diff --git a/crates/nu-explore/Cargo.toml b/crates/nu-explore/Cargo.toml index 6d0816ee3e..df728365a7 100644 --- a/crates/nu-explore/Cargo.toml +++ b/crates/nu-explore/Cargo.toml @@ -5,21 +5,21 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore" edition = "2021" license = "MIT" name = "nu-explore" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-color-config = { path = "../nu-color-config", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-table = { path = "../nu-table", version = "0.95.1" } -nu-json = { path = "../nu-json", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-color-config = { path = "../nu-color-config", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-table = { path = "../nu-table", version = "0.96.0" } +nu-json = { path = "../nu-json", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } nu-ansi-term = { workspace = true } -nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.95.1" } +nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.0" } anyhow = { workspace = true } log = { workspace = true } diff --git a/crates/nu-glob/Cargo.toml b/crates/nu-glob/Cargo.toml index 932958910c..242affbdcc 100644 --- a/crates/nu-glob/Cargo.toml +++ b/crates/nu-glob/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-glob" -version = "0.95.1" +version = "0.96.0" authors = ["The Nushell Project Developers", "The Rust Project Developers"] license = "MIT/Apache-2.0" description = """ diff --git a/crates/nu-json/Cargo.toml b/crates/nu-json/Cargo.toml index a3b61042b1..bd73655ae5 100644 --- a/crates/nu-json/Cargo.toml +++ b/crates/nu-json/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json" edition = "2021" license = "MIT" name = "nu-json" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -26,7 +26,7 @@ serde = { workspace = true } serde_json = { workspace = true } [dev-dependencies] -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } serde_json = "1.0" -fancy-regex = "0.13.0" +fancy-regex = "0.13.0" \ No newline at end of file diff --git a/crates/nu-lsp/Cargo.toml b/crates/nu-lsp/Cargo.toml index 0f9ef01e69..4ebe937960 100644 --- a/crates/nu-lsp/Cargo.toml +++ b/crates/nu-lsp/Cargo.toml @@ -3,14 +3,14 @@ authors = ["The Nushell Project Developers"] description = "Nushell's integrated LSP server" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-lsp" name = "nu-lsp" -version = "0.95.1" +version = "0.96.0" edition = "2021" license = "MIT" [dependencies] -nu-cli = { path = "../nu-cli", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } +nu-cli = { path = "../nu-cli", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } reedline = { workspace = true } @@ -23,8 +23,8 @@ serde = { workspace = true } serde_json = { workspace = true } [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } -nu-command = { path = "../nu-command", version = "0.95.1" } -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-command = { path = "../nu-command", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } assert-json-diff = "2.0" \ No newline at end of file diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index b06e81387d..d8f978620d 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -5,17 +5,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser" edition = "2021" license = "MIT" name = "nu-parser" -version = "0.95.1" +version = "0.96.0" exclude = ["/fuzz"] [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-plugin-engine = { path = "../nu-plugin-engine", optional = true, version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-plugin-engine = { path = "../nu-plugin-engine", optional = true, version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } bytesize = { workspace = true } chrono = { default-features = false, features = ['std'], workspace = true } diff --git a/crates/nu-path/Cargo.toml b/crates/nu-path/Cargo.toml index 62908e7cb7..7bddfd309f 100644 --- a/crates/nu-path/Cargo.toml +++ b/crates/nu-path/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path" edition = "2021" license = "MIT" name = "nu-path" -version = "0.95.1" +version = "0.96.0" exclude = ["/fuzz"] [lib] @@ -18,4 +18,4 @@ dirs = { workspace = true } omnipath = { workspace = true } [target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android")))'.dependencies] -pwd = { workspace = true } +pwd = { workspace = true } \ No newline at end of file diff --git a/crates/nu-plugin-core/Cargo.toml b/crates/nu-plugin-core/Cargo.toml index 48aee13276..3b9e8b63ca 100644 --- a/crates/nu-plugin-core/Cargo.toml +++ b/crates/nu-plugin-core/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-core edition = "2021" license = "MIT" name = "nu-plugin-core" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.95.1", default-features = false } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0", default-features = false } rmp-serde = { workspace = true } serde = { workspace = true } diff --git a/crates/nu-plugin-engine/Cargo.toml b/crates/nu-plugin-engine/Cargo.toml index a6dfa471b8..585e28de47 100644 --- a/crates/nu-plugin-engine/Cargo.toml +++ b/crates/nu-plugin-engine/Cargo.toml @@ -5,18 +5,18 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-engi edition = "2021" license = "MIT" name = "nu-plugin-engine" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-system = { path = "../nu-system", version = "0.95.1" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.95.1" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.95.1", default-features = false } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-system = { path = "../nu-system", version = "0.96.0" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0", default-features = false } +nu-utils = { path = "../nu-utils", version = "0.96.0" } serde = { workspace = true } log = { workspace = true } @@ -32,4 +32,4 @@ local-socket = ["nu-plugin-core/local-socket"] windows = { workspace = true, features = [ # For setting process creation flags "Win32_System_Threading", -] } +] } \ No newline at end of file diff --git a/crates/nu-plugin-protocol/Cargo.toml b/crates/nu-plugin-protocol/Cargo.toml index 939f164786..feb6c51b64 100644 --- a/crates/nu-plugin-protocol/Cargo.toml +++ b/crates/nu-plugin-protocol/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-prot edition = "2021" license = "MIT" name = "nu-plugin-protocol" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-utils = { path = "../nu-utils", version = "0.96.0" } bincode = "1.3" serde = { workspace = true, features = ["derive"] } diff --git a/crates/nu-plugin-test-support/Cargo.toml b/crates/nu-plugin-test-support/Cargo.toml index efc76c3b93..e12fc28823 100644 --- a/crates/nu-plugin-test-support/Cargo.toml +++ b/crates/nu-plugin-test-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-plugin-test-support" -version = "0.95.1" +version = "0.96.0" edition = "2021" license = "MIT" description = "Testing support for Nushell plugins" @@ -12,14 +12,14 @@ bench = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1", features = ["plugin"] } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } -nu-parser = { path = "../nu-parser", version = "0.95.1", features = ["plugin"] } -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.95.1" } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.95.1" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.95.1" } -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0", features = ["plugin"] } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-parser = { path = "../nu-parser", version = "0.96.0", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0" } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } nu-ansi-term = { workspace = true } similar = "2.5" diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index d46a3cc9cb..3b06f37fae 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -5,17 +5,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin" edition = "2021" license = "MIT" name = "nu-plugin" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.95.1" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.95.1", default-features = false } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0", default-features = false } +nu-utils = { path = "../nu-utils", version = "0.96.0" } log = { workspace = true } thiserror = "1.0" @@ -30,4 +30,4 @@ local-socket = ["nu-plugin-core/local-socket"] [target.'cfg(target_family = "unix")'.dependencies] # For setting the process group ID (EnterForeground / LeaveForeground) -nix = { workspace = true, default-features = false, features = ["process"] } +nix = { workspace = true, default-features = false, features = ["process"] } \ No newline at end of file diff --git a/crates/nu-pretty-hex/Cargo.toml b/crates/nu-pretty-hex/Cargo.toml index cd3c3502a4..e2f21d322b 100644 --- a/crates/nu-pretty-hex/Cargo.toml +++ b/crates/nu-pretty-hex/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-pretty-hex" edition = "2021" license = "MIT" name = "nu-pretty-hex" -version = "0.95.1" +version = "0.96.0" [lib] doctest = false diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index ea900bf08d..467c4a21f7 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-protocol" edition = "2021" license = "MIT" name = "nu-protocol" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,10 +13,10 @@ version = "0.95.1" bench = false [dependencies] -nu-utils = { path = "../nu-utils", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-system = { path = "../nu-system", version = "0.95.1" } -nu-derive-value = { path = "../nu-derive-value", version = "0.95.1" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-system = { path = "../nu-system", version = "0.96.0" } +nu-derive-value = { path = "../nu-derive-value", version = "0.96.0" } brotli = { workspace = true, optional = true } byte-unit = { version = "5.1", features = [ "serde" ] } @@ -53,11 +53,11 @@ plugin = [ serde_json = { workspace = true } strum = "0.26" strum_macros = "0.26" -nu-test-support = { path = "../nu-test-support", version = "0.95.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.0" } pretty_assertions = { workspace = true } rstest = { workspace = true } tempfile = { workspace = true } os_pipe = { workspace = true } [package.metadata.docs.rs] -all-features = true +all-features = true \ No newline at end of file diff --git a/crates/nu-std/Cargo.toml b/crates/nu-std/Cargo.toml index 9ee4113e96..408b1e0303 100644 --- a/crates/nu-std/Cargo.toml +++ b/crates/nu-std/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-std" edition = "2021" license = "MIT" name = "nu-std" -version = "0.95.1" +version = "0.96.0" [dependencies] -nu-parser = { version = "0.95.1", path = "../nu-parser" } -nu-protocol = { version = "0.95.1", path = "../nu-protocol" } -nu-engine = { version = "0.95.1", path = "../nu-engine" } +nu-parser = { version = "0.96.0", path = "../nu-parser" } +nu-protocol = { version = "0.96.0", path = "../nu-protocol" } +nu-engine = { version = "0.96.0", path = "../nu-engine" } miette = { workspace = true, features = ["fancy-no-backtrace"] } log = "0.4" \ No newline at end of file diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index 19ab1259fb..d4d6f77e9b 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -3,7 +3,7 @@ authors = ["The Nushell Project Developers", "procs creators"] description = "Nushell system querying" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system" name = "nu-system" -version = "0.95.1" +version = "0.96.0" edition = "2021" license = "MIT" diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index 9f00c4d1fd..982fd08369 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -5,20 +5,20 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table" edition = "2021" license = "MIT" name = "nu-table" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-color-config = { path = "../nu-color-config", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-color-config = { path = "../nu-color-config", version = "0.96.0" } nu-ansi-term = { workspace = true } once_cell = { workspace = true } fancy-regex = { workspace = true } tabled = { workspace = true, features = ["color"], default-features = false } [dev-dependencies] -# nu-test-support = { path="../nu-test-support", version = "0.95.1" } \ No newline at end of file +# nu-test-support = { path="../nu-test-support", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu-term-grid/Cargo.toml b/crates/nu-term-grid/Cargo.toml index 0229f1f0f0..0be10b4ef1 100644 --- a/crates/nu-term-grid/Cargo.toml +++ b/crates/nu-term-grid/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-term-grid" edition = "2021" license = "MIT" name = "nu-term-grid" -version = "0.95.1" +version = "0.96.0" [lib] bench = false [dependencies] -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } unicode-width = { workspace = true } \ No newline at end of file diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index 1b5f5df7ba..c41bf6b8a2 100644 --- a/crates/nu-test-support/Cargo.toml +++ b/crates/nu-test-support/Cargo.toml @@ -5,16 +5,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-suppor edition = "2021" license = "MIT" name = "nu-test-support" -version = "0.95.1" +version = "0.96.0" [lib] doctest = false bench = false [dependencies] -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-glob = { path = "../nu-glob", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-glob = { path = "../nu-glob", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } num-format = { workspace = true } which = { workspace = true } diff --git a/crates/nu-utils/Cargo.toml b/crates/nu-utils/Cargo.toml index 60b4cb21aa..aa9f591a2d 100644 --- a/crates/nu-utils/Cargo.toml +++ b/crates/nu-utils/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-utils" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index 3c3e57fa95..dda33cace0 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -1,6 +1,6 @@ # Nushell Config File # -# version = "0.95.1" +# version = "0.96.0" # For more information on defining custom themes, see # https://www.nushell.sh/book/coloring_and_theming.html @@ -889,4 +889,4 @@ $env.config = { event: { edit: selectall } } ] -} +} \ No newline at end of file diff --git a/crates/nu-utils/src/sample_config/default_env.nu b/crates/nu-utils/src/sample_config/default_env.nu index a686f6f99a..5d6cab2687 100644 --- a/crates/nu-utils/src/sample_config/default_env.nu +++ b/crates/nu-utils/src/sample_config/default_env.nu @@ -1,6 +1,6 @@ # Nushell Environment Config File # -# version = "0.95.1" +# version = "0.96.0" def create_left_prompt [] { let dir = match (do --ignore-shell-errors { $env.PWD | path relative-to $nu.home-path }) { diff --git a/crates/nu_plugin_custom_values/Cargo.toml b/crates/nu_plugin_custom_values/Cargo.toml index e5f8951429..c3f3a7cec1 100644 --- a/crates/nu_plugin_custom_values/Cargo.toml +++ b/crates/nu_plugin_custom_values/Cargo.toml @@ -10,10 +10,10 @@ name = "nu_plugin_custom_values" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } serde = { workspace = true, default-features = false } typetag = "0.2" [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.95.1" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu_plugin_example/Cargo.toml b/crates/nu_plugin_example/Cargo.toml index 08ba3e1566..9df31e46b6 100644 --- a/crates/nu_plugin_example/Cargo.toml +++ b/crates/nu_plugin_example/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_exam edition = "2021" license = "MIT" name = "nu_plugin_example" -version = "0.95.1" +version = "0.96.0" [[bin]] name = "nu_plugin_example" @@ -15,9 +15,9 @@ bench = false bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.95.1" } -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu_plugin_formats/Cargo.toml b/crates/nu_plugin_formats/Cargo.toml index 29e8953f24..535cd69c17 100644 --- a/crates/nu_plugin_formats/Cargo.toml +++ b/crates/nu_plugin_formats/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_form edition = "2021" license = "MIT" name = "nu_plugin_formats" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } indexmap = { workspace = true } eml-parser = "0.1" @@ -18,4 +18,4 @@ ical = "0.11" rust-ini = "0.21.0" [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.95.1" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } \ No newline at end of file diff --git a/crates/nu_plugin_gstat/Cargo.toml b/crates/nu_plugin_gstat/Cargo.toml index da1c13a88e..6a7d6411c8 100644 --- a/crates/nu_plugin_gstat/Cargo.toml +++ b/crates/nu_plugin_gstat/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gsta edition = "2021" license = "MIT" name = "nu_plugin_gstat" -version = "0.95.1" +version = "0.96.0" [lib] doctest = false @@ -16,7 +16,7 @@ name = "nu_plugin_gstat" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } git2 = "0.19" \ No newline at end of file diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index 0479a47843..4b3f63345b 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc" edition = "2021" license = "MIT" name = "nu_plugin_inc" -version = "0.95.1" +version = "0.96.0" [lib] doctest = false @@ -16,7 +16,7 @@ name = "nu_plugin_inc" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } semver = "1.0" \ No newline at end of file diff --git a/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu b/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu index d19cd36c14..75069e27e3 100755 --- a/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu +++ b/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu @@ -6,7 +6,7 @@ # it also allows us to test the plugin interface with something manually implemented in a scripting # language without adding any extra dependencies to our tests. -const NUSHELL_VERSION = "0.95.1" +const NUSHELL_VERSION = "0.96.0" const PLUGIN_VERSION = "0.1.0" # bump if you change commands! def main [--stdio] { diff --git a/crates/nu_plugin_polars/Cargo.toml b/crates/nu_plugin_polars/Cargo.toml index 99c88e47d6..40ce054ecd 100644 --- a/crates/nu_plugin_polars/Cargo.toml +++ b/crates/nu_plugin_polars/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu_plugin_polars" repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_polars" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,10 +17,10 @@ bench = false bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-path = { path = "../nu-path", version = "0.95.1" } -nu-utils = { path = "../nu-utils", version = "0.95.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.0" } # Potential dependencies for extras chrono = { workspace = true, features = ["std", "unstable-locales"], default-features = false } @@ -76,9 +76,9 @@ optional = false version = "0.41" [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-command = { path = "../nu-command", version = "0.95.1" } -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.95.1" } -tempfile.workspace = true +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-command = { path = "../nu-command", version = "0.96.0" } +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } +tempfile.workspace = true \ No newline at end of file diff --git a/crates/nu_plugin_python/nu_plugin_python_example.py b/crates/nu_plugin_python/nu_plugin_python_example.py index 993e619366..ad128704f6 100755 --- a/crates/nu_plugin_python/nu_plugin_python_example.py +++ b/crates/nu_plugin_python/nu_plugin_python_example.py @@ -27,7 +27,7 @@ import sys import json -NUSHELL_VERSION = "0.95.1" +NUSHELL_VERSION = "0.96.0" PLUGIN_VERSION = "0.1.0" # bump if you change commands! @@ -258,4 +258,4 @@ if __name__ == "__main__": if len(sys.argv) == 2 and sys.argv[1] == "--stdio": plugin() else: - print("Run me from inside nushell!") + print("Run me from inside nushell!") \ No newline at end of file diff --git a/crates/nu_plugin_query/Cargo.toml b/crates/nu_plugin_query/Cargo.toml index 551610e390..29e99b28f8 100644 --- a/crates/nu_plugin_query/Cargo.toml +++ b/crates/nu_plugin_query/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_quer edition = "2021" license = "MIT" name = "nu_plugin_query" -version = "0.95.1" +version = "0.96.0" [lib] doctest = false @@ -16,8 +16,8 @@ name = "nu_plugin_query" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } +nu-plugin = { path = "../nu-plugin", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } gjson = "0.8" scraper = { default-features = false, version = "0.19" } @@ -25,4 +25,4 @@ sxd-document = "0.3" sxd-xpath = "0.4" webpage = { version = "2.0.1", features = ["serde"] } serde_json.workspace = true -serde.workspace = true +serde.workspace = true \ No newline at end of file diff --git a/crates/nu_plugin_stress_internals/Cargo.toml b/crates/nu_plugin_stress_internals/Cargo.toml index 2a53eb6749..9be71d55ca 100644 --- a/crates/nu_plugin_stress_internals/Cargo.toml +++ b/crates/nu_plugin_stress_internals/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_stre edition = "2021" license = "MIT" name = "nu_plugin_stress_internals" -version = "0.95.1" +version = "0.96.0" [[bin]] name = "nu_plugin_stress_internals" diff --git a/crates/nuon/Cargo.toml b/crates/nuon/Cargo.toml index bbb2dfe73c..33dd5e6b7d 100644 --- a/crates/nuon/Cargo.toml +++ b/crates/nuon/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nuon" edition = "2021" license = "MIT" name = "nuon" -version = "0.95.1" +version = "0.96.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-parser = { path = "../nu-parser", version = "0.95.1" } -nu-protocol = { path = "../nu-protocol", version = "0.95.1" } -nu-engine = { path = "../nu-engine", version = "0.95.1" } +nu-parser = { path = "../nu-parser", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.0" } once_cell = { workspace = true } fancy-regex = { workspace = true } From 5c2439abc07c845a6c15ff74e2bef07e600c30d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:11:50 +0800 Subject: [PATCH 03/13] Bump softprops/action-gh-release from 2.0.6 to 2.0.8 (#13438) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.0.6 to 2.0.8.
Release notes

Sourced from softprops/action-gh-release's releases.

v2.0.8

What's Changed

Other Changes 🔄

Full Changelog: https://github.com/softprops/action-gh-release/compare/v2...v2.0.8

v2.0.7

What's Changed

Bug fixes 🐛

Other Changes 🔄

New Contributors

Full Changelog: https://github.com/softprops/action-gh-release/compare/v2.0.6...v2.0.7

Changelog

Sourced from softprops/action-gh-release's changelog.

2.0.8

Other Changes 🔄

2.0.7

Bug fixes 🐛

Other Changes 🔄

Commits
  • c062e08 release 2.0.8
  • 380635c chore(deps): bump @​actions/github from 5.1.1 to 6.0.0 (#470)
  • 20adb42 refactor: write jest config in ts (#485)
  • f808f15 chore(deps): bump glob from 10.4.2 to 11.0.0 (#477)
  • 6145241 chore(deps): bump @​octokit/plugin-throttling from 9.3.0 to 9.3.1 (#484)
  • 4ac522d chore(deps): bump @​types/node from 20.14.9 to 20.14.11 (#483)
  • 25849b1 chore(deps): bump prettier from 2.8.0 to 3.3.3 (#480)
  • 6206056 chore: update dependabot commit msg
  • 39aadf1 chore: run frizbee actions .github/workflows/
  • 6f3ab65 chore: update dist file
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | softprops/action-gh-release | [< 0.2, > 0.1.13] |
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=softprops/action-gh-release&package-manager=github_actions&previous-version=2.0.6&new-version=2.0.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/nightly-build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 9b7f44feba..c581e4a274 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -161,7 +161,7 @@ jobs: # REF: https://github.com/marketplace/actions/gh-release # Create a release only in nushell/nightly repo - name: Publish Archive - uses: softprops/action-gh-release@v2.0.6 + uses: softprops/action-gh-release@v2.0.8 if: ${{ startsWith(github.repository, 'nushell/nightly') }} with: prerelease: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34cad24fbf..53f22cec66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,7 +91,7 @@ jobs: # REF: https://github.com/marketplace/actions/gh-release - name: Publish Archive - uses: softprops/action-gh-release@v2.0.6 + uses: softprops/action-gh-release@v2.0.8 if: ${{ startsWith(github.ref, 'refs/tags/') }} with: draft: true From a88c3f48e281ce50dd2a0518ff8e899314e427b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:12:17 +0800 Subject: [PATCH 04/13] Bump crate-ci/typos from 1.23.2 to 1.23.3 (#13437) Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.23.2 to 1.23.3.
Release notes

Sourced from crate-ci/typos's releases.

v1.23.3

[1.23.3] - 2024-07-22

Fixes

  • Fix Dockerfile
Changelog

Sourced from crate-ci/typos's changelog.

[1.23.3] - 2024-07-22

Fixes

  • Fix Dockerfile
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crate-ci/typos&package-manager=github_actions&previous-version=1.23.2&new-version=1.23.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/typos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index c7c153983d..2484787cb5 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -10,4 +10,4 @@ jobs: uses: actions/checkout@v4.1.7 - name: Check spelling - uses: crate-ci/typos@v1.23.2 + uses: crate-ci/typos@v1.23.3 From 9f90d611e167d020d9e3b7767916cfda0e869317 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Thu, 25 Jul 2024 03:28:18 -0700 Subject: [PATCH 05/13] Bump version to `0.96.1` (#13439) (Post-release bump.) --- Cargo.lock | 74 +++++++++---------- Cargo.toml | 40 +++++----- crates/nu-cli/Cargo.toml | 24 +++--- crates/nu-cmd-base/Cargo.toml | 10 +-- crates/nu-cmd-extra/Cargo.toml | 22 +++--- crates/nu-cmd-lang/Cargo.toml | 10 +-- crates/nu-cmd-plugin/Cargo.toml | 10 +-- crates/nu-color-config/Cargo.toml | 10 +-- crates/nu-command/Cargo.toml | 34 ++++----- crates/nu-derive-value/Cargo.toml | 2 +- crates/nu-engine/Cargo.toml | 10 +-- crates/nu-explore/Cargo.toml | 18 ++--- crates/nu-glob/Cargo.toml | 2 +- crates/nu-json/Cargo.toml | 6 +- crates/nu-lsp/Cargo.toml | 14 ++-- crates/nu-parser/Cargo.toml | 10 +-- crates/nu-path/Cargo.toml | 2 +- crates/nu-plugin-core/Cargo.toml | 6 +- crates/nu-plugin-engine/Cargo.toml | 14 ++-- crates/nu-plugin-protocol/Cargo.toml | 6 +- crates/nu-plugin-test-support/Cargo.toml | 18 ++--- crates/nu-plugin/Cargo.toml | 12 +-- crates/nu-pretty-hex/Cargo.toml | 2 +- crates/nu-protocol/Cargo.toml | 12 +-- crates/nu-std/Cargo.toml | 8 +- crates/nu-system/Cargo.toml | 2 +- crates/nu-table/Cargo.toml | 12 +-- crates/nu-term-grid/Cargo.toml | 4 +- crates/nu-test-support/Cargo.toml | 8 +- crates/nu-utils/Cargo.toml | 2 +- .../src/sample_config/default_config.nu | 2 +- .../nu-utils/src/sample_config/default_env.nu | 2 +- crates/nu_plugin_custom_values/Cargo.toml | 6 +- crates/nu_plugin_example/Cargo.toml | 10 +-- crates/nu_plugin_formats/Cargo.toml | 8 +- crates/nu_plugin_gstat/Cargo.toml | 6 +- crates/nu_plugin_inc/Cargo.toml | 6 +- .../nu_plugin_nu_example.nu | 2 +- crates/nu_plugin_polars/Cargo.toml | 20 ++--- .../nu_plugin_python_example.py | 2 +- crates/nu_plugin_query/Cargo.toml | 6 +- crates/nu_plugin_stress_internals/Cargo.toml | 2 +- crates/nuon/Cargo.toml | 8 +- 43 files changed, 242 insertions(+), 242 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6390b32ee3..5a8de1b4ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2868,7 +2868,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.96.0" +version = "0.96.1" dependencies = [ "assert_cmd", "crossterm", @@ -2922,7 +2922,7 @@ dependencies = [ [[package]] name = "nu-cli" -version = "0.96.0" +version = "0.96.1" dependencies = [ "chrono", "crossterm", @@ -2957,7 +2957,7 @@ dependencies = [ [[package]] name = "nu-cmd-base" -version = "0.96.0" +version = "0.96.1" dependencies = [ "indexmap", "miette", @@ -2969,7 +2969,7 @@ dependencies = [ [[package]] name = "nu-cmd-extra" -version = "0.96.0" +version = "0.96.1" dependencies = [ "fancy-regex", "heck 0.5.0", @@ -2994,7 +2994,7 @@ dependencies = [ [[package]] name = "nu-cmd-lang" -version = "0.96.0" +version = "0.96.1" dependencies = [ "itertools 0.12.1", "nu-engine", @@ -3006,7 +3006,7 @@ dependencies = [ [[package]] name = "nu-cmd-plugin" -version = "0.96.0" +version = "0.96.1" dependencies = [ "itertools 0.12.1", "nu-engine", @@ -3017,7 +3017,7 @@ dependencies = [ [[package]] name = "nu-color-config" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-ansi-term", "nu-engine", @@ -3029,7 +3029,7 @@ dependencies = [ [[package]] name = "nu-command" -version = "0.96.0" +version = "0.96.1" dependencies = [ "alphanumeric-sort", "base64 0.22.1", @@ -3139,7 +3139,7 @@ dependencies = [ [[package]] name = "nu-derive-value" -version = "0.96.0" +version = "0.96.1" dependencies = [ "convert_case", "proc-macro-error", @@ -3150,7 +3150,7 @@ dependencies = [ [[package]] name = "nu-engine" -version = "0.96.0" +version = "0.96.1" dependencies = [ "log", "nu-glob", @@ -3161,7 +3161,7 @@ dependencies = [ [[package]] name = "nu-explore" -version = "0.96.0" +version = "0.96.1" dependencies = [ "ansi-str", "anyhow", @@ -3186,14 +3186,14 @@ dependencies = [ [[package]] name = "nu-glob" -version = "0.96.0" +version = "0.96.1" dependencies = [ "doc-comment", ] [[package]] name = "nu-json" -version = "0.96.0" +version = "0.96.1" dependencies = [ "fancy-regex", "linked-hash-map", @@ -3206,7 +3206,7 @@ dependencies = [ [[package]] name = "nu-lsp" -version = "0.96.0" +version = "0.96.1" dependencies = [ "assert-json-diff", "crossbeam-channel", @@ -3227,7 +3227,7 @@ dependencies = [ [[package]] name = "nu-parser" -version = "0.96.0" +version = "0.96.1" dependencies = [ "bytesize", "chrono", @@ -3243,7 +3243,7 @@ dependencies = [ [[package]] name = "nu-path" -version = "0.96.0" +version = "0.96.1" dependencies = [ "dirs", "omnipath", @@ -3252,7 +3252,7 @@ dependencies = [ [[package]] name = "nu-plugin" -version = "0.96.0" +version = "0.96.1" dependencies = [ "log", "nix", @@ -3268,7 +3268,7 @@ dependencies = [ [[package]] name = "nu-plugin-core" -version = "0.96.0" +version = "0.96.1" dependencies = [ "interprocess", "log", @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "nu-plugin-engine" -version = "0.96.0" +version = "0.96.1" dependencies = [ "log", "nu-engine", @@ -3298,7 +3298,7 @@ dependencies = [ [[package]] name = "nu-plugin-protocol" -version = "0.96.0" +version = "0.96.1" dependencies = [ "bincode", "nu-protocol", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "nu-plugin-test-support" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-ansi-term", "nu-cmd-lang", @@ -3328,7 +3328,7 @@ dependencies = [ [[package]] name = "nu-pretty-hex" -version = "0.96.0" +version = "0.96.1" dependencies = [ "heapless", "nu-ansi-term", @@ -3337,7 +3337,7 @@ dependencies = [ [[package]] name = "nu-protocol" -version = "0.96.0" +version = "0.96.1" dependencies = [ "brotli", "byte-unit", @@ -3374,7 +3374,7 @@ dependencies = [ [[package]] name = "nu-std" -version = "0.96.0" +version = "0.96.1" dependencies = [ "log", "miette", @@ -3385,7 +3385,7 @@ dependencies = [ [[package]] name = "nu-system" -version = "0.96.0" +version = "0.96.1" dependencies = [ "chrono", "itertools 0.12.1", @@ -3403,7 +3403,7 @@ dependencies = [ [[package]] name = "nu-table" -version = "0.96.0" +version = "0.96.1" dependencies = [ "fancy-regex", "nu-ansi-term", @@ -3417,7 +3417,7 @@ dependencies = [ [[package]] name = "nu-term-grid" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-utils", "unicode-width", @@ -3425,7 +3425,7 @@ dependencies = [ [[package]] name = "nu-test-support" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-glob", "nu-path", @@ -3437,7 +3437,7 @@ dependencies = [ [[package]] name = "nu-utils" -version = "0.96.0" +version = "0.96.1" dependencies = [ "crossterm_winapi", "log", @@ -3463,7 +3463,7 @@ dependencies = [ [[package]] name = "nu_plugin_example" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-cmd-lang", "nu-plugin", @@ -3473,7 +3473,7 @@ dependencies = [ [[package]] name = "nu_plugin_formats" -version = "0.96.0" +version = "0.96.1" dependencies = [ "eml-parser", "ical", @@ -3486,7 +3486,7 @@ dependencies = [ [[package]] name = "nu_plugin_gstat" -version = "0.96.0" +version = "0.96.1" dependencies = [ "git2", "nu-plugin", @@ -3495,7 +3495,7 @@ dependencies = [ [[package]] name = "nu_plugin_inc" -version = "0.96.0" +version = "0.96.1" dependencies = [ "nu-plugin", "nu-protocol", @@ -3504,7 +3504,7 @@ dependencies = [ [[package]] name = "nu_plugin_polars" -version = "0.96.0" +version = "0.96.1" dependencies = [ "chrono", "chrono-tz 0.9.0", @@ -3538,7 +3538,7 @@ dependencies = [ [[package]] name = "nu_plugin_query" -version = "0.96.0" +version = "0.96.1" dependencies = [ "gjson", "nu-plugin", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "nu_plugin_stress_internals" -version = "0.96.0" +version = "0.96.1" dependencies = [ "interprocess", "serde", @@ -3679,7 +3679,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nuon" -version = "0.96.0" +version = "0.96.1" dependencies = [ "chrono", "fancy-regex", diff --git a/Cargo.toml b/Cargo.toml index 8397c2ca46..3d8e3a9385 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" name = "nu" repository = "https://github.com/nushell/nushell" rust-version = "1.77.2" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -183,22 +183,22 @@ windows-sys = "0.48" winreg = "0.52" [dependencies] -nu-cli = { path = "./crates/nu-cli", version = "0.96.0" } -nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.96.0" } -nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.96.0" } -nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.96.0", optional = true } -nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.96.0" } -nu-command = { path = "./crates/nu-command", version = "0.96.0" } -nu-engine = { path = "./crates/nu-engine", version = "0.96.0" } -nu-explore = { path = "./crates/nu-explore", version = "0.96.0" } -nu-lsp = { path = "./crates/nu-lsp/", version = "0.96.0" } -nu-parser = { path = "./crates/nu-parser", version = "0.96.0" } -nu-path = { path = "./crates/nu-path", version = "0.96.0" } -nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.96.0" } -nu-protocol = { path = "./crates/nu-protocol", version = "0.96.0" } -nu-std = { path = "./crates/nu-std", version = "0.96.0" } -nu-system = { path = "./crates/nu-system", version = "0.96.0" } -nu-utils = { path = "./crates/nu-utils", version = "0.96.0" } +nu-cli = { path = "./crates/nu-cli", version = "0.96.1" } +nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.96.1" } +nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.96.1" } +nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.96.1", optional = true } +nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.96.1" } +nu-command = { path = "./crates/nu-command", version = "0.96.1" } +nu-engine = { path = "./crates/nu-engine", version = "0.96.1" } +nu-explore = { path = "./crates/nu-explore", version = "0.96.1" } +nu-lsp = { path = "./crates/nu-lsp/", version = "0.96.1" } +nu-parser = { path = "./crates/nu-parser", version = "0.96.1" } +nu-path = { path = "./crates/nu-path", version = "0.96.1" } +nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.96.1" } +nu-protocol = { path = "./crates/nu-protocol", version = "0.96.1" } +nu-std = { path = "./crates/nu-std", version = "0.96.1" } +nu-system = { path = "./crates/nu-system", version = "0.96.1" } +nu-utils = { path = "./crates/nu-utils", version = "0.96.1" } reedline = { workspace = true, features = ["bashisms", "sqlite"] } crossterm = { workspace = true } @@ -227,9 +227,9 @@ nix = { workspace = true, default-features = false, features = [ ] } [dev-dependencies] -nu-test-support = { path = "./crates/nu-test-support", version = "0.96.0" } -nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.96.0" } -nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.96.0" } +nu-test-support = { path = "./crates/nu-test-support", version = "0.96.1" } +nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.96.1" } +nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.96.1" } assert_cmd = "2.0" dirs = { workspace = true } tango-bench = "0.5" diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 6baafda789..1be1470daf 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -5,27 +5,27 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli" edition = "2021" license = "MIT" name = "nu-cli" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } -nu-command = { path = "../nu-command", version = "0.96.0" } -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } +nu-command = { path = "../nu-command", version = "0.96.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } rstest = { workspace = true, default-features = false } tempfile = { workspace = true } [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0", optional = true } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } -nu-color-config = { path = "../nu-color-config", version = "0.96.0" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.1", optional = true } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } +nu-color-config = { path = "../nu-color-config", version = "0.96.1" } nu-ansi-term = { workspace = true } reedline = { workspace = true, features = ["bashisms", "sqlite"] } diff --git a/crates/nu-cmd-base/Cargo.toml b/crates/nu-cmd-base/Cargo.toml index 031636adfc..0fdb51eca8 100644 --- a/crates/nu-cmd-base/Cargo.toml +++ b/crates/nu-cmd-base/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" license = "MIT" name = "nu-cmd-base" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-base" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } indexmap = { workspace = true } miette = { workspace = true } diff --git a/crates/nu-cmd-extra/Cargo.toml b/crates/nu-cmd-extra/Cargo.toml index 2b26a962de..f9cc539c92 100644 --- a/crates/nu-cmd-extra/Cargo.toml +++ b/crates/nu-cmd-extra/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-cmd-extra" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-extra" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,13 +13,13 @@ version = "0.96.0" bench = false [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-json = { version = "0.96.0", path = "../nu-json" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-pretty-hex = { version = "0.96.0", path = "../nu-pretty-hex" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-json = { version = "0.96.1", path = "../nu-json" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-pretty-hex = { version = "0.96.1", path = "../nu-pretty-hex" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } # Potential dependencies for extras heck = { workspace = true } @@ -33,6 +33,6 @@ v_htmlescape = { workspace = true } itertools = { workspace = true } [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } -nu-command = { path = "../nu-command", version = "0.96.0" } -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } \ No newline at end of file +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } +nu-command = { path = "../nu-command", version = "0.96.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index 5a9d552cba..7a92894f54 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -6,16 +6,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang" edition = "2021" license = "MIT" name = "nu-cmd-lang" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } itertools = { workspace = true } shadow-rs = { version = "0.29", default-features = false } diff --git a/crates/nu-cmd-plugin/Cargo.toml b/crates/nu-cmd-plugin/Cargo.toml index a73d4eef89..7a2c28e69f 100644 --- a/crates/nu-cmd-plugin/Cargo.toml +++ b/crates/nu-cmd-plugin/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" license = "MIT" name = "nu-cmd-plugin" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-plugin" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.1" } itertools = { workspace = true } diff --git a/crates/nu-color-config/Cargo.toml b/crates/nu-color-config/Cargo.toml index f3e977f3ab..7dd1edf899 100644 --- a/crates/nu-color-config/Cargo.toml +++ b/crates/nu-color-config/Cargo.toml @@ -5,18 +5,18 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-confi edition = "2021" license = "MIT" name = "nu-color-config" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-json = { path = "../nu-json", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-json = { path = "../nu-json", version = "0.96.1" } nu-ansi-term = { workspace = true } serde = { workspace = true, features = ["derive"] } [dev-dependencies] -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } \ No newline at end of file +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index f3805dac5a..61ae01d69b 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-command" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,21 +13,21 @@ version = "0.96.0" bench = false [dependencies] -nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.0" } -nu-color-config = { path = "../nu-color-config", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-glob = { path = "../nu-glob", version = "0.96.0" } -nu-json = { path = "../nu-json", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-system = { path = "../nu-system", version = "0.96.0" } -nu-table = { path = "../nu-table", version = "0.96.0" } -nu-term-grid = { path = "../nu-term-grid", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-cmd-base = { path = "../nu-cmd-base", version = "0.96.1" } +nu-color-config = { path = "../nu-color-config", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-glob = { path = "../nu-glob", version = "0.96.1" } +nu-json = { path = "../nu-json", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-system = { path = "../nu-system", version = "0.96.1" } +nu-table = { path = "../nu-table", version = "0.96.1" } +nu-term-grid = { path = "../nu-term-grid", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } nu-ansi-term = { workspace = true } -nuon = { path = "../nuon", version = "0.96.0" } +nuon = { path = "../nuon", version = "0.96.1" } alphanumeric-sort = { workspace = true } base64 = { workspace = true } @@ -137,8 +137,8 @@ sqlite = ["rusqlite"] trash-support = ["trash"] [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } dirs = { workspace = true } mockito = { workspace = true, default-features = false } diff --git a/crates/nu-derive-value/Cargo.toml b/crates/nu-derive-value/Cargo.toml index 3ce0f00ed5..b4d9fe341f 100644 --- a/crates/nu-derive-value/Cargo.toml +++ b/crates/nu-derive-value/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-derive-value" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-derive-value" -version = "0.96.0" +version = "0.96.1" [lib] proc-macro = true diff --git a/crates/nu-engine/Cargo.toml b/crates/nu-engine/Cargo.toml index 89ff80cf80..44b049f38a 100644 --- a/crates/nu-engine/Cargo.toml +++ b/crates/nu-engine/Cargo.toml @@ -5,16 +5,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine" edition = "2021" license = "MIT" name = "nu-engine" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-glob = { path = "../nu-glob", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-glob = { path = "../nu-glob", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } log = { workspace = true } [features] diff --git a/crates/nu-explore/Cargo.toml b/crates/nu-explore/Cargo.toml index df728365a7..26087b98ec 100644 --- a/crates/nu-explore/Cargo.toml +++ b/crates/nu-explore/Cargo.toml @@ -5,21 +5,21 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore" edition = "2021" license = "MIT" name = "nu-explore" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-color-config = { path = "../nu-color-config", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-table = { path = "../nu-table", version = "0.96.0" } -nu-json = { path = "../nu-json", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-color-config = { path = "../nu-color-config", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-table = { path = "../nu-table", version = "0.96.1" } +nu-json = { path = "../nu-json", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } nu-ansi-term = { workspace = true } -nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.0" } +nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.96.1" } anyhow = { workspace = true } log = { workspace = true } diff --git a/crates/nu-glob/Cargo.toml b/crates/nu-glob/Cargo.toml index 242affbdcc..acfaf2fbb3 100644 --- a/crates/nu-glob/Cargo.toml +++ b/crates/nu-glob/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-glob" -version = "0.96.0" +version = "0.96.1" authors = ["The Nushell Project Developers", "The Rust Project Developers"] license = "MIT/Apache-2.0" description = """ diff --git a/crates/nu-json/Cargo.toml b/crates/nu-json/Cargo.toml index bd73655ae5..d4d64a26e3 100644 --- a/crates/nu-json/Cargo.toml +++ b/crates/nu-json/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json" edition = "2021" license = "MIT" name = "nu-json" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -26,7 +26,7 @@ serde = { workspace = true } serde_json = { workspace = true } [dev-dependencies] -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } serde_json = "1.0" fancy-regex = "0.13.0" \ No newline at end of file diff --git a/crates/nu-lsp/Cargo.toml b/crates/nu-lsp/Cargo.toml index 4ebe937960..fc2b1d76fa 100644 --- a/crates/nu-lsp/Cargo.toml +++ b/crates/nu-lsp/Cargo.toml @@ -3,14 +3,14 @@ authors = ["The Nushell Project Developers"] description = "Nushell's integrated LSP server" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-lsp" name = "nu-lsp" -version = "0.96.0" +version = "0.96.1" edition = "2021" license = "MIT" [dependencies] -nu-cli = { path = "../nu-cli", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-cli = { path = "../nu-cli", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } reedline = { workspace = true } @@ -23,8 +23,8 @@ serde = { workspace = true } serde_json = { workspace = true } [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } -nu-command = { path = "../nu-command", version = "0.96.0" } -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } +nu-command = { path = "../nu-command", version = "0.96.1" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } assert-json-diff = "2.0" \ No newline at end of file diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index d8f978620d..da8f63d42b 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -5,17 +5,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser" edition = "2021" license = "MIT" name = "nu-parser" -version = "0.96.0" +version = "0.96.1" exclude = ["/fuzz"] [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-plugin-engine = { path = "../nu-plugin-engine", optional = true, version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-plugin-engine = { path = "../nu-plugin-engine", optional = true, version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } bytesize = { workspace = true } chrono = { default-features = false, features = ['std'], workspace = true } diff --git a/crates/nu-path/Cargo.toml b/crates/nu-path/Cargo.toml index 7bddfd309f..ff49140bd2 100644 --- a/crates/nu-path/Cargo.toml +++ b/crates/nu-path/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path" edition = "2021" license = "MIT" name = "nu-path" -version = "0.96.0" +version = "0.96.1" exclude = ["/fuzz"] [lib] diff --git a/crates/nu-plugin-core/Cargo.toml b/crates/nu-plugin-core/Cargo.toml index 3b9e8b63ca..21119a442c 100644 --- a/crates/nu-plugin-core/Cargo.toml +++ b/crates/nu-plugin-core/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-core edition = "2021" license = "MIT" name = "nu-plugin-core" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0", default-features = false } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.1", default-features = false } rmp-serde = { workspace = true } serde = { workspace = true } diff --git a/crates/nu-plugin-engine/Cargo.toml b/crates/nu-plugin-engine/Cargo.toml index 585e28de47..189b9b0713 100644 --- a/crates/nu-plugin-engine/Cargo.toml +++ b/crates/nu-plugin-engine/Cargo.toml @@ -5,18 +5,18 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-engi edition = "2021" license = "MIT" name = "nu-plugin-engine" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-system = { path = "../nu-system", version = "0.96.0" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0", default-features = false } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-system = { path = "../nu-system", version = "0.96.1" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.1" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.1", default-features = false } +nu-utils = { path = "../nu-utils", version = "0.96.1" } serde = { workspace = true } log = { workspace = true } diff --git a/crates/nu-plugin-protocol/Cargo.toml b/crates/nu-plugin-protocol/Cargo.toml index feb6c51b64..68b859f213 100644 --- a/crates/nu-plugin-protocol/Cargo.toml +++ b/crates/nu-plugin-protocol/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-prot edition = "2021" license = "MIT" name = "nu-plugin-protocol" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } +nu-utils = { path = "../nu-utils", version = "0.96.1" } bincode = "1.3" serde = { workspace = true, features = ["derive"] } diff --git a/crates/nu-plugin-test-support/Cargo.toml b/crates/nu-plugin-test-support/Cargo.toml index e12fc28823..f33d997939 100644 --- a/crates/nu-plugin-test-support/Cargo.toml +++ b/crates/nu-plugin-test-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-plugin-test-support" -version = "0.96.0" +version = "0.96.1" edition = "2021" license = "MIT" description = "Testing support for Nushell plugins" @@ -12,14 +12,14 @@ bench = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0", features = ["plugin"] } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } -nu-parser = { path = "../nu-parser", version = "0.96.0", features = ["plugin"] } -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0" } -nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.0" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1", features = ["plugin"] } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } +nu-parser = { path = "../nu-parser", version = "0.96.1", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.1" } +nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.96.1" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.1" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } nu-ansi-term = { workspace = true } similar = "2.5" diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index 3b06f37fae..b7fff9bf72 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -5,17 +5,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin" edition = "2021" license = "MIT" name = "nu-plugin" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.0" } -nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.0", default-features = false } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-plugin-protocol = { path = "../nu-plugin-protocol", version = "0.96.1" } +nu-plugin-core = { path = "../nu-plugin-core", version = "0.96.1", default-features = false } +nu-utils = { path = "../nu-utils", version = "0.96.1" } log = { workspace = true } thiserror = "1.0" diff --git a/crates/nu-pretty-hex/Cargo.toml b/crates/nu-pretty-hex/Cargo.toml index e2f21d322b..7db01ca2cc 100644 --- a/crates/nu-pretty-hex/Cargo.toml +++ b/crates/nu-pretty-hex/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-pretty-hex" edition = "2021" license = "MIT" name = "nu-pretty-hex" -version = "0.96.0" +version = "0.96.1" [lib] doctest = false diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index 467c4a21f7..ff8ef86c9e 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-protocol" edition = "2021" license = "MIT" name = "nu-protocol" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,10 +13,10 @@ version = "0.96.0" bench = false [dependencies] -nu-utils = { path = "../nu-utils", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-system = { path = "../nu-system", version = "0.96.0" } -nu-derive-value = { path = "../nu-derive-value", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-system = { path = "../nu-system", version = "0.96.1" } +nu-derive-value = { path = "../nu-derive-value", version = "0.96.1" } brotli = { workspace = true, optional = true } byte-unit = { version = "5.1", features = [ "serde" ] } @@ -53,7 +53,7 @@ plugin = [ serde_json = { workspace = true } strum = "0.26" strum_macros = "0.26" -nu-test-support = { path = "../nu-test-support", version = "0.96.0" } +nu-test-support = { path = "../nu-test-support", version = "0.96.1" } pretty_assertions = { workspace = true } rstest = { workspace = true } tempfile = { workspace = true } diff --git a/crates/nu-std/Cargo.toml b/crates/nu-std/Cargo.toml index 408b1e0303..d52ab617c1 100644 --- a/crates/nu-std/Cargo.toml +++ b/crates/nu-std/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-std" edition = "2021" license = "MIT" name = "nu-std" -version = "0.96.0" +version = "0.96.1" [dependencies] -nu-parser = { version = "0.96.0", path = "../nu-parser" } -nu-protocol = { version = "0.96.0", path = "../nu-protocol" } -nu-engine = { version = "0.96.0", path = "../nu-engine" } +nu-parser = { version = "0.96.1", path = "../nu-parser" } +nu-protocol = { version = "0.96.1", path = "../nu-protocol" } +nu-engine = { version = "0.96.1", path = "../nu-engine" } miette = { workspace = true, features = ["fancy-no-backtrace"] } log = "0.4" \ No newline at end of file diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index d4d6f77e9b..1e1efba651 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -3,7 +3,7 @@ authors = ["The Nushell Project Developers", "procs creators"] description = "Nushell system querying" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system" name = "nu-system" -version = "0.96.0" +version = "0.96.1" edition = "2021" license = "MIT" diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index 982fd08369..1f02ccb1c3 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -5,20 +5,20 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table" edition = "2021" license = "MIT" name = "nu-table" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-color-config = { path = "../nu-color-config", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-color-config = { path = "../nu-color-config", version = "0.96.1" } nu-ansi-term = { workspace = true } once_cell = { workspace = true } fancy-regex = { workspace = true } tabled = { workspace = true, features = ["color"], default-features = false } [dev-dependencies] -# nu-test-support = { path="../nu-test-support", version = "0.96.0" } \ No newline at end of file +# nu-test-support = { path="../nu-test-support", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu-term-grid/Cargo.toml b/crates/nu-term-grid/Cargo.toml index 0be10b4ef1..348adb03af 100644 --- a/crates/nu-term-grid/Cargo.toml +++ b/crates/nu-term-grid/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-term-grid" edition = "2021" license = "MIT" name = "nu-term-grid" -version = "0.96.0" +version = "0.96.1" [lib] bench = false [dependencies] -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } unicode-width = { workspace = true } \ No newline at end of file diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index c41bf6b8a2..4a43d6b933 100644 --- a/crates/nu-test-support/Cargo.toml +++ b/crates/nu-test-support/Cargo.toml @@ -5,16 +5,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-suppor edition = "2021" license = "MIT" name = "nu-test-support" -version = "0.96.0" +version = "0.96.1" [lib] doctest = false bench = false [dependencies] -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-glob = { path = "../nu-glob", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-glob = { path = "../nu-glob", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } num-format = { workspace = true } which = { workspace = true } diff --git a/crates/nu-utils/Cargo.toml b/crates/nu-utils/Cargo.toml index aa9f591a2d..4c1caddbbd 100644 --- a/crates/nu-utils/Cargo.toml +++ b/crates/nu-utils/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu-utils" repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index dda33cace0..779c2e900c 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -1,6 +1,6 @@ # Nushell Config File # -# version = "0.96.0" +# version = "0.96.1" # For more information on defining custom themes, see # https://www.nushell.sh/book/coloring_and_theming.html diff --git a/crates/nu-utils/src/sample_config/default_env.nu b/crates/nu-utils/src/sample_config/default_env.nu index 5d6cab2687..5d5cc46190 100644 --- a/crates/nu-utils/src/sample_config/default_env.nu +++ b/crates/nu-utils/src/sample_config/default_env.nu @@ -1,6 +1,6 @@ # Nushell Environment Config File # -# version = "0.96.0" +# version = "0.96.1" def create_left_prompt [] { let dir = match (do --ignore-shell-errors { $env.PWD | path relative-to $nu.home-path }) { diff --git a/crates/nu_plugin_custom_values/Cargo.toml b/crates/nu_plugin_custom_values/Cargo.toml index c3f3a7cec1..9643bf337e 100644 --- a/crates/nu_plugin_custom_values/Cargo.toml +++ b/crates/nu_plugin_custom_values/Cargo.toml @@ -10,10 +10,10 @@ name = "nu_plugin_custom_values" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } serde = { workspace = true, default-features = false } typetag = "0.2" [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu_plugin_example/Cargo.toml b/crates/nu_plugin_example/Cargo.toml index 9df31e46b6..8b24911026 100644 --- a/crates/nu_plugin_example/Cargo.toml +++ b/crates/nu_plugin_example/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_exam edition = "2021" license = "MIT" name = "nu_plugin_example" -version = "0.96.0" +version = "0.96.1" [[bin]] name = "nu_plugin_example" @@ -15,9 +15,9 @@ bench = false bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.1" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu_plugin_formats/Cargo.toml b/crates/nu_plugin_formats/Cargo.toml index 535cd69c17..ac65f05080 100644 --- a/crates/nu_plugin_formats/Cargo.toml +++ b/crates/nu_plugin_formats/Cargo.toml @@ -5,12 +5,12 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_form edition = "2021" license = "MIT" name = "nu_plugin_formats" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } indexmap = { workspace = true } eml-parser = "0.1" @@ -18,4 +18,4 @@ ical = "0.11" rust-ini = "0.21.0" [dev-dependencies] -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } \ No newline at end of file +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.1" } \ No newline at end of file diff --git a/crates/nu_plugin_gstat/Cargo.toml b/crates/nu_plugin_gstat/Cargo.toml index 6a7d6411c8..9bc09fc6c0 100644 --- a/crates/nu_plugin_gstat/Cargo.toml +++ b/crates/nu_plugin_gstat/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gsta edition = "2021" license = "MIT" name = "nu_plugin_gstat" -version = "0.96.0" +version = "0.96.1" [lib] doctest = false @@ -16,7 +16,7 @@ name = "nu_plugin_gstat" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } git2 = "0.19" \ No newline at end of file diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index 4b3f63345b..e82168463c 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc" edition = "2021" license = "MIT" name = "nu_plugin_inc" -version = "0.96.0" +version = "0.96.1" [lib] doctest = false @@ -16,7 +16,7 @@ name = "nu_plugin_inc" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0", features = ["plugin"] } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1", features = ["plugin"] } semver = "1.0" \ No newline at end of file diff --git a/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu b/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu index 75069e27e3..e7c4f77365 100755 --- a/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu +++ b/crates/nu_plugin_nu_example/nu_plugin_nu_example.nu @@ -6,7 +6,7 @@ # it also allows us to test the plugin interface with something manually implemented in a scripting # language without adding any extra dependencies to our tests. -const NUSHELL_VERSION = "0.96.0" +const NUSHELL_VERSION = "0.96.1" const PLUGIN_VERSION = "0.1.0" # bump if you change commands! def main [--stdio] { diff --git a/crates/nu_plugin_polars/Cargo.toml b/crates/nu_plugin_polars/Cargo.toml index 40ce054ecd..ad1181f2fe 100644 --- a/crates/nu_plugin_polars/Cargo.toml +++ b/crates/nu_plugin_polars/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT" name = "nu_plugin_polars" repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_polars" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,10 +17,10 @@ bench = false bench = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-path = { path = "../nu-path", version = "0.96.0" } -nu-utils = { path = "../nu-utils", version = "0.96.0" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-path = { path = "../nu-path", version = "0.96.1" } +nu-utils = { path = "../nu-utils", version = "0.96.1" } # Potential dependencies for extras chrono = { workspace = true, features = ["std", "unstable-locales"], default-features = false } @@ -76,9 +76,9 @@ optional = false version = "0.41" [dev-dependencies] -nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-command = { path = "../nu-command", version = "0.96.0" } -nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.0" } +nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-command = { path = "../nu-command", version = "0.96.1" } +nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.96.1" } tempfile.workspace = true \ No newline at end of file diff --git a/crates/nu_plugin_python/nu_plugin_python_example.py b/crates/nu_plugin_python/nu_plugin_python_example.py index ad128704f6..c0c530219f 100755 --- a/crates/nu_plugin_python/nu_plugin_python_example.py +++ b/crates/nu_plugin_python/nu_plugin_python_example.py @@ -27,7 +27,7 @@ import sys import json -NUSHELL_VERSION = "0.96.0" +NUSHELL_VERSION = "0.96.1" PLUGIN_VERSION = "0.1.0" # bump if you change commands! diff --git a/crates/nu_plugin_query/Cargo.toml b/crates/nu_plugin_query/Cargo.toml index 29e99b28f8..bb7e0f6bec 100644 --- a/crates/nu_plugin_query/Cargo.toml +++ b/crates/nu_plugin_query/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_quer edition = "2021" license = "MIT" name = "nu_plugin_query" -version = "0.96.0" +version = "0.96.1" [lib] doctest = false @@ -16,8 +16,8 @@ name = "nu_plugin_query" bench = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } +nu-plugin = { path = "../nu-plugin", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } gjson = "0.8" scraper = { default-features = false, version = "0.19" } diff --git a/crates/nu_plugin_stress_internals/Cargo.toml b/crates/nu_plugin_stress_internals/Cargo.toml index 9be71d55ca..872623f4ba 100644 --- a/crates/nu_plugin_stress_internals/Cargo.toml +++ b/crates/nu_plugin_stress_internals/Cargo.toml @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_stre edition = "2021" license = "MIT" name = "nu_plugin_stress_internals" -version = "0.96.0" +version = "0.96.1" [[bin]] name = "nu_plugin_stress_internals" diff --git a/crates/nuon/Cargo.toml b/crates/nuon/Cargo.toml index 33dd5e6b7d..b1ec4a2a69 100644 --- a/crates/nuon/Cargo.toml +++ b/crates/nuon/Cargo.toml @@ -5,14 +5,14 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nuon" edition = "2021" license = "MIT" name = "nuon" -version = "0.96.0" +version = "0.96.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-parser = { path = "../nu-parser", version = "0.96.0" } -nu-protocol = { path = "../nu-protocol", version = "0.96.0" } -nu-engine = { path = "../nu-engine", version = "0.96.0" } +nu-parser = { path = "../nu-parser", version = "0.96.1" } +nu-protocol = { path = "../nu-protocol", version = "0.96.1" } +nu-engine = { path = "../nu-engine", version = "0.96.1" } once_cell = { workspace = true } fancy-regex = { workspace = true } From 6446f26283e574898d90da4a91f77cc0ea210de9 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Thu, 25 Jul 2024 03:28:44 -0700 Subject: [PATCH 06/13] Fix `$in` in range expressions (#13447) # Description Fixes #13441. I must have forgotten that `Expr::Range` can contain other expressions, so I wasn't searching for `$in` to replace within it. Easy fix. # User-Facing Changes Bug fix, ranges like `6 | 3..$in` work as expected now. # Tests + Formatting Added regression test. --- crates/nu-protocol/src/ast/expression.rs | 12 +++++++++++- tests/repl/test_engine.rs | 10 ++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/crates/nu-protocol/src/ast/expression.rs b/crates/nu-protocol/src/ast/expression.rs index 4818aa2db2..faf47d42ec 100644 --- a/crates/nu-protocol/src/ast/expression.rs +++ b/crates/nu-protocol/src/ast/expression.rs @@ -432,7 +432,17 @@ impl Expression { Expr::Int(_) => {} Expr::Float(_) => {} Expr::Binary(_) => {} - Expr::Range(_) => {} + Expr::Range(range) => { + if let Some(from) = &mut range.from { + from.replace_in_variable(working_set, new_var_id); + } + if let Some(next) = &mut range.next { + next.replace_in_variable(working_set, new_var_id); + } + if let Some(to) = &mut range.to { + to.replace_in_variable(working_set, new_var_id); + } + } Expr::Var(var_id) | Expr::VarDecl(var_id) => { if *var_id == IN_VARIABLE_ID { *var_id = new_var_id; diff --git a/tests/repl/test_engine.rs b/tests/repl/test_engine.rs index 1b74e741f7..90dd1e86b0 100644 --- a/tests/repl/test_engine.rs +++ b/tests/repl/test_engine.rs @@ -75,6 +75,16 @@ fn in_used_twice_and_also_in_pipeline() -> TestResult { ) } +// #13441 +#[test] +fn in_used_in_range_from() -> TestResult { + run_test(r#"6 | $in..10 | math sum"#, "40") +} +#[test] +fn in_used_in_range_to() -> TestResult { + run_test(r#"6 | 3..$in | math sum"#, "18") +} + #[test] fn help_works_with_missing_requirements() -> TestResult { run_test(r#"each --help | lines | length"#, "72") From 4a7d4401b86e77170a71325089746c8f3d65c81f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:35:19 +0000 Subject: [PATCH 07/13] Bump openssl from 0.10.64 to 0.10.66 (#13426) --- Cargo.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a8de1b4ac..bf665fc8b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3787,9 +3787,9 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.64" +version = "0.10.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" dependencies = [ "bitflags 2.5.0", "cfg-if", @@ -3828,9 +3828,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.102" +version = "0.9.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", From e2d0514bb57ae0b071631d880acbcb695858f67c Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 25 Jul 2024 08:50:59 -0500 Subject: [PATCH 08/13] update release-pkg.nu with working url for less license (#13451) # Description When running a wix/msi build, I ran into a problem where the less license would not download. The fix for that is in this PR along with some further comments. # User-Facing Changes # Tests + Formatting # After Submitting --- .github/workflows/release-pkg.nu | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-pkg.nu b/.github/workflows/release-pkg.nu index da2779f6d1..562f42b4a4 100755 --- a/.github/workflows/release-pkg.nu +++ b/.github/workflows/release-pkg.nu @@ -161,8 +161,12 @@ if $os in ['macos-latest'] or $USE_UBUNTU { let releaseStem = $'($bin)-($version)-($target)' print $'(char nl)Download less related stuffs...'; hr-line + # todo: less-v661 is out but is released as a zip file. maybe we should switch to that and extract it? aria2c https://github.com/jftuga/less-Windows/releases/download/less-v608/less.exe -o less.exe - aria2c https://raw.githubusercontent.com/jftuga/less-Windows/master/LICENSE -o LICENSE-for-less.txt + # the below was renamed because it was failing to download for darren. it should work but it wasn't + # todo: maybe we should get rid of this aria2c dependency and just use http get? + #aria2c https://raw.githubusercontent.com/jftuga/less-Windows/master/LICENSE -o LICENSE-for-less.txt + aria2c https://github.com/jftuga/less-Windows/blob/master/LICENSE -o LICENSE-for-less.txt # Create Windows msi release package if (get-env _EXTRA_) == 'msi' { From e68f744dda0a13c496a5de0a52716709a630a402 Mon Sep 17 00:00:00 2001 From: NotTheDr01ds <32344964+NotTheDr01ds@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:01:46 -0400 Subject: [PATCH 09/13] Update query-web example to use new chunks (#13429) # Description A `query web` example uses the (soon to be deprecated) `group` command. Updated it to use `chunks` replacement. --- crates/nu_plugin_query/src/query_web.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu_plugin_query/src/query_web.rs b/crates/nu_plugin_query/src/query_web.rs index 39f50e51af..2d8b9e4aac 100644 --- a/crates/nu_plugin_query/src/query_web.rs +++ b/crates/nu_plugin_query/src/query_web.rs @@ -81,7 +81,7 @@ pub fn web_examples() -> Vec> { result: None }, Example { - example: "http get https://www.nushell.sh | query web --query 'h2, h2 + p' | each {str join} | group 2 | each {rotate --ccw tagline description} | flatten", + example: "http get https://www.nushell.sh | query web --query 'h2, h2 + p' | each {str join} | chunks 2 | each {rotate --ccw tagline description} | flatten", description: "Pass multiple css selectors to extract several elements within single query, group the query results together and rotate them to create a table", result: None, }, From 53fbf624934916a9527737305d410794d1472a48 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Fri, 26 Jul 2024 01:03:05 -0700 Subject: [PATCH 10/13] Fix `keybindings list` being empty by default (#13456) # Description Made a mistake when fixing this for IR. The default behavior with no options set is to list everything. Restored that. This should go in the 0.96.1 patch release. # Tests + Formatting Added regression test. --- crates/nu-cli/src/commands/keybindings_list.rs | 4 +++- crates/nu-cli/tests/commands/keybindings_list.rs | 7 +++++++ crates/nu-cli/tests/commands/mod.rs | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 crates/nu-cli/tests/commands/keybindings_list.rs diff --git a/crates/nu-cli/src/commands/keybindings_list.rs b/crates/nu-cli/src/commands/keybindings_list.rs index 350df7b820..abb5909a97 100644 --- a/crates/nu-cli/src/commands/keybindings_list.rs +++ b/crates/nu-cli/src/commands/keybindings_list.rs @@ -61,10 +61,12 @@ impl Command for KeybindingsList { .map(|option| call.has_flag(engine_state, stack, option)) .collect::, ShellError>>()?; + let no_option_specified = presence.iter().all(|present| !*present); + let records = all_options .iter() .zip(presence) - .filter(|(_, present)| *present) + .filter(|(_, present)| no_option_specified || *present) .flat_map(|(option, _)| get_records(option, call.head)) .collect(); diff --git a/crates/nu-cli/tests/commands/keybindings_list.rs b/crates/nu-cli/tests/commands/keybindings_list.rs new file mode 100644 index 0000000000..4ab9f3bacf --- /dev/null +++ b/crates/nu-cli/tests/commands/keybindings_list.rs @@ -0,0 +1,7 @@ +use nu_test_support::nu; + +#[test] +fn not_empty() { + let result = nu!("keybindings list | is-not-empty"); + assert_eq!(result.out, "true"); +} diff --git a/crates/nu-cli/tests/commands/mod.rs b/crates/nu-cli/tests/commands/mod.rs index 00488f0b9e..087791302e 100644 --- a/crates/nu-cli/tests/commands/mod.rs +++ b/crates/nu-cli/tests/commands/mod.rs @@ -1 +1,2 @@ +mod keybindings_list; mod nu_highlight; From 5f7afafe51727b08996b27d1b9eb68e82bc019b4 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Sat, 27 Jul 2024 19:38:57 -0700 Subject: [PATCH 11/13] IR: fix incorrect capturing of subexpressions (#13467) # Description [Discovered](https://discord.com/channels/601130461678272522/614593951969574961/1266503282554179604) by `@warp` on Discord. The IR compiler was not properly setting redirect modes for subexpressions because `FullCellPath` was always being compiled with capture-out redirection. This is the correct behavior if there is a tail to the `FullCellPath`, as we need the value in order to try to extract anything from it (although this is unlikely to work) - however, the parser also generates `FullCellPath`s with an empty tail quite often, including for bare subexpressions. Because of this, the following did not behave as expected: ```nushell (docker run -it --rm alpine) ``` Capturing the output meant that `docker` didn't have direct access to the terminal as a TTY. As this is a minor bug fix, it should be okay to include in the 0.96.1 patch release. # User-Facing Changes - Fixes the bug as described when running with IR evaluation enabled. # Tests + Formatting I added a test for this, though we're not currently running all tests with IR on the CI, but it should ensure this behaviour is consistent. The equivalent minimum repro I could find was: ```nushell (nu --testbin cococo); null ``` as this should cause the `cococo` message to appear on stdout, and if Nushell is capturing the output, it would be discarded instead. --- crates/nu-engine/src/compile/expression.rs | 10 +++++++++- tests/shell/pipeline/commands/external.rs | 6 ++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/crates/nu-engine/src/compile/expression.rs b/crates/nu-engine/src/compile/expression.rs index 948eb5c238..80fc4fb3fb 100644 --- a/crates/nu-engine/src/compile/expression.rs +++ b/crates/nu-engine/src/compile/expression.rs @@ -444,7 +444,15 @@ pub(crate) fn compile_expression( working_set, builder, &full_cell_path.head, - RedirectModes::capture_out(expr.span), + // Only capture the output if there is a tail. This was a bit of a headscratcher + // as the parser emits a FullCellPath with no tail for subexpressions in + // general, which shouldn't be captured any differently than they otherwise + // would be. + if !full_cell_path.tail.is_empty() { + RedirectModes::capture_out(expr.span) + } else { + redirect_modes + }, in_reg, out_reg, )?; diff --git a/tests/shell/pipeline/commands/external.rs b/tests/shell/pipeline/commands/external.rs index a6efe2b6c9..ff851a3293 100644 --- a/tests/shell/pipeline/commands/external.rs +++ b/tests/shell/pipeline/commands/external.rs @@ -209,6 +209,12 @@ fn run_glob_if_pass_variable_to_external() { }) } +#[test] +fn subexpression_does_not_implicitly_capture() { + let actual = nu!("(nu --testbin cococo); null"); + assert_eq!(actual.out, "cococo"); +} + mod it_evaluation { use super::nu; use nu_test_support::fs::Stub::{EmptyFile, FileWithContent, FileWithContentToBeTrimmed}; From d80de68665f9c779e17a113bbe2be271c94bc92b Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Sat, 27 Jul 2024 19:39:17 -0700 Subject: [PATCH 12/13] Clean up arguments added to stack after `CallDecl` engine call (#13469) # Description Just realized I hadn't been cleaning up the arguments added to the `Stack` after the `CallDecl` engine call was finished, so there could be a bit of a memory leak if a plugin made many calls during the duration of a single plugin call. This is a quick patch to that. I'm probably going to revise how this all works at some point soon because I think it is a bit of a pitfall. It would be good to make it much more difficult to make a mistake with it, perhaps with a guard like Ian did for the redirection stuff. # After Submitting - [ ] release with 0.96.1 --- crates/nu-plugin-engine/src/context.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/crates/nu-plugin-engine/src/context.rs b/crates/nu-plugin-engine/src/context.rs index d9023cde35..160ce802b2 100644 --- a/crates/nu-plugin-engine/src/context.rs +++ b/crates/nu-plugin-engine/src/context.rs @@ -257,12 +257,9 @@ impl<'a> PluginExecutionContext for PluginExecutionCommandContext<'a> { } } - decl.run( - &self.engine_state, - stack, - &(&call_builder.finish()).into(), - input, - ) + call_builder.with(stack, |stack, call| { + decl.run(&self.engine_state, stack, call, input) + }) } fn boxed(&self) -> Box { From d618fd0527c589ca66ea4c8af813e2bbca32ee88 Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Sat, 27 Jul 2024 19:39:29 -0700 Subject: [PATCH 13/13] Fix bad method links in docstrings (#13471) # Description Seems like I developed a bit of a bad habit of trying to link ```rust /// [`.foo()`] ``` in docstrings, and this just doesn't work automatically; you have to do ```rust /// [`.foo()`](Self::foo) ``` if you want it to actually link. I think I found and replaced all of these. # User-Facing Changes Just docs. --- crates/nu-engine/src/compile/builder.rs | 2 +- crates/nu-plugin-core/src/communication_mode/mod.rs | 4 ++-- crates/nu-plugin-core/src/interface/mod.rs | 2 +- crates/nu-plugin-core/src/interface/stream/mod.rs | 10 +++++----- crates/nu-plugin-core/src/util/waitable.rs | 2 +- crates/nu-plugin-engine/src/gc.rs | 4 ++-- crates/nu-plugin-engine/src/source.rs | 2 +- crates/nu-plugin-protocol/src/evaluated_call.rs | 6 +++--- crates/nu-plugin/src/plugin/command.rs | 10 +++++----- crates/nu-plugin/src/plugin/interface/mod.rs | 13 +++++++------ crates/nu-protocol/src/engine/engine_state.rs | 6 +++--- crates/nu-protocol/src/engine/stack.rs | 2 +- crates/nu-protocol/src/errors/labeled_error.rs | 3 ++- crates/nu-protocol/src/pipeline/pipeline_data.rs | 3 ++- crates/nu-system/src/foreground.rs | 8 ++++---- 15 files changed, 40 insertions(+), 37 deletions(-) diff --git a/crates/nu-engine/src/compile/builder.rs b/crates/nu-engine/src/compile/builder.rs index 4294b2bd61..2a443b7bde 100644 --- a/crates/nu-engine/src/compile/builder.rs +++ b/crates/nu-engine/src/compile/builder.rs @@ -423,7 +423,7 @@ impl BlockBuilder { self.push(Instruction::Jump { index: label_id.0 }.into_spanned(span)) } - /// The index that the next instruction [`.push()`]ed will have. + /// The index that the next instruction [`.push()`](Self::push)ed will have. pub(crate) fn here(&self) -> usize { self.instructions.len() } diff --git a/crates/nu-plugin-core/src/communication_mode/mod.rs b/crates/nu-plugin-core/src/communication_mode/mod.rs index 1eb72d6ac8..576cfe866c 100644 --- a/crates/nu-plugin-core/src/communication_mode/mod.rs +++ b/crates/nu-plugin-core/src/communication_mode/mod.rs @@ -122,11 +122,11 @@ impl CommunicationMode { /// The result of [`CommunicationMode::serve()`], which acts as an intermediate stage for /// communication modes that require some kind of socket binding to occur before the client process -/// can be started. Call [`.connect()`] once the client process has been started. +/// can be started. Call [`.connect()`](Self::connect) once the client process has been started. /// /// The socket may be cleaned up on `Drop` if applicable. pub enum PreparedServerCommunication { - /// Will take stdin and stdout from the process on [`.connect()`]. + /// Will take stdin and stdout from the process on [`.connect()`](Self::connect). Stdio, /// Contains the listener to accept connections on. On Unix, the socket is unlinked on `Drop`. #[cfg(feature = "local-socket")] diff --git a/crates/nu-plugin-core/src/interface/mod.rs b/crates/nu-plugin-core/src/interface/mod.rs index 89aa2b15e5..d282eddd8b 100644 --- a/crates/nu-plugin-core/src/interface/mod.rs +++ b/crates/nu-plugin-core/src/interface/mod.rs @@ -145,7 +145,7 @@ pub trait InterfaceManager { /// Consume an input message. /// - /// When implementing, call [`.consume_stream_message()`] for any encapsulated + /// When implementing, call [`.consume_stream_message()`](Self::consume_stream_message) for any encapsulated /// [`StreamMessage`]s received. fn consume(&mut self, input: Self::Input) -> Result<(), ShellError>; diff --git a/crates/nu-plugin-core/src/interface/stream/mod.rs b/crates/nu-plugin-core/src/interface/stream/mod.rs index 541e1176a0..cfe44fabb4 100644 --- a/crates/nu-plugin-core/src/interface/stream/mod.rs +++ b/crates/nu-plugin-core/src/interface/stream/mod.rs @@ -189,14 +189,14 @@ where } /// Check if the stream was dropped from the other end. Recommended to do this before calling - /// [`.write()`], especially in a loop. + /// [`.write()`](Self::write), especially in a loop. pub fn is_dropped(&self) -> Result { self.signal.is_dropped() } /// Write a single piece of data to the stream. /// - /// Error if something failed with the write, or if [`.end()`] was already called + /// Error if something failed with the write, or if [`.end()`](Self::end) was already called /// previously. pub fn write(&mut self, data: impl Into) -> Result<(), ShellError> { if !self.ended { @@ -228,7 +228,7 @@ where } /// Write a full iterator to the stream. Note that this doesn't end the stream, so you should - /// still call [`.end()`]. + /// still call [`.end()`](Self::end). /// /// If the stream is dropped from the other end, the iterator will not be fully consumed, and /// writing will terminate. @@ -341,8 +341,8 @@ impl StreamWriterSignal { } /// Track that a message has been sent. Returns `Ok(true)` if more messages can be sent, - /// or `Ok(false)` if the high pressure mark has been reached and [`.wait_for_drain()`] should - /// be called to block. + /// or `Ok(false)` if the high pressure mark has been reached and + /// [`.wait_for_drain()`](Self::wait_for_drain) should be called to block. pub fn notify_sent(&self) -> Result { let mut state = self.lock()?; state.unacknowledged = diff --git a/crates/nu-plugin-core/src/util/waitable.rs b/crates/nu-plugin-core/src/util/waitable.rs index aaefa6f1b5..0f4cb30de3 100644 --- a/crates/nu-plugin-core/src/util/waitable.rs +++ b/crates/nu-plugin-core/src/util/waitable.rs @@ -45,7 +45,7 @@ fn fail_if_poisoned<'a, T>( } impl WaitableMut { - /// Create a new empty `WaitableMut`. Call [`.reader()`] to get [`Waitable`]. + /// Create a new empty `WaitableMut`. Call [`.reader()`](Self::reader) to get [`Waitable`]. pub fn new() -> WaitableMut { WaitableMut { shared: Arc::new(WaitableShared { diff --git a/crates/nu-plugin-engine/src/gc.rs b/crates/nu-plugin-engine/src/gc.rs index bd9c8de06f..555c57e47d 100644 --- a/crates/nu-plugin-engine/src/gc.rs +++ b/crates/nu-plugin-engine/src/gc.rs @@ -80,8 +80,8 @@ impl PluginGc { /// /// The reason the plugin tells the GC rather than just stopping itself via `source` is that /// it can't guarantee that the plugin currently pointed to by `source` is itself, but if the - /// GC is still running, it hasn't received [`.stop_tracking()`] yet, which means it should be - /// the right plugin. + /// GC is still running, it hasn't received [`.stop_tracking()`](Self::stop_tracking) yet, which + /// means it should be the right plugin. pub fn exited(&self) { let _ = self.sender.send(PluginGcMsg::Exited); } diff --git a/crates/nu-plugin-engine/src/source.rs b/crates/nu-plugin-engine/src/source.rs index 9b388576c5..56043eccf5 100644 --- a/crates/nu-plugin-engine/src/source.rs +++ b/crates/nu-plugin-engine/src/source.rs @@ -26,7 +26,7 @@ impl PluginSource { /// Create a new fake source with a fake identity, for testing /// - /// Warning: [`.persistent()`] will always return an error. + /// Warning: [`.persistent()`](Self::persistent) will always return an error. pub fn new_fake(name: &str) -> PluginSource { PluginSource { identity: PluginIdentity::new_fake(name).into(), diff --git a/crates/nu-plugin-protocol/src/evaluated_call.rs b/crates/nu-plugin-protocol/src/evaluated_call.rs index 5e760693a5..c5cbcc5ba0 100644 --- a/crates/nu-plugin-protocol/src/evaluated_call.rs +++ b/crates/nu-plugin-protocol/src/evaluated_call.rs @@ -85,19 +85,19 @@ impl EvaluatedCall { self } - /// Builder variant of [`.add_positional()`]. + /// Builder variant of [`.add_positional()`](Self::add_positional). pub fn with_positional(mut self, value: Value) -> Self { self.add_positional(value); self } - /// Builder variant of [`.add_named()`]. + /// Builder variant of [`.add_named()`](Self::add_named). pub fn with_named(mut self, name: Spanned>, value: Value) -> Self { self.add_named(name, value); self } - /// Builder variant of [`.add_flag()`]. + /// Builder variant of [`.add_flag()`](Self::add_flag). pub fn with_flag(mut self, name: Spanned>) -> Self { self.add_flag(name); self diff --git a/crates/nu-plugin/src/plugin/command.rs b/crates/nu-plugin/src/plugin/command.rs index a90555ac40..8e8adc9578 100644 --- a/crates/nu-plugin/src/plugin/command.rs +++ b/crates/nu-plugin/src/plugin/command.rs @@ -75,8 +75,8 @@ use crate::{EngineInterface, EvaluatedCall, Plugin}; pub trait PluginCommand: Sync { /// The type of plugin this command runs on. /// - /// Since [`.run()`] takes a reference to the plugin, it is necessary to define the type of - /// plugin that the command expects here. + /// Since [`.run()`](Self::run) takes a reference to the plugin, it is necessary to define the + /// type of plugin that the command expects here. type Plugin: Plugin; /// The name of the command from within Nu. @@ -96,9 +96,9 @@ pub trait PluginCommand: Sync { /// Additional documentation for usage of the command. /// - /// This is optional - any arguments documented by [`.signature()`] will be shown in the help - /// page automatically. However, this can be useful for explaining things that would be too - /// brief to include in [`.usage()`] and may span multiple lines. + /// This is optional - any arguments documented by [`.signature()`](Self::signature) will be + /// shown in the help page automatically. However, this can be useful for explaining things that + /// would be too brief to include in [`.usage()`](Self::usage) and may span multiple lines. fn extra_usage(&self) -> &str { "" } diff --git a/crates/nu-plugin/src/plugin/interface/mod.rs b/crates/nu-plugin/src/plugin/interface/mod.rs index c20e2adc39..10f787b222 100644 --- a/crates/nu-plugin/src/plugin/interface/mod.rs +++ b/crates/nu-plugin/src/plugin/interface/mod.rs @@ -618,8 +618,9 @@ impl EngineInterface { /// Get all environment variables from the engine. /// - /// Since this is quite a large map that has to be sent, prefer to use [`.get_env_var()`] if - /// the variables needed are known ahead of time and there are only a small number needed. + /// Since this is quite a large map that has to be sent, prefer to use + /// [`.get_env_var()`] (Self::get_env_var) if the variables needed are known ahead of time + /// and there are only a small number needed. /// /// # Example /// ```rust,no_run @@ -873,9 +874,9 @@ impl EngineInterface { } /// Ask the engine for the identifier for a declaration. If found, the result can then be passed - /// to [`.call_decl()`] to call other internal commands. + /// to [`.call_decl()`](Self::call_decl) to call other internal commands. /// - /// See [`.call_decl()`] for an example. + /// See [`.call_decl()`](Self::call_decl) for an example. pub fn find_decl(&self, name: impl Into) -> Result, ShellError> { let call = EngineCall::FindDecl(name.into()); @@ -890,7 +891,7 @@ impl EngineInterface { } /// Ask the engine to call an internal command, using the declaration ID previously looked up - /// with [`.find_decl()`]. + /// with [`.find_decl()`](Self::find_decl). /// /// # Example /// @@ -1008,7 +1009,7 @@ impl Interface for EngineInterface { /// Keeps the plugin in the foreground as long as it is alive. /// -/// Use [`.leave()`] to leave the foreground without ignoring the error. +/// Use [`.leave()`](Self::leave) to leave the foreground without ignoring the error. pub struct ForegroundGuard(Option); impl ForegroundGuard { diff --git a/crates/nu-protocol/src/engine/engine_state.rs b/crates/nu-protocol/src/engine/engine_state.rs index fce24cebbd..8579295c32 100644 --- a/crates/nu-protocol/src/engine/engine_state.rs +++ b/crates/nu-protocol/src/engine/engine_state.rs @@ -832,9 +832,9 @@ impl EngineState { /// Optionally get a block by id, if it exists /// - /// Prefer to use [`.get_block()`] in most cases - `BlockId`s that don't exist are normally a - /// compiler error. This only exists to stop plugins from crashing the engine if they send us - /// something invalid. + /// Prefer to use [`.get_block()`](Self::get_block) in most cases - `BlockId`s that don't exist + /// are normally a compiler error. This only exists to stop plugins from crashing the engine if + /// they send us something invalid. pub fn try_get_block(&self, block_id: BlockId) -> Option<&Arc> { self.blocks.get(block_id) } diff --git a/crates/nu-protocol/src/engine/stack.rs b/crates/nu-protocol/src/engine/stack.rs index fbfb586762..7ba8268985 100644 --- a/crates/nu-protocol/src/engine/stack.rs +++ b/crates/nu-protocol/src/engine/stack.rs @@ -51,7 +51,7 @@ pub struct Stack { pub parent_stack: Option>, /// Variables that have been deleted (this is used to hide values from parent stack lookups) pub parent_deletions: Vec, - /// Locally updated config. Use [`.get_config()`] to access correctly. + /// Locally updated config. Use [`.get_config()`](Self::get_config) to access correctly. pub config: Option>, pub(crate) out_dest: StackOutDest, } diff --git a/crates/nu-protocol/src/errors/labeled_error.rs b/crates/nu-protocol/src/errors/labeled_error.rs index 20ac9cff71..c76a6c78dd 100644 --- a/crates/nu-protocol/src/errors/labeled_error.rs +++ b/crates/nu-protocol/src/errors/labeled_error.rs @@ -37,7 +37,8 @@ pub struct LabeledError { impl LabeledError { /// Create a new plain [`LabeledError`] with the given message. /// - /// This is usually used builder-style with methods like [`.with_label()`] to build an error. + /// This is usually used builder-style with methods like [`.with_label()`](Self::with_label) to + /// build an error. /// /// # Example /// diff --git a/crates/nu-protocol/src/pipeline/pipeline_data.rs b/crates/nu-protocol/src/pipeline/pipeline_data.rs index 0d1c0b3092..2ae8027f06 100644 --- a/crates/nu-protocol/src/pipeline/pipeline_data.rs +++ b/crates/nu-protocol/src/pipeline/pipeline_data.rs @@ -117,7 +117,8 @@ impl PipelineData { /// Get a type that is representative of the `PipelineData`. /// /// The type returned here makes no effort to collect a stream, so it may be a different type - /// than would be returned by [`Value::get_type()`] on the result of [`.into_value()`]. + /// than would be returned by [`Value::get_type()`] on the result of + /// [`.into_value()`](Self::into_value). /// /// Specifically, a `ListStream` results in [`list stream`](Type::ListStream) rather than /// the fully complete [`list`](Type::List) type (which would require knowing the contents), diff --git a/crates/nu-system/src/foreground.rs b/crates/nu-system/src/foreground.rs index 2fe3c4fb29..bd78f616aa 100644 --- a/crates/nu-system/src/foreground.rs +++ b/crates/nu-system/src/foreground.rs @@ -105,10 +105,10 @@ impl Drop for ForegroundChild { /// /// If there is already a foreground external process running, spawned with [`ForegroundChild`], /// this expects the process ID to remain in the process group created by the [`ForegroundChild`] -/// for the lifetime of the guard, and keeps the terminal controlling process group set to that. If -/// there is no foreground external process running, this sets the foreground process group to the -/// plugin's process ID. The process group that is expected can be retrieved with [`.pgrp()`] if -/// different from the plugin process ID. +/// for the lifetime of the guard, and keeps the terminal controlling process group set to that. +/// If there is no foreground external process running, this sets the foreground process group to +/// the plugin's process ID. The process group that is expected can be retrieved with +/// [`.pgrp()`](Self::pgrp) if different from the plugin process ID. /// /// ## Other systems ///