Skip to content
Merged
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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,22 @@
All notable changes to this project will be documented in this file.
See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/).

## 0.34.1

### Added:
* Adding field `RedisVersion` to Redis Active Active subscription create


## 0.34.0

### Added:
* Adding field `RedisVersion` to Redis Active Active subscription
* Adding field `RedisVersion` to Redis Active Active subscription model (get and list)


## 0.33.1

### Fixed:
* Added pending status for database upgrade

## 0.33.0

Expand Down
1 change: 1 addition & 0 deletions service/databases/model_active_active.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ type CreateActiveActiveDatabase struct {
LocalThroughputMeasurement []*LocalThroughput `json:"localThroughputMeasurement,omitempty"`
PortNumber *int `json:"port,omitempty"`
QueryPerformanceFactor *string `json:"queryPerformanceFactor,omitempty"`
RedisVersion *string `json:"redisVersion,omitempty"`
}

func (o CreateActiveActiveDatabase) String() string {
Expand Down
Loading