aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CHANGELOG.md42
-rw-r--r--Cargo.lock28
-rw-r--r--Cargo.toml24
-rw-r--r--crates/atuin-client/Cargo.toml2
-rw-r--r--crates/atuin-daemon/Cargo.toml8
-rw-r--r--crates/atuin-dotfiles/Cargo.toml4
-rw-r--r--crates/atuin-history/Cargo.toml2
-rw-r--r--crates/atuin-kv/Cargo.toml4
-rw-r--r--crates/atuin-scripts/Cargo.toml4
-rw-r--r--crates/atuin-server-database/Cargo.toml2
-rw-r--r--crates/atuin-server-postgres/Cargo.toml4
-rw-r--r--crates/atuin-server-sqlite/Cargo.toml4
-rw-r--r--crates/atuin/Cargo.toml8
13 files changed, 89 insertions, 47 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 927df981..0a4c74f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,46 @@ All notable changes to this project will be documented in this file.
## [unreleased]
+## 18.13.4
+
+### Bug Fixes
+
+- *(ai)* Restore url-quote-magic for ? in zsh ([#3304](https://github.com/atuinsh/atuin/issues/3304))
+- Redirect tty0 when running setup ([#3302](https://github.com/atuinsh/atuin/issues/3302))
+- Call ensure_hub_session even if primary sync endpoint is self-hosted ([#3301](https://github.com/atuinsh/atuin/issues/3301))
+- Remove per-event mouse capture toggling that leaked ANSI to stdout ([#3299](https://github.com/atuinsh/atuin/issues/3299))
+- Clarify what data is sent when using Atuin AI during setup (only OS and shell) ([#3290](https://github.com/atuinsh/atuin/issues/3290))
+- Better tty check ([#3313](https://github.com/atuinsh/atuin/issues/3313))
+- Disable features in init when that feature is explicitly disabled ([#3328](https://github.com/atuinsh/atuin/issues/3328))
+- Don't run 'atuin init' in 'atuin hex init' — each must be initialized separately ([#3334](https://github.com/atuinsh/atuin/issues/3334))
+
+
+### Documentation
+
+- Fix typo in FAQ alternatives section ([#3292](https://github.com/atuinsh/atuin/issues/3292))
+- Remove 'experimental' status from Atuin Daemon ([#3295](https://github.com/atuinsh/atuin/issues/3295))
+- Add inline_height_shell_up_key_binding ([#3270](https://github.com/atuinsh/atuin/issues/3270))
+
+
+### Features
+
+- Report distro name with OS for distro-specific commands ([#3289](https://github.com/atuinsh/atuin/issues/3289))
+- Allow setting kv values from stdin
+- Error if value not provided and no stdin
+- Add a small atuin label to the ai box ([#3309](https://github.com/atuinsh/atuin/issues/3309))
+- Allow running `atuin search -i` as subcommand on Windows ([#3250](https://github.com/atuinsh/atuin/issues/3250))
+- Hex init nu ([#3330](https://github.com/atuinsh/atuin/issues/3330))
+
+
+### Miscellaneous Tasks
+
+- *(ci)* Tag docker images with semantic versions on tag creation ([#3316](https://github.com/atuinsh/atuin/issues/3316))
+- Replace atuin-ai rendering with component-oriented system ([#3288](https://github.com/atuinsh/atuin/issues/3288))
+- Refactor CLI auth flows and token storage ([#3317](https://github.com/atuinsh/atuin/issues/3317))
+
+
+## 18.13.3
+
### Bug Fixes
- Nushell 0.111; future Nushell 0.112 support ([#3266](https://github.com/atuinsh/atuin/issues/3266))
@@ -20,11 +60,13 @@ All notable changes to this project will be documented in this file.
- *(ci)* Migrate to depot runners ([#3279](https://github.com/atuinsh/atuin/issues/3279))
- *(ci)* Use depot to build docker images too ([#3281](https://github.com/atuinsh/atuin/issues/3281))
+- *(ci)* Use github for macos
- Update changelog
- Update permissions in Docker workflow ([#3283](https://github.com/atuinsh/atuin/issues/3283))
- Change CHANGELOG format to be easier to parse
- Symlink changelog so dist can pick it up
- Vendor nucleo-ext + fork, so we can depend on our changes properly ([#3284](https://github.com/atuinsh/atuin/issues/3284))
+- Update changelog
## 18.13.2
diff --git a/Cargo.lock b/Cargo.lock
index 7ec6178e..2664e29c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -217,7 +217,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "atuin"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"arboard",
"async-trait",
@@ -277,7 +277,7 @@ dependencies = [
[[package]]
name = "atuin-ai"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"async-stream",
"atuin-client",
@@ -305,7 +305,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"async-trait",
"atuin-common",
@@ -360,7 +360,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"base64",
"directories",
@@ -380,7 +380,7 @@ dependencies = [
[[package]]
name = "atuin-daemon"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"atuin-client",
"atuin-common",
@@ -413,7 +413,7 @@ dependencies = [
[[package]]
name = "atuin-dotfiles"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"atuin-client",
"atuin-common",
@@ -427,7 +427,7 @@ dependencies = [
[[package]]
name = "atuin-hex"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"clap",
"crossterm",
@@ -439,7 +439,7 @@ dependencies = [
[[package]]
name = "atuin-history"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"atuin-client",
"crossterm",
@@ -452,7 +452,7 @@ dependencies = [
[[package]]
name = "atuin-kv"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"atuin-client",
"atuin-common",
@@ -495,7 +495,7 @@ dependencies = [
[[package]]
name = "atuin-scripts"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"atuin-client",
"atuin-common",
@@ -517,7 +517,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"argon2",
"atuin-common",
@@ -546,7 +546,7 @@ dependencies = [
[[package]]
name = "atuin-server-database"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"async-trait",
"atuin-common",
@@ -559,7 +559,7 @@ dependencies = [
[[package]]
name = "atuin-server-postgres"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"async-trait",
"atuin-common",
@@ -577,7 +577,7 @@ dependencies = [
[[package]]
name = "atuin-server-sqlite"
-version = "18.13.3"
+version = "18.13.4"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index 7ec77682..4f170aa0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ resolver = "2"
exclude = ["ui/backend", "crates/atuin-nucleo/matcher/fuzz"]
[workspace.package]
-version = "18.13.3"
+version = "18.13.4"
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
rust-version = "1.94.0"
license = "MIT"
@@ -15,17 +15,17 @@ readme = "README.md"
[workspace.dependencies]
async-trait = "0.1.58"
-atuin-client = { path = "crates/atuin-client", version = "18.13.3" }
-atuin-common = { path = "crates/atuin-common", version = "18.13.3" }
-atuin-daemon = { path = "crates/atuin-daemon", version = "18.13.3" }
-atuin-dotfiles = { path = "crates/atuin-dotfiles", version = "18.13.3" }
-atuin-history = { path = "crates/atuin-history", version = "18.13.3" }
-atuin-kv = { path = "crates/atuin-kv", version = "18.13.3" }
-atuin-scripts = { path = "crates/atuin-scripts", version = "18.13.3" }
-atuin-server = { path = "crates/atuin-server", version = "18.13.3" }
-atuin-server-database = { path = "crates/atuin-server-database", version = "18.13.3" }
-atuin-server-postgres = { path = "crates/atuin-server-postgres", version = "18.13.3" }
-atuin-server-sqlite = { path = "crates/atuin-server-sqlite", version = "18.13.3" }
+atuin-client = { path = "crates/atuin-client", version = "18.13.4" }
+atuin-common = { path = "crates/atuin-common", version = "18.13.4" }
+atuin-daemon = { path = "crates/atuin-daemon", version = "18.13.4" }
+atuin-dotfiles = { path = "crates/atuin-dotfiles", version = "18.13.4" }
+atuin-history = { path = "crates/atuin-history", version = "18.13.4" }
+atuin-kv = { path = "crates/atuin-kv", version = "18.13.4" }
+atuin-scripts = { path = "crates/atuin-scripts", version = "18.13.4" }
+atuin-server = { path = "crates/atuin-server", version = "18.13.4" }
+atuin-server-database = { path = "crates/atuin-server-database", version = "18.13.4" }
+atuin-server-postgres = { path = "crates/atuin-server-postgres", version = "18.13.4" }
+atuin-server-sqlite = { path = "crates/atuin-server-sqlite", version = "18.13.4" }
atuin-nucleo = { path = "crates/atuin-nucleo", version = "0.6.0" }
atuin-nucleo-matcher = { path = "crates/atuin-nucleo/matcher", version = "0.3.1" }
base64 = "0.22"
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml
index 1e58dd8c..b5f0c3fa 100644
--- a/crates/atuin-client/Cargo.toml
+++ b/crates/atuin-client/Cargo.toml
@@ -20,7 +20,7 @@ daemon = []
check-update = []
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
log = { workspace = true }
base64 = { workspace = true }
diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml
index 8f2ca9c0..c8c3eba0 100644
--- a/crates/atuin-daemon/Cargo.toml
+++ b/crates/atuin-daemon/Cargo.toml
@@ -14,10 +14,10 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-atuin-client = { path = "../atuin-client", version = "18.13.3" }
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
-atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.13.3" }
-atuin-history = { path = "../atuin-history", version = "18.13.3" }
+atuin-client = { path = "../atuin-client", version = "18.13.4" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
+atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.13.4" }
+atuin-history = { path = "../atuin-history", version = "18.13.4" }
time = { workspace = true }
uuid = { workspace = true }
diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml
index a20c7217..e7de3608 100644
--- a/crates/atuin-dotfiles/Cargo.toml
+++ b/crates/atuin-dotfiles/Cargo.toml
@@ -14,8 +14,8 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
-atuin-client = { path = "../atuin-client", version = "18.13.3" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
+atuin-client = { path = "../atuin-client", version = "18.13.4" }
eyre = { workspace = true }
tokio = { workspace = true }
diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml
index 2b529661..d7f325f2 100644
--- a/crates/atuin-history/Cargo.toml
+++ b/crates/atuin-history/Cargo.toml
@@ -14,7 +14,7 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-atuin-client = { path = "../atuin-client", version = "18.13.3" }
+atuin-client = { path = "../atuin-client", version = "18.13.4" }
time = { workspace = true }
serde = { workspace = true }
diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml
index dd359e96..201794dd 100644
--- a/crates/atuin-kv/Cargo.toml
+++ b/crates/atuin-kv/Cargo.toml
@@ -14,8 +14,8 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-atuin-client = { path = "../atuin-client", version = "18.13.3" }
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
+atuin-client = { path = "../atuin-client", version = "18.13.4" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml
index 753848bd..d6f0ea31 100644
--- a/crates/atuin-scripts/Cargo.toml
+++ b/crates/atuin-scripts/Cargo.toml
@@ -14,8 +14,8 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-atuin-client = { path = "../atuin-client", version = "18.13.3" }
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
+atuin-client = { path = "../atuin-client", version = "18.13.4" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml
index fba5428f..0483ad5c 100644
--- a/crates/atuin-server-database/Cargo.toml
+++ b/crates/atuin-server-database/Cargo.toml
@@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
tracing = { workspace = true }
time = { workspace = true }
diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml
index 414adb6a..f4b0d5dc 100644
--- a/crates/atuin-server-postgres/Cargo.toml
+++ b/crates/atuin-server-postgres/Cargo.toml
@@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.13.3" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.13.4" }
eyre = { workspace = true }
tracing = { workspace = true }
diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml
index 1a719f5f..502b6caf 100644
--- a/crates/atuin-server-sqlite/Cargo.toml
+++ b/crates/atuin-server-sqlite/Cargo.toml
@@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.13.3" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.13.3" }
+atuin-common = { path = "../atuin-common", version = "18.13.4" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.13.4" }
eyre = { workspace = true }
tracing = { workspace = true }
diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml
index c01d5e22..3ede45c7 100644
--- a/crates/atuin/Cargo.toml
+++ b/crates/atuin/Cargo.toml
@@ -43,13 +43,13 @@ clipboard = ["arboard"]
check-update = ["atuin-client/check-update"]
[dependencies]
-atuin-ai = { path = "../atuin-ai", version = "18.13.3", optional = true, default-features = false }
-atuin-client = { path = "../atuin-client", version = "18.13.3", optional = true, default-features = false }
+atuin-ai = { path = "../atuin-ai", version = "18.13.4", optional = true, default-features = false }
+atuin-client = { path = "../atuin-client", version = "18.13.4", optional = true, default-features = false }
atuin-common = { workspace = true }
atuin-dotfiles = { workspace = true }
atuin-history = { workspace = true }
-atuin-daemon = { path = "../atuin-daemon", version = "18.13.3", optional = true, default-features = false }
-atuin-hex = { path = "../atuin-hex", version = "18.13.3", optional = true, default-features = false }
+atuin-daemon = { path = "../atuin-daemon", version = "18.13.4", optional = true, default-features = false }
+atuin-hex = { path = "../atuin-hex", version = "18.13.4", optional = true, default-features = false }
atuin-scripts = { workspace = true }
atuin-kv = { workspace = true }