Skip to content

Commit c06f80f

Browse files
LaunchDarklyReleaseBoteli-darklyLaunchDarklyCIbwoskow-ldgwhelanLD
authored
prepare 7.6.0 release (#192)
* comment * add end-to-end unit tests for proxy config * indents * add 3.8 build * image name * fail on SyntaxWarning * typo * command syntax * pin expiringdict dependency for Python 3.3 compatibility * add Windows CircleCI job * periods are no longer valid in CircleCI job names * syntax fix * install Python in Windows * set path * move command * turn off debug logging * Py3 in Windows * config param * rm redundant step * choco switch * refactor Linux jobs using CircleCI 2.1 features * set log level before anything else * rm Azure config * use yaml.safe_load() to avoid code execution vulnerability in file data source * Initial work on wrapper_name, wrapper_version, diagnostic config options and start of diagnostic config event creation. * Python 2 compat changes. * More event generation code and starting to integrate tracking diagnostic values. * Add minimum diagnostic recording interval. Fix diagnostic.py to be importable. Add more diagnostic event fields. * don't let user fall outside of last bucket in rollout * fixing conditional logic * Add docstrings for diagnostic configuration options. * fix off-by-1 error * avoid redundant dict lookups * add unit tests for basic bucketing logic and edge case * Stream init tracking. Feeding of accumulator object through SDK. Various fixes. * Track events in last batch. * Fix sdk version field, some stylistic improvements. * Last of diagnostic configuration object fields. * Fill out rest of platform fields. * Cleanup and failed stream initialization tracking. * Add diagnostic config option test. * Add tests for diagnostics.py * Testing rest of diagnostic fields. * Test that streaming update processor records successful and unsuccessful connection attempts in the diagnostic accumulator when available. * Improvements to testability of event processor. * Rest of event processor tests. * Remove janky reflection. * Test change to filesource optional test requirements. * [ch61092] Add event payload ID on event requests. * normalize data store type and OS name in diagnostic events * gitignore * copyedit to diagnostic event config property comment * fix spurious error after sending diagnostic event * make verify_ssl=False turn off certificate verification too (#129) * add more TLS config options and collect HTTP/HTTPS config options in a class (#130) * make stream retry/backoff/jitter behavior consistent with other SDKs + improve testing (#131) * streams shouldn't use the same read timeout as the rest of the SDK (#132) * implement our own retry logic & logging for event posts, don't use urllib3.Retry (#133) * remove support for indirect/patch and indirect/put * remove unused logic for individual flag/segment poll for indirect/patch * Ehaisley/84082/remove python2 (#136) * remove all references to six and remove queue fallback imports * remove NullHandler logger backwards compat * update circleci config to remove python 2.7 tests * remove ordereddict backwards compat * update setup.py to no longer list python 2.7 as compatible * no longer inherit from object for python 2 backwards compat * update readme and manifest to reflect python 2.7 removal * remove unicode type compatibility * remove 2.7 support from circleci * Allow authenticating with proxy This commit allows for authenticating with a proxy configured with the `http_proxy` environment variable. Authentication requires passing a header, and is not parsed by urllib3 from the proxy_url. * reimplement proxy tests for DRY and add test of proxy auth params * doc comment on auth params in proxy URL * add type hints to some of the public facing api. update some docs * Revert "add type hints to some of the public facing api." This reverts commit c35fa61. * Ehaisley/ch86857/type hints (#138) * add typehints to the public API * validate typehints in the public api and tests with mypy * remove all current deprecations (#139) * remove all currently deprecated classes, methods, arguments, and tests * also update semver usage to remove calls to deprecated functions and classes * remove global set_sdk_key, make SDK key required in Config (#140) * Removed the guides link * Pinning mypy and running it against different python versions (#141) * fix time zone mishandling that could make event debugging not work (#142) * fix 6.x build (#143) * fix time zone mishandling that could make event debugging not work (6.x) (#144) * prepare 6.13.3 release (#154) * Releasing version 6.13.3 * [ch99756] Add alias events (#145) * add support for experiment rollouts * fix unit test * address PR comments * use Releaser v2 config * Use newer docker images (#147) * Updates docs URLs * Add support for 3.10 (#150) * started work on FlagBuilder in as part of test data source implementation * finished FlagBuilder implementation and added FlagRuleBuilder implementation * added initial TestData interface and updated tests to not rely on test data internals * started data source implementation * changed FlagBuilder to public class; changed FlagBuilder attributes to be initialized in __init__ and eliminated use of try ... except: pass for handling empty attributes * (big segments 1) add public config/interface types * added implementation of test data source * docstring * formatting * ensure property doesn't return None * (big segments 2) implement evaluation, refactor eval logic & modules * linting * (big segments 3) implement big segment status tracking, wire up components * typing fixes * typing fixes * implement SSE contract tests * fix CI * fix CI again * fix CI * disable SSE tests in Python 3.5 * make test service port configurable * better SSE implementation that fixes linefeed and multi-byte char issues * fix constructor parameters in test service * comment * test improvements * rm obsolete default config logic * (big segments 4) implement big segment stores in Redis+DynamoDB, refactor db tests (#158) * converted ldclient.integrations module from file to directory; started moving public classes out of ldclient.impl.integrations.test_data* and instead into ldclient.integrations.test_data*; started adding TestData documentation * removed setup/teardown functions leftover from test scaffold * added TestData, FlagBuilder, and FlagRuleBuilder documentation; minor adjustments to implementation details * removed warning supression from TestData tests * fix big segments user hash algorithm to use SHA256 * update mypy version * updates to tests and related bug fixes * always cache Big Segment query result even if it's None * fix test assertion * lint * fix big segment ref format * fix big segments cache TTL being set to wrong value * fixed structure of fallthrough variation in result of FlagBuilder.build() * moved __test__ attribute into TestData class definition to prevent mypy from complaining about a missing class attribute * minor doc comment fix * Apply suggestions related to Sphinx docstring formatting from code review Co-authored-by: Eli Bishop <[email protected]> * fixed errors in the implementation of FlagBuilder's fallthrough_variation and off_variation when passing boolean variation values; updated tests to assert the expected behavior * added missing value_for_all_users() method to FlagBuilder class * Fix operator parsing errors (#169) * identify should not emit event if user key is empty (#164) * secondary should be treated as built-in attribute (#168) * URIs should have trailing slashes trimmed (#165) * all_flags_state should always include flag version (#166) * output event should not include a null prereqOf key (#167) * Account for traffic allocation on all flags (#171) * Add SDK contract tests (#170) * misc fixes to test data docs + add type hints * more type hints * remove some methods from the public test_data API * can't use "x|y" shortcut in typehints in older Pythons; use Union * fix misc type mistakes because I forgot to run the linter * update CONTRIBUTING.md and provide make targets * fixed a bug with flag rule clause builder internals; added unit test to verify rule evaluation * added ready argument to _TestDataSource class and indicated ready upon start to avoid delays in TestData initialization * Update contract tests to latest flask version (#176) Our contract tests depend on flask v1, which in turn depends on Jinja 2. Both of these are terribly dated and no longer supported. Jinja depends on markupsafe. markupsafe recently updated its code to no longer provide soft_unicode which in turn broke Jinja. Updating to the latest flask keeps all transitive dependencies better aligned and addresses this mismatch. * Adds link to Relay Proxy docs * Handle explicit None values in test payload (#179) The test harness may send explicit None values which should be treated the same as if the value was omitted entirely. * Fix "unhandled response" error in test harness (#180) When we return a `('', 204)` response from the flask handler, [Werkzeug intentionally removes the 'Content-Type' header][1], which causes the response to be created as a chunked response. The test harness is likely seeing a 204 response and isn't trying to read anything more from the stream. But since we are re-using connections, the next time it reads from the stream, it sees the `0\r\n\r\n` chunk and outputs an error: > 2022/04/20 14:23:39 Unsolicited response received on idle HTTP channel starting with "0\r\n\r\n"; err=<nil> Changing this response to 202 causes Werkzeug to return an empty response and silences the error. [1]: https://github.com/pallets/werkzeug/blob/560dd5f320bff318175f209595d42f5a80045417/src/werkzeug/wrappers/response.py#L540 * Exclude booleans when getting bucketable value (#181) When calculating a bucket, we get the bucketable value from the specified bucket by attribute. If this value is a string or an int, we can use it. Otherwise, we return None. Python considers a bool an instance of an int, which isn't what we want. So we need to add an explicit exclusion for this. * master -> main (#182) * Loosen restriction on expiringdict (#183) Originally this was pinned to a max version to deal with the incompatibility of Python 3.3 and the `typing` package. See [this PR][1]. Now that we now only support >=3.5, we can safely relax this restriction again. [1]: launchdarkly/python-server-sdk-private#120 * Fix mypy type checking (#184) A [customer requested][original-pr] that we start including a py.typed file in our repository. This would enable mypy to take advantage of our typehints. Unfortunately, this didn't completely solve the customers issue. A [second pr][second-pr] was opened to address the missing step of including the py.typed file in the `Manifest.in` file. However, this change alone is not sufficient. According to the [documentation][include_package_data], you must also include the `include_package_data=True` directive so that files specified in the `Manifest.in` file are included in distribution. [original-pr]: #166 [second-pr]: #172 [include_package_data]: https://setuptools.pypa.io/en/latest/userguide/datafiles.html#include-package-data * Add support for extra Redis connection parameters (#185) * Include wheel artifact when publishing package (#186) * skip tests that use a self-signed TLS cert in Python 3.7 * remove warn-level logging done for every Big Segments query (#190) * remove warn-level logging done for every Big Segments query * skip tests that use a self-signed TLS cert in Python 3.7 * update release metadata * Add application info support (#214) * Upgrade pip to fix failing CI build (#216) The CI build was failing because pip had an outdated list of available wheels for installation. Since it couldn't find a match, it was trying to build a package from source, which requires the rust compiler, which in turn isn't present on some of the docker images. By updating pip we get the updated list of available wheels, thereby allowing us to bypass source building and the need for the rust compiler entirely. --------- Co-authored-by: Eli Bishop <[email protected]> Co-authored-by: LaunchDarklyCI <[email protected]> Co-authored-by: Ben Woskow <[email protected]> Co-authored-by: Gavin Whelan <[email protected]> Co-authored-by: Elliot <[email protected]> Co-authored-by: Gabor Angeli <[email protected]> Co-authored-by: Elliot <[email protected]> Co-authored-by: Ben Woskow <[email protected]> Co-authored-by: LaunchDarklyCI <[email protected]> Co-authored-by: hroederld <[email protected]> Co-authored-by: Robert J. Neal <[email protected]> Co-authored-by: Robert J. Neal <[email protected]> Co-authored-by: Ember Stevens <[email protected]> Co-authored-by: ember-stevens <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]> Co-authored-by: charukiewicz <[email protected]> Co-authored-by: LaunchDarklyReleaseBot <[email protected]> Co-authored-by: Christian Charukiewicz <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]>
1 parent 92f86e9 commit c06f80f

File tree

13 files changed

+150
-10
lines changed

13 files changed

+150
-10
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
- run:
6161
name: install requirements
6262
command: |
63+
pip install --upgrade pip
6364
pip install -r test-requirements.txt;
6465
pip install -r test-filesource-optional-requirements.txt;
6566
pip install -r consul-requirements.txt;

.ldrelease/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ publications:
1212

1313
branches:
1414
- name: main
15-
description: 7.x
15+
description: 8.x
16+
- name: 7.x
1617
- name: 6.x
1718

1819
jobs:

contract-tests/client_entity.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ def __init__(self, tag, config):
1212
self.log = logging.getLogger(tag)
1313
opts = {"sdk_key": config["credential"]}
1414

15+
tags = config.get('tags', {})
16+
if tags:
17+
opts['application'] = {
18+
'id': tags.get('applicationId', ''),
19+
'version': tags.get('applicationVersion', ''),
20+
}
21+
1522
if config.get("streaming") is not None:
1623
streaming = config["streaming"]
1724
if streaming.get("baseUri") is not None:

contract-tests/service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def status():
6363
'all-flags-with-reasons',
6464
'all-flags-client-side-only',
6565
'all-flags-details-only-for-tracked-flags',
66+
'tags',
6667
]
6768
}
6869
return (json.dumps(body), 200, {'Content-type': 'application/json'})

