Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.2.2"
}
".": "2.3.0"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [2.3.0](https://github.com/growthbook/growthbook-python/compare/v2.2.2...v2.3.0) (2026-06-05)

### Features

* Added opt-in remote evaluation support for sync and async clients including cache invalidation, concurrent request coalescing, and cancellation handling. Merge pull request [#118](https://github.com/growthbook/growthbook-python/issues/118) from growthbook/feat/remote-eval ([f6b7c0a](https://github.com/growthbook/growthbook-python/commit/f6b7c0a224a021bd66eda9d6a939aad2064add35))
* Merge pull request [#119](https://github.com/growthbook/growthbook-python/issues/119) from vazarkevych/fix/sticky-bucket-hash-value-resolution ([2edd6a3](https://github.com/growthbook/growthbook-python/commit/2edd6a343dd15de9f96eb36c7c4407e213941336))


### Bug Fixes
* Fixed user context synchronization in evaluation/logging paths. ([75f1dcb](https://github.com/growthbook/growthbook-python/pull/118/changes/75f1dcb71e8cddbe0d88a51e2475a439e33318b5))
* Fixed `$ne`, `$notRegex`, and `$notRegexi` condition behavior for incompatible inputs. ([26d549b](https://github.com/growthbook/growthbook-python/pull/118/changes/26d549b8b0c4cee6171db955f3069a5d9a6b03d4))
* correct sticky bucket hash attribute resolution ([2edd6a3](https://github.com/growthbook/growthbook-python/commit/2edd6a343dd15de9f96eb36c7c4407e213941336))
* correct sticky bucket hash attribute resolution ([875316c](https://github.com/growthbook/growthbook-python/commit/875316c494e50d60a680767838c68b622f8fd402))


## [2.2.2](https://github.com/growthbook/growthbook-python/compare/v2.2.1...v2.2.2) (2026-05-11)


Expand Down
2 changes: 1 addition & 1 deletion growthbook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
)

# x-release-please-start-version
__version__ = "2.2.2"
__version__ = "2.3.0"
# x-release-please-end
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.2
current_version = 2.3.0
commit = True
tag = True

Expand Down
Loading