posthog-js-lite 2.0.1 → 2.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 2.1.0 - 2022-1-26
2
+
3
+ 1. uses v3 decide endpoint
4
+ 2. JSON payloads will be returned with feature flags
5
+ 3. Feature flags will gracefully fail and optimistically save evaluated flags if server is down
1
6
  # 2.0.1 - 2023-01-25
2
7
 
3
8
  - Ensures the distinctId used in `.groupIdentify` is the same as the currently identified user
package/lib/index.cjs.js CHANGED
@@ -1295,7 +1295,7 @@ var PostHogCore = /** @class */ (function () {
1295
1295
  return PostHogCore;
1296
1296
  }());
1297
1297
 
1298
- var version = "2.0.1";
1298
+ var version = "2.1.0";
1299
1299
 
1300
1300
  function getContext(window) {
1301
1301
  var context = {};
package/lib/index.esm.js CHANGED
@@ -1291,7 +1291,7 @@ var PostHogCore = /** @class */ (function () {
1291
1291
  return PostHogCore;
1292
1292
  }());
1293
1293
 
1294
- var version = "2.0.1";
1294
+ var version = "2.1.0";
1295
1295
 
1296
1296
  function getContext(window) {
1297
1297
  var context = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "posthog-js-lite",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "main": "lib/index.cjs.js",
5
5
  "module": "lib/index.esm.js",
6
6
  "types": "lib/index.d.ts",