ldclient/config.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import Optional, Callable, List, Any, Set
88

99
from ldclient.feature_store import InMemoryFeatureStore
10-
from ldclient.util import log
10+
from ldclient.util import log, validate_application_info
1111
from ldclient.interfaces import BigSegmentStore, EventProcessor, FeatureStore, UpdateProcessor, FeatureRequester
1212

1313
GET_LATEST_FEATURES_PATH = '/sdk/latest-flags'
@@ -173,7 +173,8 @@ def __init__(self,
173173
wrapper_name: Optional[str]=None,
174174
wrapper_version: Optional[str]=None,
175175
http: HTTPConfig=HTTPConfig(),
176-
big_segments: Optional[BigSegmentsConfig]=None):
176+
big_segments: Optional[BigSegmentsConfig]=None,
177+
application: Optional[dict]=None):
177178
"""
178179
:param sdk_key: The SDK key for your LaunchDarkly account. This is always required.
179180
:param base_uri: The base URL for the LaunchDarkly server. Most users should use the default
@@ -239,6 +240,7 @@ def __init__(self,
239240
servers.
240241
:param http: Optional properties for customizing the client's HTTP/HTTPS behavior. See
241242
:class:`HTTPConfig`.
243+
:param application: Optional properties for setting application metadata. See :py:attr:`~application`
242244
"""
243245
self.__sdk_key = sdk_key
244246

