Skip to content

Commit

Permalink
Merge pull request #46 from splitio/development
Browse files Browse the repository at this point in the history
Release v2.0.0
  • Loading branch information
emmaz90 authored Dec 18, 2023
2 parents 37f2a91 + e567ad9 commit 8dc4fd7
Show file tree
Hide file tree
Showing 14 changed files with 10,733 additions and 11,176 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up nodejs
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
cache: 'npm'

- name: npm CI
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.10
v18.19
23 changes: 17 additions & 6 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
2.0.0 (Dec 18, 2023)
- Updated @splitsoftware/splitio-browserjs package to version 0.13.0
- Updated the minimum Angular version to match Angular's support up to date. Breaking change version is regarding the Angular minimum version update, there are no breaking changes to Split's plugin API or functionality itself.
- 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
- getTreatmentsWithConfigByFlagSets and getTreatmentsWithConfigByFlagSets
- Added a new optional Split Filter configuration option. This allows the SDK and Split services to only synchronize the flags in the specified flag sets, avoiding unused or unwanted flags from being synced on the SDK instance, bringing all the benefits from a reduced payload.
- Added `sets` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager to expose flag sets on flag views.
- 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).

1.0.2 (May 16, 2023)
- Updated terminology on the SDKs codebase to be more aligned with current standard without causing a breaking change. The core change is the term split for feature flag on things like logs and JSDocs tags.
- Updated terminology on the SDKs codebase to be more aligned with current standard without causing a breaking change. The core change is the term split for feature flag on things like logs and JSDocs tags.

1.0.1 (Jan 12, 2023)
- Explicitly added ngsw-bypass parameter into streaming url to avoid issues with default Angular service workers configurations
- Updated @splitsoftware/splitio-browserjs package to version 0.9.2, which includes:
- Updated some transitive dependencies for vulnerability fixes.
- Bugfixing - Upgrade @splitsoftware/splitio-commons package to version 1.7.3 which includes a memory leak fix for localhost mode (Related to issue https://github.com/splitio/javascript-commons/issues/181) among other improvements.
- Explicitly added ngsw-bypass parameter into streaming url to avoid issues with default Angular service workers configurations
- Updated @splitsoftware/splitio-browserjs package to version 0.9.2, which includes:
- Updated some transitive dependencies for vulnerability fixes.
- Bugfixing - Upgrade @splitsoftware/splitio-commons package to version 1.7.3 which includes a memory leak fix for localhost mode (Related to issue https://github.com/splitio/javascript-commons/issues/181) among other improvements.

1.0.0 (Dec 15, 2022)
- Updated the minimum angular version to match Angular's support up to date. Breaking change version is regarding the angular minimum version update, there are no breaking changes to Split's plugin API or functionality itself.
- Updated the minimum Angular version to match Angular's support up to date. Breaking change version is regarding the Angular minimum version update, there are no breaking changes to Split's plugin API or functionality itself.

0.4.0 (Oct 5, 2022)
- Added a new impressions mode for the SDK called NONE, to be used in factory when there is no desire to capture impressions on an SDK factory to feed Split's analytics engine. Running NONE mode, the SDK will only capture unique keys evaluated for a particular feature flag instead of full blown impressions.
Expand Down
13 changes: 11 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,17 @@
}
}
},
"defaultProject": "splitio",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
"schematicCollections": [
"@angular-eslint/schematics"
]
},
"schematics": {
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
}
}
Loading

0 comments on commit 8dc4fd7

Please sign in to comment.