@dittolive/ditto 4.0.0-alpha2 → 4.0.0-beta1

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/README.md CHANGED
@@ -3,10 +3,10 @@
3
3
  *Ditto is a cross platform SDK that allows mobile, web, and IoT apps to sync
4
4
  with and even without connectivity.*
5
5
 
6
- Version: **4.0.0-alpha2**
6
+ Version: **4.0.0-beta1**
7
7
 
8
8
  Please visit [ditto.live](https://ditto.live) for more info as well as the
9
- [API Reference](https://software.ditto.live/js/Ditto/4.0.0-alpha2/api-reference/) for this particular version.
9
+ [API Reference](https://software.ditto.live/js/Ditto/4.0.0-beta1/api-reference/) for this particular version.
10
10
 
11
11
  --------------------------------------------------------------------------------
12
12
 
package/node/ditto.cjs.js CHANGED
@@ -1434,7 +1434,7 @@ function awdlDestroy(awdl) {
1434
1434
 
1435
1435
  // NOTE: this is patched up with the actual build version by Jake task
1436
1436
  // build:package and has to be a valid semantic version as defined here: https://semver.org.
1437
- const fullBuildVersionString = '4.0.0-alpha2';
1437
+ const fullBuildVersionString = '4.0.0-beta1';
1438
1438
 
1439
1439
  //
1440
1440
  /**
@@ -5830,12 +5830,12 @@ class Ditto {
5830
5830
  }
5831
5831
  /**
5832
5832
  * Explicitly opt-in to disabling the ability to sync with Ditto peers running
5833
- * any version of the SDK in the v3 series of releases.
5833
+ * any version of the SDK in the v3 (or lower) series of releases.
5834
5834
  *
5835
5835
  * Assuming this succeeds then this peer will only be able to sync with other
5836
- * peers using SDKs in the v4 series of releases. Note that this disabling of
5837
- * sync spreads to peers that sync with a peer that has disabled, or has
5838
- * (transitively) had disabled, syncing with v3 SDK peers.
5836
+ * peers using SDKs in the v4 (or higher) series of releases. Note that this
5837
+ * disabling of sync spreads to peers that sync with a peer that has disabled,
5838
+ * or has (transitively) had disabled, syncing with v3 SDK peers.
5839
5839
  */
5840
5840
  disableSyncWithV3() {
5841
5841
  const dittoPointer = dittoBridge.pointerFor(this);
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dittolive/ditto",
3
- "version": "4.0.0-alpha2",
3
+ "version": "4.0.0-beta1",
4
4
  "description": "Ditto is a cross-platform embeddable NoSQL database that can sync with or without an internet connection.",
5
5
  "homepage": "https://ditto.live",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
package/types/ditto.d.ts CHANGED
@@ -2271,12 +2271,12 @@ declare class Ditto {
2271
2271
  runGarbageCollection(): void;
2272
2272
  /**
2273
2273
  * Explicitly opt-in to disabling the ability to sync with Ditto peers running
2274
- * any version of the SDK in the v3 series of releases.
2274
+ * any version of the SDK in the v3 (or lower) series of releases.
2275
2275
  *
2276
2276
  * Assuming this succeeds then this peer will only be able to sync with other
2277
- * peers using SDKs in the v4 series of releases. Note that this disabling of
2278
- * sync spreads to peers that sync with a peer that has disabled, or has
2279
- * (transitively) had disabled, syncing with v3 SDK peers.
2277
+ * peers using SDKs in the v4 (or higher) series of releases. Note that this
2278
+ * disabling of sync spreads to peers that sync with a peer that has disabled,
2279
+ * or has (transitively) had disabled, syncing with v3 SDK peers.
2280
2280
  */
2281
2281
  disableSyncWithV3(): void;
2282
2282
  /** @internal */