datadog_lambda 6.95.0__tar.gz → 6.96.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/PKG-INFO +5 -2
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/README.md +3 -0
- datadog_lambda-6.96.0/datadog_lambda/version.py +1 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/pyproject.toml +2 -2
- datadog_lambda-6.95.0/datadog_lambda/version.py +0 -1
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/LICENSE +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/LICENSE-3rdparty.csv +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/NOTICE +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/__init__.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/api.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/cold_start.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/constants.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/dogstatsd.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/extension.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/handler.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/logger.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/metric.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/module_name.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/patch.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/stats_writer.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/statsd_writer.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/tag_object.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/tags.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/thread_stats_writer.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/tracing.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/trigger.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/wrapper.py +0 -0
- {datadog_lambda-6.95.0 → datadog_lambda-6.96.0}/datadog_lambda/xray.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: datadog_lambda
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.96.0
|
|
4
4
|
Summary: The Datadog AWS Lambda Library
|
|
5
5
|
Home-page: https://github.com/DataDog/datadog-lambda-python
|
|
6
6
|
License: Apache-2.0
|
|
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Provides-Extra: dev
|
|
19
19
|
Requires-Dist: boto3 (>=1.28.0,<2.0.0) ; extra == "dev"
|
|
20
20
|
Requires-Dist: datadog (>=0.41.0,<1.0.0)
|
|
21
|
-
Requires-Dist: ddtrace (>=2.
|
|
21
|
+
Requires-Dist: ddtrace (>=2.9.0)
|
|
22
22
|
Requires-Dist: flake8 (>=5.0.4,<6.0.0) ; extra == "dev"
|
|
23
23
|
Requires-Dist: pytest (>=8.0.0,<9.0.0) ; extra == "dev"
|
|
24
24
|
Requires-Dist: pytest-benchmark (>=4.0,<5.0) ; extra == "dev"
|
|
@@ -79,6 +79,9 @@ The Continuous Profiler works by spawning a thread which periodically wakes up a
|
|
|
79
79
|
|
|
80
80
|
## Major Version Notes
|
|
81
81
|
|
|
82
|
+
### 6.x / Layer version 95+
|
|
83
|
+
- The release changed how Lambda's traceID is hashed if the incoming payload contains Step Functions context object. This change only affects those who uses inject Step Functions context object into Lambda payload.
|
|
84
|
+
|
|
82
85
|
### 5.x / Layer version 86+
|
|
83
86
|
- Python3.7 support has been [deprecated](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) by AWS, and support removed from this library.
|
|
84
87
|
|
|
@@ -47,6 +47,9 @@ The Continuous Profiler works by spawning a thread which periodically wakes up a
|
|
|
47
47
|
|
|
48
48
|
## Major Version Notes
|
|
49
49
|
|
|
50
|
+
### 6.x / Layer version 95+
|
|
51
|
+
- The release changed how Lambda's traceID is hashed if the incoming payload contains Step Functions context object. This change only affects those who uses inject Step Functions context object into Lambda payload.
|
|
52
|
+
|
|
50
53
|
### 5.x / Layer version 86+
|
|
51
54
|
- Python3.7 support has been [deprecated](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html) by AWS, and support removed from this library.
|
|
52
55
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "6.96.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "datadog_lambda"
|
|
3
|
-
version = "6.
|
|
3
|
+
version = "6.96.0"
|
|
4
4
|
description = "The Datadog AWS Lambda Library"
|
|
5
5
|
authors = ["Datadog, Inc. <dev@datadoghq.com>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -27,7 +27,7 @@ classifiers = [
|
|
|
27
27
|
python = ">=3.8.0,<4"
|
|
28
28
|
datadog = ">=0.41.0,<1.0.0"
|
|
29
29
|
wrapt = "^1.11.2"
|
|
30
|
-
ddtrace = ">=2.
|
|
30
|
+
ddtrace = ">=2.9.0"
|
|
31
31
|
ujson = ">=5.9.0"
|
|
32
32
|
urllib3 = [
|
|
33
33
|
{version = "<2.0.0", python = "<3.11", optional = true},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "6.95.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|