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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.5...v0.10.0) - 2026-05-19

### Fixed

- *(connectivity)* vpc_peering create body serializes the spec's wire keys ([#89](https://github.com/redis-developer/redis-cloud-rs/pull/89))
- *(account)* PaymentMethod.credit_card_ends_with should be String, not i32 ([#87](https://github.com/redis-developer/redis-cloud-rs/pull/87))
- *(flexible/databases)* rename Database.activated to activated_on (wire field is `activatedOn`) ([#86](https://github.com/redis-developer/redis-cloud-rs/pull/86))
- *(tasks)* handle the canonical TasksStateUpdate wrapper from GET /tasks ([#85](https://github.com/redis-developer/redis-cloud-rs/pull/85))
- *(fixed/databases)* add missing 'subscription' field to AccountFixedSubscriptionDatabases ([#81](https://github.com/redis-developer/redis-cloud-rs/pull/81))

### Other

- enforce #![deny(missing_docs)] and rustdoc::broken_intra_doc_links ([#98](https://github.com/redis-developer/redis-cloud-rs/pull/98))
- *(models)* document fields in the four large request/response modules ([#96](https://github.com/redis-developer/redis-cloud-rs/pull/96))
- *(users)* document all undocumented fields in user request/response models ([#95](https://github.com/redis-developer/redis-cloud-rs/pull/95))
- *(small modules)* document the remaining undocumented fields in 6 short modules ([#94](https://github.com/redis-developer/redis-cloud-rs/pull/94))
- *(connectivity)* expand thin module headers (psc, transit_gateway, vpc_peering) ([#93](https://github.com/redis-developer/redis-cloud-rs/pull/93))
- *(types)* expand module header and document all variants/fields in shared types ([#92](https://github.com/redis-developer/redis-cloud-rs/pull/92))
- *(connectivity)* document ConnectivityHandler delegation methods and struct fields ([#91](https://github.com/redis-developer/redis-cloud-rs/pull/91))
- *(lib.rs)* refresh stale examples in crate-level docs ([#90](https://github.com/redis-developer/redis-cloud-rs/pull/90))
- *(cost_report)* add wiremock integration coverage for the exported handler ([#88](https://github.com/redis-developer/redis-cloud-rs/pull/88))

## [0.9.5](https://github.com/redis-developer/redis-cloud-rs/compare/v0.9.4...v0.9.5) - 2026-02-06

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redis-cloud"
version = "0.9.5"
version = "0.10.0"
edition = "2024"
rust-version = "1.89"
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]
Expand Down
Loading