Skip to content

Commit

Permalink
chore(deps): bump thiserror to 2.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Mar 9, 2025
1 parent 9c4f230 commit 9671b45
Show file tree
Hide file tree
Showing 19 changed files with 25 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Breaking**: Add `CodecTraits::{identifier,default_name,configuration[_opt]}()`
- **Breaking**: Remove `CodecTraits::create_metadata[_opt]()`
- **Breaking**: Change the error type of `node::[async_]get_child_nodes()` and `Group::{children,child_*}()` to `NodeCreateError` instead of `StorageError`
- Bump `thiserror` to 2.0.2

### Fixed
- Fixed reserving one more element than necessary when retrieving `string` or `bytes` array elements
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,6 @@ version = "0.4.1"

[workspace.dependencies.inventory]
version = "0.3.0"

[workspace.dependencies.thiserror]
version = "2.0.12"
2 changes: 1 addition & 1 deletion zarrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ rayon = "1.10.0"
rayon_iter_concurrent_limit = "0.2.0"
serde = { version = "1.0.185", features = ["derive"] }
serde_json = { version = "1.0.71", features = ["float_roundtrip", "preserve_order"] }
thiserror = "2.0.0"
thiserror = "2.0.2"
thread_local = "1.1.8"
unsafe_cell_slice = "0.2.0"
zarrs_filesystem = { workspace = true, optional = true }
Expand Down
1 change: 1 addition & 0 deletions zarrs_data_type/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Breaking**: `DataType::[fixed_]size()` are no longer `const`
- Bump `derive_more` to 0.2.0
- Bump `half` to 2.3.1
- Bump `thiserror` to 2.0.12

### Removed
- **Breaking**: Remove `UnsupportedDataTypeError`
Expand Down
2 changes: 1 addition & 1 deletion zarrs_data_type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ all-features = true
[dependencies]
half = { workspace = true }
num = { workspace = true }
thiserror = "2.0.0"
thiserror = { workspace = true }
derive_more = { version = "2.0.0", features = ["deref", "display", "from"] }
zarrs_metadata = { workspace = true }
zarrs_plugin = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions zarrs_filesystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Bump `itertools` to 0.14
- Bump `derive_more` to 0.2.0
- Bump `thiserror` to 2.0.12

### Fixed
- Fix `clippy::single_char_pattern` lint
Expand Down
2 changes: 1 addition & 1 deletion zarrs_filesystem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ libc = "0.2.158"
page_size = "0.6.0"
parking_lot = "0.12.0" # TODO: Remove with Rust 1.78+
pathdiff = "0.2.0"
thiserror = "2.0.0"
thiserror = { workspace = true }
walkdir = "2.3.2"
zarrs_storage = { workspace = true }

Expand Down
1 change: 1 addition & 0 deletions zarrs_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Bump `itertools` to 0.14
- Bump `thiserror` to 2.0.12

### Fixed
- Fixed crate manifest `documentation` and `keywords`
Expand Down
2 changes: 1 addition & 1 deletion zarrs_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true

[dependencies]
itertools = "0.14.0"
thiserror = "2.0.0"
thiserror = { workspace = true }
reqwest = { version = ">=0.11.8,<0.13", features = ["blocking"] }
url = { version = "2.2.0" }
zarrs_storage = { workspace = true }
1 change: 1 addition & 0 deletions zarrs_metadata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `zarrs` has a default codec map accessible via `zarrs::config::global_config().codec_map()`
- **Breaking**: Remove `write_header` from `zfp` codec configuration
- Bump `half` to 2.3.1
- Bump `thiserror` to 2.0.12

### Removed
- **Breaking**: Remove `DataTypeMetadataV3::size[_fixed]()`
Expand Down
2 changes: 1 addition & 1 deletion zarrs_metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ num = { workspace = true }
serde = { version = "1.0.185", features = ["derive"] }
serde_json = { version = "1.0.71", features = ["float_roundtrip", "preserve_order"] }
serde_repr = "0.1.19"
thiserror = "2.0.0"
thiserror = { workspace = true }
1 change: 1 addition & 0 deletions zarrs_object_store/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- **Breaking**: Bump `object_store` to 0.12.0
- Bump `thiserror` to 2.0.12

## [0.3.0] - 2024-11-15

Expand Down
3 changes: 3 additions & 0 deletions zarrs_opendal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Bump `thiserror` to 2.0.12

## [0.6.0] - 2025-02-24

### Changed
Expand Down
3 changes: 3 additions & 0 deletions zarrs_plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Bump `thiserror` to 2.0.12

## [0.1.0] - 2025-03-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion zarrs_plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ categories = ["encoding"]
workspace = true

[dependencies]
thiserror = "2.0.0"
thiserror = { workspace = true }
zarrs_metadata = { workspace = true }
1 change: 1 addition & 0 deletions zarrs_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Bump `derive_more` to 0.2.0
- Bump `thiserror` to 2.0.12
- Fix clippy lints

## [0.3.1] - 2025-01-10
Expand Down
2 changes: 1 addition & 1 deletion zarrs_storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ derive_more = { version = "2.0.0", features = ["deref", "display", "from"] }
futures = { version = "0.3.29", optional = true }
itertools = "0.14.0"
parking_lot = "0.12.0" # TODO: Remove with Rust 1.78+
thiserror = "2.0.0"
thiserror = { workspace = true }
unsafe_cell_slice = "0.2.0"

[dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions zarrs_zip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changed
- Bump `itertools` to 0.14
- Bump `derive_more` to 0.2.0
- Bump `thiserror` to 2.0.12

## [0.2.0] - 2024-11-15

Expand Down
2 changes: 1 addition & 1 deletion zarrs_zip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ workspace = true
[dependencies]
derive_more = { version = "2.0.0", features = ["from"] }
itertools = "0.14.0"
thiserror = "2.0.0"
thiserror = { workspace = true }
zarrs_storage = { workspace = true }
zip = { workspace = true }

Expand Down

0 comments on commit 9671b45

Please sign in to comment.