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
5 changes: 0 additions & 5 deletions .changeset/add-fractional-index-package.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/fix-loro-vite-rolldown-wasm.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-undo-trim-empty-front-rows.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/optimize-lazy-snapshot-reads.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-eggs-impress.md

This file was deleted.

10 changes: 10 additions & 0 deletions crates/loro-wasm-map/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# loro-crdt-map

## 1.12.2

### Patch Changes

- cc587ed: Add a browser package remapping so Vite/Rolldown production builds load WASM without top-level await or circular wasm wrapper chunks.

Also make the base64 entry easier to bundle with plain esbuild, Rollup, and Next.js Webpack by avoiding static Node builtin `require()` calls and top-level await in browser bundles.

- 8f57f4c: Reduce memory usage for read-only access to snapshot-imported documents by avoiding unnecessary lazy container state initialization.

## 1.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-wasm-map/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "loro-crdt-map",
"version": "1.12.1",
"version": "1.12.2",
"description": "Source maps for the loro-crdt WebAssembly bundles.",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions crates/loro-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 1.12.2

### Patch Changes

- cc587ed: Add a browser package remapping so Vite/Rolldown production builds load WASM without top-level await or circular wasm wrapper chunks.

Also make the base64 entry easier to bundle with plain esbuild, Rollup, and Next.js Webpack by avoiding static Node builtin `require()` calls and top-level await in browser bundles.

- 5bfffd7: Fix panic in `UndoManager` when `maxUndoSteps` trimming encounters an empty front stack row left by a prior undo with remote diffs.
- 8f57f4c: Reduce memory usage for read-only access to snapshot-imported documents by avoiding unnecessary lazy container state initialization.
- eb9c18a: Fix WASI builds by using native calls instead of js-only wasm32 bindings (`Date.now`, `getrandom`)

## 1.12.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loro-wasm"
version = "1.12.1"
version = "1.12.2"
edition = "2021"
publish = false
repository = "https://github.com/loro-dev/loro/"
Expand Down
2 changes: 1 addition & 1 deletion crates/loro-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "loro-crdt",
"version": "1.12.1",
"version": "1.12.2",
"description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.",
"keywords": [
"crdt",
Expand Down
7 changes: 7 additions & 0 deletions packages/fractional-index/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @loro-dev/fractional-index

## 0.2.0

### Minor Changes

- 418d4ca: Add a TypeScript fractional index package aligned with the Rust `loro_fractional_index` crate.
2 changes: 1 addition & 1 deletion packages/fractional-index/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loro-dev/fractional-index",
"version": "0.1.0",
"version": "0.2.0",
"description": "TypeScript implementation of Loro's fractional index algorithm.",
"keywords": [
"fractional-index",
Expand Down