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

Filter by extension

Filter by extension


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

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

22 changes: 22 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@

shpool (0.11.1) unstable; urgency=low

Added

* report attachments in shpool list --json

Fixed

* 0xFF input byte panicking session threads
* /etc/environment keys with underscores being dropped ([#391](https://github.com/shell-pool/shpool/pull/391))

Other

* name the attachment field session_name_template
* keep session attachments behind the lifecycle state lock
* return peer pid from check_peer for attachments
* fix "saftey" typo
* bump toml from 0.8.23 to 1.1.2+spec-1.1.0
* bump signal-hook from 0.3.18 to 0.4.4 ([#297](https://github.com/shell-pool/shpool/pull/297))

-- Shpool Authors <shpool-eng@google.com> Mon, 15 Jun 2026 18:10:36 +0000

shpool (0.11.0) unstable; urgency=low

Other
Expand Down
4 changes: 2 additions & 2 deletions libshpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libshpool"
version = "0.11.0"
version = "0.11.1"
edition = "2024"
repository = "https://github.com/shell-pool/shpool"
authors = ["Ethan Pailes <pailes@google.com>"]
Expand Down Expand Up @@ -44,7 +44,7 @@ strip-ansi-escapes = "0.2.0" # cleaning up strings for pager display
notify = { version = "7", features = ["crossbeam-channel"] } # watch config file for updates
libproc = "0.14.8" # sniffing shells by examining the subprocess
parking_lot = { version = "0.12", features = ["arc_lock"] } # faster more featureful sync primitives
shpool-protocol = { version = "0.4.1", path = "../shpool-protocol" } # client-server protocol
shpool-protocol = { version = "0.4.2", path = "../shpool-protocol" } # client-server protocol

# rusty wrapper for unix apis
[dependencies.nix]
Expand Down
12 changes: 12 additions & 0 deletions shpool-protocol/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

shpool-protocol (0.4.2) unstable; urgency=low

Added

* report attachments in shpool list --json

Other

* name the attachment field session_name_template

-- Shpool Authors <shpool-eng@google.com> Mon, 15 Jun 2026 18:10:36 +0000

shpool-protocol (0.4.1) unstable; urgency=low

Added
Expand Down
2 changes: 1 addition & 1 deletion shpool-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shpool-protocol"
version = "0.4.1"
version = "0.4.2"
edition = "2024"
authors = ["Ethan Pailes <pailes@google.com>"]
repository = "https://github.com/shell-pool/shpool"
Expand Down
4 changes: 2 additions & 2 deletions shpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shpool"
version = "0.11.0"
version = "0.11.1"
edition = "2024"
authors = ["Ethan Pailes <pailes@google.com>"]
repository = "https://github.com/shell-pool/shpool"
Expand All @@ -21,7 +21,7 @@ test_hooks = ["libshpool/test_hooks"]
[dependencies]
clap = { version = "4", features = ["derive"] } # cli parsing
anyhow = "1" # dynamic, unstructured errors
libshpool = { version = "0.11.0", path = "../libshpool" }
libshpool = { version = "0.11.1", path = "../libshpool" }

[dev-dependencies]
lazy_static = "1" # globals
Expand Down
Loading