Skip to content

Commit 5768a53

Browse files
committed
Update changelog
1 parent c802a10 commit 5768a53

2 files changed

Lines changed: 24 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,33 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [Unreleased]
5+
## [1.2.1 - ?]
6+
7+
### Added
8+
9+
- `PaginationKey` now includes column name
10+
11+
### Changed
12+
13+
- Use `PaginationKey` instead of raw `uint64` for progress report. This means that table progress report will
14+
include not raw value, but a whole `PaginationKey` object, i.e.
15+
```json
16+
{
17+
"type": "uint64",
18+
"column": "id",
19+
"value": 999
20+
}
21+
```
22+
which will be in line with the format of state dump. @driv3r #426
23+
24+
## [1.2.0 - 2026-02-06]
625

726
### Added
827

928
- Changelog.
10-
- Pagination keys beyond UINT64 @milanatshopify #417
11-
- Pagination keys other than UINT64 have to have binary collation @grodowski #422
29+
- UUID as ID: validate collation by @grodowski in #422
30+
- NewPaginationKeyFromRow refactor by @grodowski in #424
31+
- Pagination beyond uint64 by @milanatshopify in #417
1232

1333
## [1.1.0]
1434

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Variables to be built into the binary
2-
VERSION := 1.2.0
2+
VERSION := 1.2.1
33

44
# This variable can be overwritten by the caller
55
DATETIME ?= $(shell date -u +%Y%m%d%H%M%S)

0 commit comments

Comments
 (0)