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

chore(deps): update dependency loro-crdt to ^0.16.0 - autoclosed #596

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
loro-crdt (source) ^0.11.0 -> ^0.16.0 age adoption passing confidence

Release Notes

loro-dev/loro (loro-crdt)

v0.16.6

Compare Source

Patch Changes
  • 1e94248: Add .fork() to duplicate the doc
  • Updated dependencies [1e94248]
    • loro-wasm@0.16.6

v0.16.5

Compare Source

Patch Changes
  • 439e4e9: Update pkg desc
  • Updated dependencies [439e4e9]
    • loro-wasm@0.16.5

v0.16.4

Compare Source

Patch Changes
  • afac347: feat: implement Counter and expose it to js side
  • Updated dependencies [afac347]
    • loro-wasm@0.16.4

v0.16.3

Compare Source

Patch Changes
  • 6d47015: Make cursors transformation better in undo/redo loop
  • dc55055: Perf(wasm) cache text.toDelta
  • Updated dependencies [6d47015]
  • Updated dependencies [dc55055]
    • loro-wasm@0.16.3

v0.16.2

Compare Source

Patch Changes
  • 34f6064: Better undo events & transform cursors by undo manager (#​369)
🧪 Testing
-   Enable compatibility test (#​367)
  • Updated dependencies [34f6064]
    • loro-wasm@0.16.2

v0.16.1

Compare Source

Patch Changes
  • 5cd80b0: Refine undo impl

    • Add "undo" origin for undo and redo event
    • Allow users to skip certain local operations
    • Skip undo/redo ops that are not visible to users
    • Add returned bool value to indicate whether undo/redo is executed
  • Updated dependencies [5cd80b0]

    • loro-wasm@0.16.1

v0.16.0

Compare Source

Minor Changes
  • c12c2b9: Movable Tree Children & Undo
🐛 Bug Fixes
-   Refine error message on corrupted data (#​356)
-   Add MovableList to CONTAINER_TYPES (#​359)
-   Better jitter for fractional index (#​360)
🧪 Testing
-   Add compatibility tests (#​357)
Feat
-   Make the encoding format forward and backward compatible (#​329)
-   Undo (#​361)
-   Use fractional index to order the children of the tree (#​298)
🐛 Bug Fixes
-   Tree fuzz sort value (#​351)
-   Upgrade wasm-bindgen to fix str free err (#​353)
Patch Changes
  • Updated dependencies [c12c2b9]
    • loro-wasm@0.16.0

v0.15.4

Compare Source

v0.15.3

Compare Source

Patch Changes
  • 43506cc: Fix unsound issue caused by wasm-bindgen
🐛 Bug Fixes
-   Fix potential movable list bug (#​354)
-   Tree fuzz sort value (#​351)
-   Upgrade wasm-bindgen to fix str free err (#​353)
📚 Documentation
-   Simplify readme (#​352)
  • Updated dependencies [43506cc]
    • loro-wasm@0.15.3

v0.15.2

Compare Source

Patch Changes
  • e30678d: Perf: fix deletions merge
🐛 Bug Fixes
-   _(wasm)_ Movable list .kind() (#​342)
⚡ Performance
-   Delete span merge err (#​348)
⚙️ Miscellaneous Tasks
-   Warn missing debug impl (#​347)

<!-- generated by git-cliff -->
  • Updated dependencies [e30678d]
    • loro-wasm@0.15.2

v0.15.1

Compare Source

Patch Changes
  • 04c6290: Bug fixes and improvements.
🐛 Bug Fixes
-   Impl a few unimplemented! for movable tree (#&#8203;335)
-   Refine ts type; reject invalid operations (#&#8203;334)
-   Get cursor err on text and movable list (#&#8203;337)
-   Missing MovableList in all container type (#&#8203;343)
-   Upgrade generic-btree to allow large btree (#&#8203;344)
📚 Documentation
-   Add warn(missing_docs) to loro and loro-wasm (#&#8203;339)
-   Minor fix on set_change_merge_interval api (#&#8203;341)
⚙️ Miscellaneous Tasks
-   Skip the checking if not debug_assertions (#&#8203;340)

<!-- generated by git-cliff -->
  • Updated dependencies [04c6290]
    • loro-wasm@0.15.1

v0.15.0

Compare Source

Minor Changes
  • 35b9b6e: Movable List (#​293)

    Loro's List supports insert and delete operations but lacks built-in methods for set and move. To simulate set and move, developers might combine delete and insert. However, this approach can lead to issues during concurrent operations on the same element, often resulting in duplicate entries upon merging.

    For instance, consider a list [0, 1, 2]. If user A moves the element '0' to position 1, while user B moves it to position 2, the ideal merged outcome should be either [1, 0, 2] or [1, 2, 0]. However, using the delete-insert method to simulate a move results in [1, 0, 2, 0], as both users delete '0' from its original position and insert it independently at new positions.

    To address this, we introduce a MovableList container. This new container type directly supports move and set operations, aligning more closely with user expectations and preventing the issues associated with simulated moves.

Example

```ts
import { Loro } from "loro-crdt";
import { expect } from "vitest";

const doc = new Loro();
const list = doc.getMovableList("list");
list.push("a");
list.push("b");
list.push("c");
expect(list.toArray()).toEqual(["a", "b", "c"]);
list.set(2, "d");
list.move(0, 1);
const doc2 = new Loro();
const list2 = doc2.getMovableList("list");
expect(list2.length).toBe(0);
doc2.import(doc.exportFrom());
expect(list2.length).toBe(3);
expect(list2.get(0)).toBe("b");
expect(list2.get(1)).toBe("a");
expect(list2.get(2)).toBe("d");
```
Patch Changes
  • Updated dependencies [35b9b6e]
    • loro-wasm@0.15.0

v0.14.6

Compare Source

Patch Changes
🐛 Bug Fixes
-   Attached container can be inserted to `Map` or `List` (#&#8203;331)
  • Updated dependencies [24cf9b9]
    • loro-wasm@0.14.6

v0.14.5

Compare Source

Patch Changes
🐛 Bug Fixes
-   _(js)_ Allow convert from undefined to LoroValue (#&#8203;323)
🚜 Refactor
-   Refine ts type (#&#8203;322)
  • Updated dependencies [73e3ba5]
    • loro-wasm@0.14.5

v0.14.4

Compare Source

Patch Changes
  • 598d97e: ### 🚜 Refactor

    • Refine the TS Type of Awareness
    • Parse Uint8array to LoroValue::Binary (#​320)
📚 Documentation
-   Update how to publish new npm pkgs
  • Updated dependencies [598d97e]
    • loro-wasm@0.14.4

v0.14.3

Compare Source

Patch Changes

v0.14.2

Compare Source

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.1

Compare Source

v0.13.0

Compare Source

v0.12.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link

vercel bot commented Mar 27, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
pluv ⬜️ Ignored (Inspect) Visit Preview Jul 5, 2024 7:26am

@renovate renovate bot requested a review from leedavidcs as a code owner March 27, 2024 16:45
@renovate renovate bot added the renovate Created by renovate bot label Mar 27, 2024
Copy link

changeset-bot bot commented Mar 27, 2024

⚠️ No Changeset found

Latest commit: a4cd8cb

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

kodiakhq[bot]
kodiakhq bot previously approved these changes Mar 27, 2024
@renovate renovate bot changed the title chore(deps): update dependency loro-crdt to ^0.12.0 chore(deps): update dependency loro-crdt to ^0.13.0 Mar 30, 2024
kodiakhq[bot]
kodiakhq bot previously approved these changes Mar 30, 2024
kodiakhq[bot]
kodiakhq bot previously approved these changes Apr 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency loro-crdt to ^0.13.0 chore(deps): update dependency loro-crdt to ^0.14.0 Apr 4, 2024
kodiakhq[bot]
kodiakhq bot previously approved these changes Apr 4, 2024
kodiakhq[bot]
kodiakhq bot previously approved these changes Apr 14, 2024
@renovate renovate bot force-pushed the renovate/loro-crdt-0.x branch 6 times, most recently from 944f67b to eeec4df Compare June 25, 2024 06:06
kodiakhq[bot]
kodiakhq bot previously approved these changes Jun 30, 2024
@renovate renovate bot force-pushed the renovate/loro-crdt-0.x branch 3 times, most recently from 13c8daa to fb6d061 Compare June 30, 2024 20:39
kodiakhq[bot]
kodiakhq bot previously approved these changes Jun 30, 2024
kodiakhq[bot]
kodiakhq bot previously approved these changes Jul 1, 2024
@renovate renovate bot force-pushed the renovate/loro-crdt-0.x branch from d0e4813 to dd28e80 Compare July 1, 2024 01:24
Copy link

vercel bot commented Jul 1, 2024

Deployment failed with the following error:

Resource is limited - try again in 15 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/loro-crdt-0.x branch 2 times, most recently from 7e304de to f64cbd4 Compare July 1, 2024 04:02
@renovate renovate bot changed the title chore(deps): update dependency loro-crdt to ^0.16.0 chore(deps): update dependency loro-crdt to ^0.16.0 - autoclosed Jul 5, 2024
@renovate renovate bot closed this Jul 5, 2024
@renovate renovate bot deleted the renovate/loro-crdt-0.x branch July 5, 2024 07:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate Created by renovate bot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants