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

Update v0.13.0 Changelog #176

Merged
merged 5 commits into from
Aug 8, 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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- removed deprecated boltdb and cleveldb ([\#155](https://github.com/cometbft/cometbft-db/pull/155))
10 changes: 4 additions & 6 deletions .changelog/v0.13.0/summary.md
alesforz marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<!--
Add a summary for the release here.
*Aug 2, 2024*

If you don't change this message, or if this file is empty, the release
alesforz marked this conversation as resolved.
Show resolved Hide resolved
will not be created. -->
This release changes the contract of the Iterator Key() and Value() APIs.
Namely, the caller is now responsible for creating a copy of their returned value if they want to modify it.
This release:
- changes the contract of the Iterator Key() and Value() APIs. Namely, the caller is now responsible for creating a copy of their returned value if they want to modify it.
alesforz marked this conversation as resolved.
Show resolved Hide resolved
- removes support for boltDB and clevelDB, which were marked as deprecated in release v0.12.0.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@

## v0.13.0

*Aug 2, 2024*

This release:
- changes the contract of the Iterator Key() and Value() APIs: the caller
is now responsible for creating a copy of their returned value if they want to modify it.
- bumps the Go version to 1.22.5 (from 1.22). Go 1.22.5 does not introduce new language
features, therefore code using older version will still compile. However, we recommend to
upgrade to the latest version(s) of Go as soon as possible.
- removes support for boltDB and clevelDB.


### BREAKING CHANGES

- removed deprecated boltdb and cleveldb ([\#155](https://github.com/cometbft/cometbft-db/pull/155))

### FEATURES

Expand Down
Loading