Skip to content

Commit 3bad4a6

Browse files
[FSSDK-8583] chore: prepare for 5.0 (#431)
* bump version * update supported version * run unit tests on 3.12, pypy 3.8 and 3.9 * fix license
1 parent f778989 commit 3bad4a6

File tree

7 files changed

+90
-26
lines changed

7 files changed

+90
-26
lines changed

.github/workflows/python.yml

+20-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v3
32-
- name: Set up Python 3.11
32+
- name: Set up Python 3.12
3333
uses: actions/setup-python@v4
3434
with:
35-
python-version: '3.11'
35+
python-version: '3.12'
3636
# flake8 version should be same as the version in requirements/test.txt
3737
# to avoid lint errors on CI
3838
- name: pip install flak8
@@ -64,7 +64,15 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
python-version: ["pypy-3.10-v7.3.12", "3.8", "3.9", "3.10", "3.11"]
67+
python-version:
68+
- "pypy-3.8"
69+
- "pypy-3.9"
70+
- "pypy-3.10"
71+
- "3.8"
72+
- "3.9"
73+
- "3.10"
74+
- "3.11"
75+
- "3.12"
6876
steps:
6977
- uses: actions/checkout@v3
7078
- name: Set up Python ${{ matrix.python-version }}
@@ -84,7 +92,15 @@ jobs:
8492
strategy:
8593
fail-fast: false
8694
matrix:
87-
python-version: ["3.8", "3.9", "3.10", "3.11"]
95+
python-version:
96+
- "pypy-3.8"
97+
- "pypy-3.9"
98+
- "pypy-3.10"
99+
- "3.8"
100+
- "3.9"
101+
- "3.10"
102+
- "3.11"
103+
- "3.12"
88104
steps:
89105
- uses: actions/checkout@v3
90106
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

+63-17
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,85 @@
11
# Optimizely Python SDK Changelog
22

3+
## 5.0.0
4+
January 18th, 2024
5+
6+
### New Features
7+
8+
The 5.0.0 release introduces a new primary feature, [Advanced Audience Targeting]( https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting) enabled through integration with [Optimizely Data Platform (ODP)](https://docs.developers.optimizely.com/optimizely-data-platform/docs) ([#395](https://github.com/optimizely/python-sdk/pull/395), [#398](https://github.com/optimizely/python-sdk/pull/398), [#402](https://github.com/optimizely/python-sdk/pull/402), [#403](https://github.com/optimizely/python-sdk/pull/403), [#405](https://github.com/optimizely/python-sdk/pull/405)).
9+
10+
You can use ODP, a high-performance [Customer Data Platform (CDP)]( https://www.optimizely.com/optimization-glossary/customer-data-platform/), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.
11+
12+
With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Optimizely Customer Success Manager.
13+
14+
This version includes the following changes:
15+
16+
* New API added to `OptimizelyUserContext`:
17+
18+
* `fetchQualifiedSegments()`: this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.
19+
* When an `OptimizelyUserContext` is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.
20+
21+
* New APIs added to `OptimizelyClient`:
22+
23+
* `sendOdpEvent()`: customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.
24+
25+
For details, refer to our documentation pages:
26+
27+
* [Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting)
28+
* [Server SDK Support](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-for-server-side-sdks)
29+
* [Initialize Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/initialize-sdk-python)
30+
* [OptimizelyUserContext Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/wip-fsodp-optimizelyusercontext-python)
31+
* [Advanced Audience Targeting segment qualification methods](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-segment-qualification-methods-python)
32+
* [Send Optimizely Data Platform data using Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/send-odp-data-using-advanced-audience-targeting-python)
33+
34+
### Logging
35+
36+
* Add warning to polling intervals below 30 seconds ([#428](https://github.com/optimizely/python-sdk/pull/428))
37+
* Add warning to duplicate experiment keys ([#430](https://github.com/optimizely/python-sdk/pull/430))
38+
39+
### Enhancements
40+
* Added `py.typed` to enable external usage of mypy type annotations.
41+
42+
### Breaking Changes
43+
* Updated minimum supported Python version from 3.7 -> 3.8
44+
* `ODPManager` in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most `ODPManager` functions will be ignored. If needed, `ODPManager` can be disabled when `OptimizelyClient` is instantiated.
45+
* `BaseConfigManager` abstract class now requires a get_sdk_key method. ([#413](https://github.com/optimizely/python-sdk/pull/413))
46+
* `PollingConfigManager` requires either the sdk_key parameter or datafile containing an sdkKey. ([#413](https://github.com/optimizely/python-sdk/pull/413))
47+
* Asynchronous `BatchEventProcessor` is now the default event processor. ([#378](https://github.com/optimizely/python-sdk/pull/378))
48+
349
## 5.0.0-beta
450
Apr 28th, 2023
551

6-
### New Features
52+
### New Features
753

8-
The 5.0.0-beta release introduces a new primary feature, [Advanced Audience Targeting]( https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting) enabled through integration with [Optimizely Data Platform (ODP)](https://docs.developers.optimizely.com/optimizely-data-platform/docs) ([#395](https://github.com/optimizely/python-sdk/pull/395), [#398](https://github.com/optimizely/python-sdk/pull/398), [#402](https://github.com/optimizely/python-sdk/pull/402), [#403](https://github.com/optimizely/python-sdk/pull/403), [#405](https://github.com/optimizely/python-sdk/pull/405)).
54+
The 5.0.0-beta release introduces a new primary feature, [Advanced Audience Targeting]( https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting) enabled through integration with [Optimizely Data Platform (ODP)](https://docs.developers.optimizely.com/optimizely-data-platform/docs) ([#395](https://github.com/optimizely/python-sdk/pull/395), [#398](https://github.com/optimizely/python-sdk/pull/398), [#402](https://github.com/optimizely/python-sdk/pull/402), [#403](https://github.com/optimizely/python-sdk/pull/403), [#405](https://github.com/optimizely/python-sdk/pull/405)).
955

10-
You can use ODP, a high-performance [Customer Data Platform (CDP)]( https://www.optimizely.com/optimization-glossary/customer-data-platform/), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.
56+
You can use ODP, a high-performance [Customer Data Platform (CDP)]( https://www.optimizely.com/optimization-glossary/customer-data-platform/), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.
1157

12-
With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Optimizely Customer Success Manager.
58+
With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Optimizely Customer Success Manager.
1359

14-
This version includes the following changes:
60+
This version includes the following changes:
1561

16-
* New API added to `OptimizelyUserContext`:
62+
* New API added to `OptimizelyUserContext`:
1763

1864
* `fetchQualifiedSegments()`: this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.
19-
* When an `OptimizelyUserContext` is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.
65+
* When an `OptimizelyUserContext` is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.
2066

21-
* New APIs added to `OptimizelyClient`:
67+
* New APIs added to `OptimizelyClient`:
2268

2369
* `sendOdpEvent()`: customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.
2470

25-
For details, refer to our documentation pages:
71+
For details, refer to our documentation pages:
2672

27-
* [Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting)
28-
* [Server SDK Support](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-for-server-side-sdks)
29-
* [Initialize Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/initialize-sdk-python)
30-
* [OptimizelyUserContext Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/wip-fsodp-optimizelyusercontext-python)
31-
* [Advanced Audience Targeting segment qualification methods](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-segment-qualification-methods-python)
32-
* [Send Optimizely Data Platform data using Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/send-odp-data-using-advanced-audience-targeting-python)
73+
* [Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting)
74+
* [Server SDK Support](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-for-server-side-sdks)
75+
* [Initialize Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/initialize-sdk-python)
76+
* [OptimizelyUserContext Python SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/wip-fsodp-optimizelyusercontext-python)
77+
* [Advanced Audience Targeting segment qualification methods](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-segment-qualification-methods-python)
78+
* [Send Optimizely Data Platform data using Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/send-odp-data-using-advanced-audience-targeting-python)
3379

34-
### Breaking Changes
80+
### Breaking Changes
3581

36-
* `ODPManager` in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most `ODPManager` functions will be ignored. If needed, `ODPManager` can be disabled when `OptimizelyClient` is instantiated.
82+
* `ODPManager` in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most `ODPManager` functions will be ignored. If needed, `ODPManager` can be disabled when `OptimizelyClient` is instantiated.
3783
* `BaseConfigManager` abstract class now requires a get_sdk_key method. ([#413](https://github.com/optimizely/python-sdk/pull/413))
3884
* `PollingConfigManager` requires either the sdk_key parameter or datafile containing an sdkKey. ([#413](https://github.com/optimizely/python-sdk/pull/413))
3985
* Asynchronous `BatchEventProcessor` is now the default event processor. ([#378](https://github.com/optimizely/python-sdk/pull/378))

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2016 Optimizely
189+
© Optimizely 2016
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Refer to the [Python SDK's developer documentation](https://docs.developers.opti
1717

1818
### Requirements
1919

20+
Version `5.0+`: Python 3.8+, PyPy 3.8+
21+
2022
Version `4.0+`: Python 3.7+, PyPy 3.7+
2123

2224
Version `3.0+`: Python 2.7+, PyPy 3.4+

optimizely/odp/odp_segment_api_manager.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ def fetch_segments(self, api_key: str, api_host: str, user_key: str,
138138
'{audiences(subset: $audiences) {edges {node {name state}}}}}',
139139
'variables': {
140140
'userId': str(user_value),
141-
'audiences': segments_to_check
142-
}
141+
'audiences': segments_to_check}
143142
}
144143

145144
try:

optimizely/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14-
version_info = (5, 0, '0-beta')
14+
version_info = (5, 0, 0)
1515
__version__ = '.'.join(str(v) for v in version_info)

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@
4747
'License :: OSI Approved :: Apache Software License',
4848
'Operating System :: OS Independent',
4949
'Programming Language :: Python',
50-
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
5251
'Programming Language :: Python :: 3.9',
5352
'Programming Language :: Python :: 3.10',
53+
'Programming Language :: Python :: 3.11',
54+
'Programming Language :: Python :: 3.12',
5455
],
5556
packages=find_packages(exclude=['docs', 'tests']),
5657
extras_require={'test': TEST_REQUIREMENTS},

0 commit comments

Comments
 (0)