Skip to content

Commit 287d61b

Browse files
rc
1 parent 3b0fb31 commit 287d61b

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: BUILD_BRANCH=$(echo "${GITHUB_REF#refs/heads/}") npm run build
5858

5959
- name: Store assets
60-
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/main') }}
60+
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/inlocalstorage' || github.ref == 'refs/heads/main') }}
6161
uses: actions/upload-artifact@v4
6262
with:
6363
name: assets
@@ -68,7 +68,7 @@ jobs:
6868
name: Upload assets
6969
runs-on: ubuntu-latest
7070
needs: build
71-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/development' }}
71+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/inlocalstorage' }}
7272
strategy:
7373
matrix:
7474
environment:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio",
3-
"version": "11.5.0",
3+
"version": "11.5.1-rc.0",
44
"description": "Split SDK",
55
"files": [
66
"README.md",

src/settings/defaults/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const packageVersion = '11.5.0';
1+
export const packageVersion = '11.5.1-rc.0';

ts-tests/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,13 @@ fullBrowserSettings.storage.type = 'MEMORY';
586586
fullBrowserSettings.userConsent = 'DECLINED';
587587
fullBrowserSettings.userConsent = 'UNKNOWN';
588588

589+
const customStorage: SplitIO.StorageWrapper = {
590+
getItem(key: string) { return Promise.resolve('value') },
591+
setItem(key: string, value: string) { return Promise.resolve() },
592+
removeItem(key: string) { return Promise.resolve() },
593+
}
594+
fullBrowserSettings.storage.wrapper = customStorage;
595+
589596
let fullNodeSettings: SplitIO.INodeSettings = {
590597
core: {
591598
authorizationKey: 'asd',

0 commit comments

Comments
 (0)