Skip to content

Commit 4b440bd

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 9.0.0
1 parent 96adf51 commit 4b440bd

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [9.0.0] - 2023-10-17
6+
The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized.
7+
8+
For detailed information about this version, refer to the list below. For information on how to upgrade from the previous version, read the [migration guide](https://docs.launchdarkly.com/sdk/server-side/python/migration-8-to-9).
9+
10+
### Added:
11+
- A new `Migrator` type which provides an out-of-the-box configurable migration framework.
12+
- For more advanced use cases, added new `migration_variation` and `track_migration_op` methods on `LDClient`.
13+
14+
### Changed:
15+
- Raised `pyyaml` dependency to `>=5.3`.
16+
17+
### Removed:
18+
- Python 3.7 support was removed.
19+
- The legacy user format for contexts is no longer supported. To learn more, read the [Contexts documentation](https://docs.launchdarkly.com/guides/flags/intro-contexts).
20+
- Methods which originally took a `Context` or a `dict` now only accept a `Context`.
21+
- Previously deprecated config options `user_cache_size`, `user_cache_time`, `user_keys_capacity`, `user_keys_flush_interval`, and `private_attribute_names` have been removed.
22+
- Previously deprecated test data flag builder method `variation_for_all_users` has been removed.
23+
524
## [8.2.0] - 2023-10-17
625
### Deprecated:
726
- Creating an `LDContext` using the legacy user format has been deprecated and will be removed in the next major release. To learn more, read the [Contexts documentation](https://docs.launchdarkly.com/guides/flags/intro-contexts).

ldclient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "8.2.0"
1+
VERSION = "9.0.0"

0 commit comments

Comments
 (0)