Skip to content

Release v2.1.0 #388

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e6d46fd
Add 'track' property in ImpressionDTO and 'trackImpressions' property…
EmilianoSanchez Dec 6, 2024
b4c0350
Refactor storages and submitter, now that 'impressionCounts' and 'uni…
EmilianoSanchez Dec 9, 2024
c2f1e62
uniqueKeysTracker required
EmilianoSanchez Dec 9, 2024
77f8dee
Refactor strategies and impressionsTracker
EmilianoSanchez Dec 9, 2024
5eb34bf
Add trackImpressions property to SplitView
EmilianoSanchez Dec 10, 2024
f9dc947
Remove 'track' property from ImpressionDTO, to not modify the Impress…
EmilianoSanchez Dec 11, 2024
6b36f0d
Merge branch 'impressions_toggle_track_property' into impressions_tog…
EmilianoSanchez Dec 11, 2024
334ec45
Merge branch 'impressions_toggle_storage_refactors' into impressions_…
EmilianoSanchez Dec 11, 2024
2b1a189
Merge branch 'impressions_toggle_strategy_refactors' into impressions…
EmilianoSanchez Dec 11, 2024
c16be4a
rc
EmilianoSanchez Dec 11, 2024
ac5659a
Polishing
EmilianoSanchez Dec 11, 2024
522debd
New type ImpressionDecorated
EmilianoSanchez Dec 11, 2024
a771764
Merge branch 'impressions_toggle_track_property' into impressions_tog…
EmilianoSanchez Dec 11, 2024
f1b3a1f
Merge branch 'impressions_toggle_storage_refactors' into impressions_…
EmilianoSanchez Dec 11, 2024
84238a2
Merge branch 'impressions_toggle_strategy_refactors' into impressions…
EmilianoSanchez Dec 11, 2024
e462bba
Merge pull request #372 from splitio/impressions_toggle_track_property
EmilianoSanchez Dec 12, 2024
5255f06
Merge pull request #373 from splitio/impressions_toggle_storage_refac…
EmilianoSanchez Dec 12, 2024
7e13306
Update test
EmilianoSanchez Dec 12, 2024
e14acff
Merge pull request #374 from splitio/impressions_toggle_strategy_refa…
EmilianoSanchez Dec 12, 2024
0d3b71b
Merge branch 'development' into impressions_toggle_baseline
EmilianoSanchez Dec 12, 2024
045e38b
Merge branch 'impressions_toggle_baseline' into impressions_toggle_ma…
EmilianoSanchez Dec 12, 2024
d83c0ad
Merge pull request #375 from splitio/impressions_toggle_manager
EmilianoSanchez Dec 26, 2024
58040dc
Merge branch 'development' into impressions_toggle_baseline
EmilianoSanchez Dec 26, 2024
249b078
Rename trackImpressions to impressionsDisabled
EmilianoSanchez Dec 26, 2024
6c1f9c5
Merge pull request #382 from splitio/impressions_toggle_refactor
EmilianoSanchez Jan 2, 2025
316e100
Merge branch 'main' into impressions_toggle_baseline
EmilianoSanchez Jan 13, 2025
a2a1eff
Update changelog entry
EmilianoSanchez Jan 13, 2025
3c7f6d0
Update changelog entry
EmilianoSanchez Jan 15, 2025
f3199bf
Polishing
EmilianoSanchez Jan 16, 2025
cfe2ed9
Stable version
EmilianoSanchez Jan 17, 2025
af3ef14
Merge pull request #376 from splitio/impressions_toggle_baseline
EmilianoSanchez Jan 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rc
  • Loading branch information
EmilianoSanchez committed Dec 11, 2024
commit c16be4af8cf7660ef937dd85866dddebf96d700a
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.1.0 (January XX, 2025)
- Added `trackImpressions` property to SDK Manager's `SplitView` type.
- Updated implementation of the impressions tracker and strategies to support feature flags with impressions tracking disabled.

2.0.2 (December 3, 2024)
- Updated the factory `init` and `destroy` methods to support re-initialization after destruction. This update ensures compatibility of the React SDK with React Strict Mode, where the factory's `init` and `destroy` effects are executed an extra time to validate proper resource cleanup.
- Bugfixing - Sanitize the `SplitSDKMachineName` header value to avoid exceptions on HTTP/S requests when it contains non ISO-8859-1 characters (Related to issue https://github.com/splitio/javascript-client/issues/847).
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": "2.0.2",
"version": "2.0.3-rc.0",
"description": "Split JavaScript SDK common components",
"main": "cjs/index.js",
"module": "esm/index.js",
Expand Down
Loading