@feathersdev/automerge 0.12.0 → 0.13.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.
- package/CHANGELOG.md +11 -20
- package/package.json +8 -8
- package/src/index.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,48 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## [0.13.1](https://github.com/feathersdev/app/compare/v0.13.0...v0.13.1) (2026-02-21)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @feathersdev/automerge
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
# [0.13.0](https://github.com/feathersdev/app/compare/v0.12.0...v0.13.0) (2026-02-21)
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
* Talon Auth ([#317](https://github.com/feathersdev/app/issues/317)) ([090eb19](https://github.com/feathersdev/app/commit/090eb19a26080ab5e1a219e2cbac1de19936541b))
|
|
12
|
+
### Bug Fixes
|
|
13
13
|
|
|
14
|
+
- Fix build scripts and tests passing ([#347](https://github.com/feathersdev/app/issues/347)) ([ea2de04](https://github.com/feathersdev/app/commit/ea2de0409d6ceb5cbf8355bf65c0bd5aea927e22))
|
|
14
15
|
|
|
16
|
+
# [0.12.0](https://github.com/feathersdev/app/compare/v0.11.4...v0.12.0) (2025-11-04)
|
|
15
17
|
|
|
18
|
+
### Features
|
|
16
19
|
|
|
20
|
+
- Migrate to D1 ([#301](https://github.com/feathersdev/app/issues/301)) ([049fe52](https://github.com/feathersdev/app/commit/049fe52d22e1aae32c5b82c1618e4e2ff4193123)), closes [#302](https://github.com/feathersdev/app/issues/302) [#303](https://github.com/feathersdev/app/issues/303)
|
|
21
|
+
- Talon Auth ([#317](https://github.com/feathersdev/app/issues/317)) ([090eb19](https://github.com/feathersdev/app/commit/090eb19a26080ab5e1a219e2cbac1de19936541b))
|
|
17
22
|
|
|
18
23
|
## [0.11.4](https://github.com/feathersdev/app/compare/v0.11.3...v0.11.4) (2025-05-28)
|
|
19
24
|
|
|
20
25
|
**Note:** Version bump only for package @feathersdev/automerge
|
|
21
26
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
27
|
## [0.11.3](https://github.com/feathersdev/app/compare/v0.11.2...v0.11.3) (2025-05-26)
|
|
27
28
|
|
|
28
29
|
**Note:** Version bump only for package @feathersdev/automerge
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
31
|
## [0.11.2](https://github.com/feathersdev/app/compare/v0.11.1...v0.11.2) (2025-05-26)
|
|
35
32
|
|
|
36
|
-
|
|
37
33
|
### Bug Fixes
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
35
|
+
- Move to automerge.feathers.dev ([#286](https://github.com/feathersdev/app/issues/286)) ([c4bf48a](https://github.com/feathersdev/app/commit/c4bf48a9c845f1738067328c835133205b02fc0e))
|
|
44
36
|
|
|
45
37
|
# [0.11.0](https://github.com/feathersdev/app/compare/v0.10.1...v0.11.0) (2025-05-25)
|
|
46
38
|
|
|
47
|
-
|
|
48
39
|
### Features
|
|
49
40
|
|
|
50
|
-
|
|
41
|
+
- Basic Automerge feature integration ([#275](https://github.com/feathersdev/app/issues/275)) ([3ccc80c](https://github.com/feathersdev/app/commit/3ccc80cdd02db52fc32d7e1566b844ef211c2c0f))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersdev/automerge",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.13.1",
|
|
5
5
|
"description": "Feathers local-first data synchronization using Automerge",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Feathers Cloud Inc.",
|
|
@@ -35,20 +35,20 @@
|
|
|
35
35
|
"node": ">= 18"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
|
-
"prepublish": "pnpm
|
|
39
|
-
"
|
|
38
|
+
"prepublish": "pnpm build",
|
|
39
|
+
"build": "shx rm -rf esm/ && npx tsc --outDir esm/"
|
|
40
40
|
},
|
|
41
41
|
"directories": {
|
|
42
42
|
"lib": "lib"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@automerge/automerge-repo": "^2.3
|
|
46
|
-
"@automerge/automerge-repo-network-websocket": "^2.3
|
|
47
|
-
"@automerge/automerge-repo-storage-indexeddb": "^2.3
|
|
48
|
-
"talon-auth": "0.
|
|
45
|
+
"@automerge/automerge-repo": "^2.5.3",
|
|
46
|
+
"@automerge/automerge-repo-network-websocket": "^2.5.3",
|
|
47
|
+
"@automerge/automerge-repo-storage-indexeddb": "^2.5.3",
|
|
48
|
+
"talon-auth": "^0.13.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@vitest/browser": "^3.2.4"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "05917231b2ce1b808f6955cf082ef8588252ecf3"
|
|
54
54
|
}
|
package/src/index.ts
CHANGED
|
@@ -19,8 +19,8 @@ export class AutomergeClient {
|
|
|
19
19
|
|
|
20
20
|
constructor(
|
|
21
21
|
public client: TalonAuthClient,
|
|
22
|
-
public options: AutomergeClientOptions
|
|
23
|
-
) {
|
|
22
|
+
public options: AutomergeClientOptions
|
|
23
|
+
) {}
|
|
24
24
|
|
|
25
25
|
private async getDocFromToken() {
|
|
26
26
|
const getAccessToken = await this.client.getAccessToken()
|