From c78d323002b7bd04aca05ca06cc217fb99998ec3 Mon Sep 17 00:00:00 2001 From: Weihao Ding <158090588+weihao-statsig@users.noreply.github.com> Date: Wed, 3 Apr 2024 10:12:38 -0700 Subject: [PATCH] [release] 4.52.0 - Add InitRequestRetries into Statsig Options, Bug Fix For Auto Metrics (#472) **New Features** - Custom Request Retries: Introducing `initRequestRetries` in `StatsigOptions`, empowering customers to define the number of retry attempts for initialization requests according to their preferences. **Enhancements** - Consistent Logging: Modified log messages across the codebase to adhere to the `[Statsig]` prefix convention for better organization and clarity. - Bug fix: safer checks on auto metrics. >Included In This Release >- d44026587cc74949cbac4d0f1e6b39de1e0ead0f Weihao Ding > - Add Init Request Retries Into StatsigOptions (#470) >- cb9ee747252c625ac7946ad87b37ad3a25d1948d tore-statsig > - bugfix: safer checks on auto metrics (#471) --------- Co-authored-by: weihao-statsig --- package-lock.json | 4 ++-- package.json | 2 +- src/SDKVersion.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8820df1..0a3bb2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "statsig-js", - "version": "4.51.0", + "version": "4.52.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "statsig-js", - "version": "4.51.0", + "version": "4.52.0", "license": "ISC", "dependencies": { "js-sha256": "^0.11.0", diff --git a/package.json b/package.json index 617ad34..16cb863 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "statsig-js", - "version": "4.51.0", + "version": "4.52.0", "description": "Statsig JavaScript client SDK for single user environments.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/SDKVersion.ts b/src/SDKVersion.ts index 446460f..a82481e 100644 --- a/src/SDKVersion.ts +++ b/src/SDKVersion.ts @@ -1,2 +1,2 @@ // Generated by genversion. -export const version = '4.51.0' +export const version = '4.52.0'