@feathersdev/automerge 0.11.0 → 0.11.2

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 CHANGED
@@ -3,6 +3,17 @@
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
+ ## [0.11.2](https://github.com/feathersdev/app/compare/v0.11.1...v0.11.2) (2025-05-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Move to automerge.feathers.dev ([#286](https://github.com/feathersdev/app/issues/286)) ([c4bf48a](https://github.com/feathersdev/app/commit/c4bf48a9c845f1738067328c835133205b02fc0e))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.11.0](https://github.com/feathersdev/app/compare/v0.10.1...v0.11.0) (2025-05-25)
7
18
 
8
19
 
package/esm/index.d.ts CHANGED
@@ -6,7 +6,7 @@ export interface AutomergeClientOptions {
6
6
  storage: StorageAdapterInterface;
7
7
  syncUrl: string;
8
8
  }
9
- export declare const syncUrl = "https://sync.feathers.dev";
9
+ export declare const syncUrl = "https://automerge.feathers.dev";
10
10
  export declare class AutomergeClient {
11
11
  client: FeathersAuthClient;
12
12
  options: AutomergeClientOptions;
package/esm/index.js CHANGED
@@ -3,7 +3,7 @@ import { BrowserWebSocketClientAdapter } from '@automerge/automerge-repo-network
3
3
  import { IndexedDBStorageAdapter } from '@automerge/automerge-repo-storage-indexeddb';
4
4
  import { verifyToken } from '@feathersdev/auth/internals';
5
5
  export * from '@automerge/automerge-repo';
6
- export const syncUrl = 'https://sync.feathers.dev';
6
+ export const syncUrl = 'https://automerge.feathers.dev';
7
7
  export class AutomergeClient {
8
8
  constructor(client, options) {
9
9
  this.client = client;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersdev/automerge",
3
3
  "type": "module",
4
- "version": "0.11.0",
4
+ "version": "0.11.2",
5
5
  "description": "Feathers local-first data synchronization using Automerge",
6
6
  "author": {
7
7
  "name": "Feathers Cloud Inc.",
@@ -50,5 +50,5 @@
50
50
  "devDependencies": {
51
51
  "@vitest/browser": "^3.1.2"
52
52
  },
53
- "gitHead": "c39ce0034f664037faf0e4be4ca209309835bfa4"
53
+ "gitHead": "efd8eef064f67cd3bcafe16eddb028994fcb3140"
54
54
  }
package/src/index.ts CHANGED
@@ -12,7 +12,7 @@ export interface AutomergeClientOptions {
12
12
  syncUrl: string
13
13
  }
14
14
 
15
- export const syncUrl = 'https://sync.feathers.dev'
15
+ export const syncUrl = 'https://automerge.feathers.dev'
16
16
 
17
17
  export class AutomergeClient {
18
18
  private repo?: Repo