Skip to content

Commit

Permalink
Bumped MSRV to 1.71.1 due to naughty dependencies of reqwuest
Browse files Browse the repository at this point in the history
  • Loading branch information
gsleap committed Nov 25, 2024
1 parent 3f784f6 commit c3f9a98
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
22 changes: 17 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## 1.2.0 - 2024-10-08
## 1.2.0 - 2024-11-25

### Added

* Added `cancel` command to allow cancellation of in progress jobs. Pass one or more jobids to cancel.

### Changed

* MSRV bumped to 1.7.1 due to naughty sub-dependencies of reqwest.
* Changed some console output references to "ASVO" to be "MWA ASVO".

### Fixed

* Fix- the alias "sv" was assigned to both "submit-vis" and "submit-volt". "st" has now been assigned for "submit-volt" to avoid the duplication.
* Fix- `submit-volt` command no longer defaults delivery to 'acacia' (it can only be 'scratch').

### Security

* NEW FEATURE- added `cancel` command to allow cancellation of in progress jobs.
* `submit-volt` command no longer defaults delivery to 'acacia' (it can only be 'scratch').
* Updated/migrated clap to v4.4.
* Updated dependency quinn-proto to latest to fix security vulnerability.
* BUGFIX- the alias "sv" was assigned to both "submit-vis" and "submit-volt". "st" has now been assigned for "submit-volt" to avoid the duplication.
* Changed some console output references to "ASVO" to be "MWA ASVO".

## 1.1.0 - 2024-08-19

Expand Down
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
"Greg Sleap <greg.sleap@curtin.edu.au>",
]
edition = "2021"
rust-version = "1.70"
rust-version = "1.71.1"
license = "MPL-2.0"
readme = "README.md"
description = "Alternative MWA ASVO client code"
Expand All @@ -35,13 +35,14 @@ bytesize = "~1.3"
log = "~0.4"
lazy_static = "~1.5"
prettytable-rs = "~0.10"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "cookies", "rustls-tls"] }
reqwest = { version = "~0.12", default-features = false, features = ["blocking", "rustls-tls"] }
reqwest_cookie_store = { version = "~0.8", default-features = false }
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
sha-1 = "~0.10"
tar = "~0.4"
tee_readwrite = "~0.2"
thiserror = "~1.0"
thiserror = "~2.0"

# Dependencies only for the binary.
anyhow = { version = "~1.0", optional = true }
Expand Down

0 comments on commit c3f9a98

Please sign in to comment.