Skip to content

Commit aed92aa

Browse files
Merge pull request #102 from splitio/release_v0.11.0
Prepare release v0.11.0
2 parents fd677bc + 1006f0e commit aed92aa

7 files changed

Lines changed: 10 additions & 6 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,6 @@ dist
114114
## IDEs
115115
/.vscode
116116
/.idea
117-
.DS_Store
117+
118+
.DS_Store
119+
/karma/bundle.js

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.10.2 (October XX, 2023)
1+
0.11.0 (October 31, 2023)
22
- Added `defaultTreatment` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager (Related to issue https://github.com/splitio/javascript-commons/issues/225).
33
- Updated @splitsoftware/splitio-commons package to version 1.10.0 that includes vulnerability fixes, and adds the `defaultTreatment` property to the `SplitView` object.
44

karma/config.debug.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = merge({}, require('./config'), {
88
],
99
rollupPreprocessor: {
1010
output: {
11+
file: 'karma/bundle.js',
1112
sourcemap: 'inline',
1213
},
1314
},

karma/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ module.exports = {
3636
rollupPreprocessor: {
3737
// `input` is handled by karma-rollup-preprocessor.
3838
output: {
39+
file: 'karma/bundle.js',
3940
format: 'umd',
4041
name: 'splitio',
4142
// sourcemap: 'inline', // Uncomment for debugging

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-browserjs",
3-
"version": "0.10.2-rc.1",
3+
"version": "0.11.0",
44
"description": "Split SDK for JavaScript on Browser",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",

src/settings/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { LogLevels, isLogLevelString } from '@splitsoftware/splitio-commons/src/
22
import { ConsentStatus, LogLevel } from '@splitsoftware/splitio-commons/src/types';
33
import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/src/utils/constants';
44

5-
const packageVersion = '0.10.2-rc.1';
5+
const packageVersion = '0.11.0';
66

77
/**
88
* In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.

0 commit comments

Comments
 (0)