@dittolive/ditto 3.0.0-alpha3 → 3.0.0

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: **3.0.0-alpha3**
6
+ Version: **3.0.0**
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/3.0.0-alpha3/api-reference/) for this particular version.
9
+ [API Reference](https://software.ditto.live/js/Ditto/3.0.0/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 = '3.0.0-alpha3';
1437
+ const fullBuildVersionString = '3.0.0';
1438
1438
 
1439
1439
  //
1440
1440
  /**
@@ -2022,12 +2022,12 @@ class TransportConfig {
2022
2022
  this.listen = {
2023
2023
  tcp: {
2024
2024
  isEnabled: false,
2025
- interfaceIP: '[::]',
2025
+ interfaceIP: '0.0.0.0',
2026
2026
  port: 4040,
2027
2027
  },
2028
2028
  http: {
2029
2029
  isEnabled: false,
2030
- interfaceIP: '[::]',
2030
+ interfaceIP: '0.0.0.0',
2031
2031
  port: 80,
2032
2032
  websocketSync: true,
2033
2033
  },
@@ -5606,7 +5606,7 @@ function stateFrom(parameters) {
5606
5606
  if (transportConfig.peerToPeer.lan.isEnabled && !transportConfig.listen.tcp.isEnabled) {
5607
5607
  // FIXME(Daniel): Having this enabled messes up with the logic of `startLan`; so let's avoid this.
5608
5608
  // transportConfig.listen.tcp.isEnabled = true
5609
- transportConfig.listen.tcp.interfaceIP = '[::]';
5609
+ transportConfig.listen.tcp.interfaceIP = '0.0.0.0';
5610
5610
  transportConfig.listen.tcp.port = 0;
5611
5611
  }
5612
5612
  return {
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": "3.0.0-alpha3",
3
+ "version": "3.0.0",
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",