Skip to content

Commit

Permalink
Merge pull request #269 from splitio/prepare-release
Browse files Browse the repository at this point in the history
prepare release v1.11.0
  • Loading branch information
mmelograno authored Nov 3, 2023
2 parents 59b55dd + ab7a76e commit 8ae6640
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.11.0 (November XX, 2023)
1.11.0 (November 3, 2023)
- Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
- Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
- getTreatmentsByFlagSet and getTreatmentsByFlagSets
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splitsoftware/splitio-commons",
"version": "1.10.1-rc.4",
"version": "1.11.0",
"description": "Split Javascript SDK common components",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/storages/KeyBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class KeyBuilder {
}

buildFlagSetKey(flagSet: string) {
return `${this.prefix}.flagset.${flagSet}`;
return `${this.prefix}.flagSet.${flagSet}`;
}

buildSplitKey(splitName: string) {
Expand Down
2 changes: 1 addition & 1 deletion src/storages/__tests__/KeyBuilder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ test('KEYS / flag set keys', () => {
const builder = new KeyBuilder(prefix);

const flagSetName = 'flagset_x';
const expectedKey = `${prefix}.flagset.${flagSetName}`;
const expectedKey = `${prefix}.flagSet.${flagSetName}`;

expect(builder.buildFlagSetKey(flagSetName)).toBe(expectedKey);

Expand Down

0 comments on commit 8ae6640

Please sign in to comment.