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

## [Unreleased]

## [v0.6.26] - 2025-08-20

### Changed

- Improve error for better context in DB by @hackerwins in https://github.com/yorkie-team/yorkie/pull/1445
- Improve changes fetching with database-level pagination by @hackerwins in https://github.com/yorkie-team/yorkie/pull/1448

### Fixed

- Fix incorrect tombstone in Tree.Remove for overlapping ranges by @hackerwins in https://github.com/yorkie-team/yorkie/pull/1435
- Refine server configuration defaults and tests by @ggyuchive in https://github.com/yorkie-team/yorkie/pull/1450
- Fix removedAt timestamp handling in text deletions by @sigmaith in https://github.com/yorkie-team/yorkie/pull/1447

## [v0.6.25] - 2025-08-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
YORKIE_VERSION := 0.6.25
YORKIE_VERSION := 0.6.26

GO_PROJECT = github.com/yorkie-team/yorkie

Expand Down
2 changes: 1 addition & 1 deletion api/docs/yorkie.base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.1.0
info:
title: Yorkie
description: "Yorkie is an open source document store for building collaborative editing applications."
version: v0.6.25
version: v0.6.26
Comment thread
hackerwins marked this conversation as resolved.
servers:
- url: https://api.yorkie.dev
description: Production server
Expand Down
2 changes: 1 addition & 1 deletion api/docs/yorkie/v1/admin.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
description: Yorkie is an open source document store for building collaborative
editing applications.
title: Yorkie
version: v0.6.25
version: v0.6.26
servers:
- description: Production server
url: https://api.yorkie.dev
Expand Down
2 changes: 1 addition & 1 deletion api/docs/yorkie/v1/cluster.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
description: Yorkie is an open source document store for building collaborative
editing applications.
title: Yorkie
version: v0.6.25
version: v0.6.26
servers:
- description: Production server
url: https://api.yorkie.dev
Expand Down
2 changes: 1 addition & 1 deletion api/docs/yorkie/v1/resources.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
description: Yorkie is an open source document store for building collaborative
editing applications.
title: Yorkie
version: v0.6.25
version: v0.6.26
servers:
- description: Production server
url: https://api.yorkie.dev
Expand Down
2 changes: 1 addition & 1 deletion api/docs/yorkie/v1/yorkie.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
description: Yorkie is an open source document store for building collaborative
editing applications.
title: Yorkie
version: v0.6.25
version: v0.6.26
servers:
- description: Production server
url: https://api.yorkie.dev
Expand Down
4 changes: 2 additions & 2 deletions build/charts/yorkie-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ maintainers:

sources:
- https://github.com/yorkie-team/yorkie
version: 0.6.25
appVersion: "0.6.25"
version: 0.6.26
appVersion: "0.6.26"
kubeVersion: ">=1.23.0-0"

dependencies:
Expand Down
Loading