@evolu/common 5.2.0 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/Crdt.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evolu/common",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Local-first platform designed for privacy, ease of use, and no vendor lock-in to sync and backup people's lifetime data",
5
5
  "keywords": [
6
6
  "evolu",
@@ -52,7 +52,7 @@
52
52
  "nanoid": "^5.0.7"
53
53
  },
54
54
  "devDependencies": {
55
- "@effect/platform": "^0.55.0",
55
+ "@effect/platform": "^0.57.0",
56
56
  "@effect/schema": "^0.67.9",
57
57
  "@protobuf-ts/plugin": "^2.9.4",
58
58
  "@protobuf-ts/protoc": "^2.9.4",
@@ -65,7 +65,7 @@
65
65
  "eslint-config-evolu": "1.0.0"
66
66
  },
67
67
  "peerDependencies": {
68
- "@effect/platform": "^0.55.0",
68
+ "@effect/platform": "^0.57.0",
69
69
  "@effect/schema": "^0.67.0",
70
70
  "effect": "^3.1.2"
71
71
  },
package/src/Crdt.ts CHANGED
@@ -13,10 +13,10 @@ import { Config } from "./Config.js";
13
13
  import { NanoIdGenerator, NodeId } from "./Crypto.js";
14
14
  import { murmurhash } from "./Murmurhash.js";
15
15
 
16
+ // https://sergeiturukin.com/2017/06/26/hybrid-logical-clocks.html
16
17
  // https://muratbuffalo.blogspot.com/2014/07/hybrid-logical-clocks.html
17
18
  // https://jaredforsyth.com/posts/hybrid-logical-clocks/
18
19
  // https://github.com/clintharris/crdt-example-app_annotated/blob/master/shared/timestamp.js
19
- // https://github.com/actualbudget/actual/tree/master/packages/crdt
20
20
 
21
21
  export interface Timestamp {
22
22
  readonly node: NodeId;