Skip to content

Commit 730ac02

Browse files
committed
v4.0.0-rc.1
1 parent 302eb08 commit 730ac02

File tree

26 files changed

+144
-13
lines changed

26 files changed

+144
-13
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-rc.1](https://github.com/ueberdosis/hocuspocus/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2026-03-30)
7+
8+
9+
### Bug Fixes
10+
11+
* reject whitespaces in documents ([3c19888](https://github.com/ueberdosis/hocuspocus/commit/3c198883b50cddf02141debbb74d5250948ee310))
12+
* when storeDocumentHooks throw, retry until storing suceeds. ([99db64d](https://github.com/ueberdosis/hocuspocus/commit/99db64df234946f2492129e793298734c5e2c503))
13+
14+
15+
### Features
16+
17+
* adds deduplication for queued awareness messages ([e0453f0](https://github.com/ueberdosis/hocuspocus/commit/e0453f0210a4a30f6f8b742629ed777724429df9))
18+
* optimize retry logic ([302eb08](https://github.com/ueberdosis/hocuspocus/commit/302eb08d9a2a2b59d44424571fdc70d5790d8fd8))
19+
20+
21+
22+
23+
624
# [4.0.0-rc.0](https://github.com/ueberdosis/hocuspocus/compare/v3.4.4...v4.0.0-rc.0) (2026-03-16)
725

826

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"conventionalCommits": true
99
}
1010
},
11-
"version": "4.0.0-rc.0",
11+
"version": "4.0.0-rc.1",
1212
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1313
}

packages/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-rc.1](https://github.com/ueberdosis/hocuspocus/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2026-03-30)
7+
8+
**Note:** Version bump only for package @hocuspocus/cli
9+
10+
11+
12+
13+
614
# [4.0.0-rc.0](https://github.com/ueberdosis/hocuspocus/compare/v3.4.4...v4.0.0-rc.0) (2026-03-16)
715

816

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hocuspocus/cli",
33
"description": "a CLI tool to start a local Hocuspocus server",
4-
"version": "4.0.0-rc.0",
4+
"version": "4.0.0-rc.1",
55
"homepage": "https://hocuspocus.dev",
66
"keywords": [
77
"hocuspocus",

packages/common/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-rc.1](https://github.com/ueberdosis/hocuspocus/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2026-03-30)
7+
8+
9+
### Features
10+
11+
* optimize retry logic ([302eb08](https://github.com/ueberdosis/hocuspocus/commit/302eb08d9a2a2b59d44424571fdc70d5790d8fd8))
12+
13+
14+
15+
16+
617
# [4.0.0-rc.0](https://github.com/ueberdosis/hocuspocus/compare/v3.4.4...v4.0.0-rc.0) (2026-03-16)
718

819

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hocuspocus/common",
33
"description": "shared code for multiple Hocuspocus packages",
4-
"version": "4.0.0-rc.0",
4+
"version": "4.0.0-rc.1",
55
"homepage": "https://hocuspocus.dev",
66
"keywords": [
77
"hocuspocus"

packages/extension-database/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-rc.1](https://github.com/ueberdosis/hocuspocus/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2026-03-30)
7+
8+
**Note:** Version bump only for package @hocuspocus/extension-database
9+
10+
11+
12+
13+
614
# [4.0.0-rc.0](https://github.com/ueberdosis/hocuspocus/compare/v3.4.4...v4.0.0-rc.0) (2026-03-16)
715

816

packages/extension-database/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hocuspocus/extension-database",
33
"description": "a generic Hocuspocus persistence driver for the database",
4-
"version": "4.0.0-rc.0",
4+
"version": "4.0.0-rc.1",
55
"homepage": "https://hocuspocus.dev",
66
"keywords": [
77
"hocuspocus",

packages/extension-logger/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-rc.1](https://github.com/ueberdosis/hocuspocus/compare/v4.0.0-rc.0...v4.0.0-rc.1) (2026-03-30)
7+
8+
**Note:** Version bump only for package @hocuspocus/extension-logger
9+
10+
11+
12+
13+
614
# [4.0.0-rc.0](https://github.com/ueberdosis/hocuspocus/compare/v3.4.4...v4.0.0-rc.0) (2026-03-16)
715

816

packages/extension-logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hocuspocus/extension-logger",
3-
"version": "4.0.0-rc.0",
3+
"version": "4.0.0-rc.1",
44
"description": "hocuspocus logging extension",
55
"homepage": "https://hocuspocus.dev",
66
"keywords": [

0 commit comments

Comments
 (0)