@@ -271,6 +273,7 @@ def __init__(self,
271273
self.__wrapper_version = wrapper_version
272274
self.__http = http
273275
self.__big_segments = BigSegmentsConfig() if not big_segments else big_segments
276+
self.__application = validate_application_info(application or {}, log)
274277

275278
def copy_with_new_sdk_key(self, new_sdk_key: str) -> 'Config':
276279
"""Returns a new ``Config`` instance that is the same as this one, except for having a different SDK key.
@@ -441,3 +444,16 @@ def big_segments(self) -> BigSegmentsConfig:
441444
def _validate(self):
442445
if self.offline is False and self.sdk_key is None or self.sdk_key == '':
443446
log.warning("Missing or blank sdk_key.")
447+
448+
@property
449+
def application(self) -> dict:
450+
"""
451+
An object that allows configuration of application metadata.
452+
453+
Application metadata may be used in LaunchDarkly analytics or other
454+
product features, but does not affect feature flag evaluations.
455+
456+
If you want to set non-default values for any of these fields, provide
457+
the appropriately configured dict to the {Config} object.
458+
"""
459+
return self.__application

ldclient/impl/big_segments.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def get_user_membership(self, user_key: str) -> Tuple[Optional[dict], str]:
8181
membership = self.__cache.get(user_key)
8282
if membership is None:
8383
user_hash = _hash_for_user_key(user_key)
84-
log.warn("*** querying Big Segments for user hash: %s" % user_hash)
8584
try:
8685
membership = self.__store.get_membership(user_hash)
8786
if membership is None:

ldclient/impl/http.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,34 @@
33
from os import environ
44
import urllib3
55

6+
def _application_header_value(application: dict) -> str:
7+
parts = []
8+
id = application.get('id', '')
9+
version = application.get('version', '')
10+
11+
if id:
12+
parts.append("application-id/%s" % id)
13+
14+
if version:
15+
parts.append("application-version/%s" % version)
16+
17+
return " ".join(parts)
18+
19+
620
def _base_headers(config):
721
headers = {'Authorization': config.sdk_key or '',
822
'User-Agent': 'PythonClient/' + VERSION}
23+
24+
app_value = _application_header_value(config.application)
25+
if app_value:
26+
headers['X-LaunchDarkly-Tags'] = app_value
27+
928
if isinstance(config.wrapper_name, str) and config.wrapper_name != "":
1029
wrapper_version = ""
1130
if isinstance(config.wrapper_version, str) and config.wrapper_version != "":
1231
wrapper_version = "/" + config.wrapper_version
1332
headers.update({'X-LaunchDarkly-Wrapper': config.wrapper_name + wrapper_version})
33+
1434
return headers
1535

1636
def _http_factory(config):

ldclient/util.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
# currently excluded from documentation - see docs/README.md
55

66
import logging
7+
import re
78
from os import environ
89
import sys
910
import urllib3
1011

12+
from typing import Any
1113
from ldclient.impl.http import HTTPFactory, _base_headers
1214

1315
log = logging.getLogger(sys.modules[__name__].__name__)
@@ -25,6 +27,26 @@
2527

2628
_retryable_statuses = [400, 408, 429]
2729

30+
def validate_application_info(application: dict, logger: logging.Logger) -> dict:
31+
return {
32+
"id": validate_application_value(application.get("id", ""), "id", logger),
33+
"version": validate_application_value(application.get("version", ""), "version", logger),
34+
}
35+
36+
def validate_application_value(value: Any, name: str, logger: logging.Logger) -> str:
37+
if not isinstance(value, str):
38+
return ""
39+
40+
if len(value) > 64:
41+
logger.warning('Value of application[%s] was longer than 64 characters and was discarded' % name)
42+
return ""
43+
44+
if re.search(r"[^a-zA-Z0-9._-]", value):
45+
logger.warning('Value of application[%s] contained invalid characters and was discarded' % name)
46+
return ""
47+
48+
return value
49+
2850
def _headers(config):
2951
base_headers = _base_headers(config)
3052
base_headers.update({'Content-Type': "application/json"})

testing/test_config.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from ldclient.config import Config
2+
import pytest
23

34

45
def test_copy_config():
@@ -40,3 +41,29 @@ def test_trims_trailing_slashes_on_uris():
4041
assert config.base_uri == "https://launchdarkly.com"
4142
assert config.events_uri == "https://docs.launchdarkly.com/bulk"
4243
assert config.stream_base_uri == "https://blog.launchdarkly.com"
44+
45+
def application_can_be_set_and_read():
46+
application = {"id": "my-id", "version": "abcdef"}
47+
config = Config(sdk_key = "SDK_KEY", application = application)
48+
assert config.application == {"id": "my-id", "version": "abcdef"}
49+
50+
def application_can_handle_non_string_values():
51+
application = {"id": 1, "version": 2}
52+
config = Config(sdk_key = "SDK_KEY", application = application)
53+
assert config.application == {"id": "1", "version": "2"}
54+
55+
def application_will_ignore_invalid_keys():
56+
application = {"invalid": 1, "key": 2}
57+
config = Config(sdk_key = "SDK_KEY", application = application)
58+
assert config.application == {"id": "", "version": ""}
59+
60+
@pytest.fixture(params = [
61+
" ",
62+
"@",
63+
":",
64+
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789._-a"
65+
])
66+
def application_will_drop_invalid_values(value):
67+
application = {"id": value, "version": value}
68+
config = Config(sdk_key = "SDK_KEY", application = application)
69+
assert config.application == {"id": "", "version": ""}

testing/test_event_processor.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,22 @@ def test_wrapper_header_sent_without_version():
484484

485485
assert mock_http.request_headers.get('X-LaunchDarkly-Wrapper') == "Flask"
486486

487+
def test_application_header_not_sent_when_not_set():
488+
with DefaultTestProcessor() as ep:
489+
ep.send_event({ 'kind': 'identify', 'user': user })
490+
ep.flush()
491+
ep._wait_until_inactive()
492+
493+
assert mock_http.request_headers.get('X-LaunchDarkly-Tags') is None
494+
495+
def test_application_header_sent_when_set():
496+
with DefaultTestProcessor(wrapper_name = "Flask", application = {"id": "my-id", "version": "my-version"}) as ep:
497+
ep.send_event({ 'kind': 'identify', 'user': user })
498+
ep.flush()
499+
ep._wait_until_inactive()
500+
501+
assert mock_http.request_headers.get('X-LaunchDarkly-Tags') == "application-id/my-id application-version/my-version"
502+
487503
def test_event_schema_set_on_event_send():
488504
with DefaultTestProcessor() as ep:
489505
ep.send_event({ 'kind': 'identify', 'user': user })

0 commit comments

Comments
 (0)