Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.28.1 #734

Merged
merged 1 commit into from
May 22, 2024
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 @@ -13,6 +13,17 @@ This project employs a versioning scheme described in [RELEASE.md](RELEASE.md#ve

- Fix not to send unassigned query parameters in Sabakan integration in [#725](https://github.com/cybozu-go/cke/pull/725)

## [1.28.1]

### Added

- Take in updates of CKE 1.27.11. See [CKE 1.27.11](https://github.com/cybozu-go/cke/blob/v1.27.11/CHANGELOG.md#12711).

### Changed

- change CKE to proceed rebooting immediately after draining of node is completed [#707](https://github.com/cybozu-go/cke/pull/707)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I think L21,L22 should be placed on ## Changed section. Could you fix this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I fixed it!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I cannot see the changes.
Could you check again please?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I pushed again.

- change backoff algorithm to exponential backoff [#726](https://github.com/cybozu-go/cke/pull/726)

## [1.28.0]

### Changed
Expand Down Expand Up @@ -48,6 +59,7 @@ This project employs a versioning scheme described in [RELEASE.md](RELEASE.md#ve
- See [release-1.13/CHANGELOG.md](https://github.com/cybozu-go/cke/blob/release-1.13/CHANGELOG.md) for changes in CKE 1.13.
- See [release-1.12/CHANGELOG.md](https://github.com/cybozu-go/cke/blob/release-1.12/CHANGELOG.md) for changes in CKE 1.12.

[Unreleased]: https://github.com/cybozu-go/cke/compare/v1.28.0...HEAD
[Unreleased]: https://github.com/cybozu-go/cke/compare/v1.28.1...HEAD
[1.28.1]: https://github.com/cybozu-go/cke/compare/v1.28.0...v1.28.1
[1.28.0]: https://github.com/cybozu-go/cke/compare/v1.27.10...v1.28.0
[1.28.0-rc.1]: https://github.com/cybozu-go/cke/compare/v1.27.10...v1.28.0-rc.1
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cke

// Version represents current cke version
const Version = "1.28.0"
const Version = "1.28.1"

// ConfigVersion represents the current configuration scheme
// of how CKE constructs its Kubernetes cluster.
Expand Down