Skip to content

Commit

Permalink
Introduce 'shovels declare_amqp091' and 'shovels delete'
Browse files Browse the repository at this point in the history
While at it, remove the --vhost option alias that was
not actually used.

The global "prefix" --vhost is now the only game in town:

rabbitmqadmin --vhost sh-1 shovels declare_amqp091 [...]
  • Loading branch information
michaelklishin committed Feb 25, 2025
1 parent 2af49f8 commit beb784d
Show file tree
Hide file tree
Showing 9 changed files with 517 additions and 140 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## v0.25.0 (in development)

No (documented) changes yet.
### Enhnacements

* `shovels declare` is a new command that can declare


## v0.24.0 (Feb 8, 2025)
Expand Down
139 changes: 87 additions & 52 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ reqwest = { version = "0.12.12", features = [
"__rustls",
"rustls-tls-native-roots"
]}
rabbitmq_http_client = { git = "https://github.com/michaelklishin/rabbitmq-http-api-rs.git", features = [
rabbitmq_http_client = { version = "0.23.0", features = [
"core",
"blocking",
"tabled"
]}
serde = { version = "1.0", features = ["derive", "std"] }
serde_json = "1"
tabled = "0.17"
tabled = "0.18"
toml = "0.8"
color-print = "0.3"
thiserror = "2"
shellexpand = "3.0"

log = "0.4.22"
rustls = { version = "0.23.20", features = ["aws_lc_rs"] }
log = "0.4"
rustls = { version = "0.23", features = ["aws_lc_rs"] }
# fern = "0.7"
# humantime = "2.1.0"
# backtrace = "0.3"
Expand Down
Loading

0 comments on commit beb784d

Please sign in to comment.