Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Tags: envoy/dd-trace-py

Tags

v0.45.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
v0.45 documentation fixes (DataDog#1885)

v0.45.0rc1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: add troubleshooting section (DataDog#1800)

* add troubleshooting section

* add no traces and support section

* fix typo

v0.44.0

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
update docs for TwL (DataDog#1751)

Co-authored-by: Tahir H. Butt <tahir.butt@datadoghq.com>

v0.44.0rc1

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
update docs for TwL (DataDog#1751)

Co-authored-by: Tahir H. Butt <tahir.butt@datadoghq.com>

v0.43.1

Partially verified

This commit is signed with the committer’s verified signature.
Kyle-Verhoog’s contribution has been verified via GPG key.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
feat(dbapi): support Connection context management usage (DataDog#1762)

* fix(psycopg2): add test for connection used with contextmanager

* dbapi: handle Connection __enter__

* psycopg2 < 2.5 connection doesn't support context management

* add dbapi to wordlist

* add tests for mysqldb

* add dbapi tests

* Update ddtrace/contrib/dbapi/__init__.py

Co-authored-by: Julien Danjou <julien@danjou.info>

* add some doc strings

* add test cases for other dbapi libraries

* add test for no context manager

* update comment

Co-authored-by: Kyle Verhoog <kyle.verhoog@datadoghq.com>
Co-authored-by: Julien Danjou <julien@danjou.info>
Co-authored-by: Kyle Verhoog <kyle@verhoog.ca>

v0.43.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
update changelog (DataDog#1706)

v0.43.0rc1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
test(profiling): disable tracer startup logs (DataDog#1704)

They're not useful and slow down the tests.

v0.42.0

Unverified

This user has not yet uploaded their public signing key.
fix: celery and botocore tests (DataDog#1649)

## Celery

We were specifying celery==4.3 and `kombu==4.4` to run our test cases against.

celery==4.3 has the [dependencies](https://github.com/celery/celery/blob/v4.3.0/requirements/default.txt):
- pytz>dev
- billiard>=3.6.0,<4.0
- kombu>=4.4.0,<5.0
- vine>=1.3.0

Celery is installed first which installs `vine==5.0.0`, the latest version.

`kombu==4.4` has the [dependencies](https://github.com/celery/kombu/blob/v4.4.0/requirements/default.txt)
- amqp>=2.4.0,<3.0

Which installs `amqp==2.6.1` which has the [dependency](https://github.com/celery/py-amqp/blob/v2.6.1/requirements/default.txt)

- vine>=1.1.3, <5.0.0a1

which conflicts with the `vine==5.0.0` installed above 😕 🤦 

This is solved by explicitly stating vine==1.3 as a dependency of celery

## Botocore
The botocore tests had an issue where for some reason the region now has to be explicitly included to `create_bucket` 🤷 


* botocore: specify region

* celery: pin vine version

v0.42.0rc2

Unverified

This user has not yet uploaded their public signing key.
fix: celery and botocore tests (DataDog#1649)

## Celery

We were specifying celery==4.3 and `kombu==4.4` to run our test cases against.

celery==4.3 has the [dependencies](https://github.com/celery/celery/blob/v4.3.0/requirements/default.txt):
- pytz>dev
- billiard>=3.6.0,<4.0
- kombu>=4.4.0,<5.0
- vine>=1.3.0

Celery is installed first which installs `vine==5.0.0`, the latest version.

`kombu==4.4` has the [dependencies](https://github.com/celery/kombu/blob/v4.4.0/requirements/default.txt)
- amqp>=2.4.0,<3.0

Which installs `amqp==2.6.1` which has the [dependency](https://github.com/celery/py-amqp/blob/v2.6.1/requirements/default.txt)

- vine>=1.1.3, <5.0.0a1

which conflicts with the `vine==5.0.0` installed above 😕 🤦 

This is solved by explicitly stating vine==1.3 as a dependency of celery

## Botocore
The botocore tests had an issue where for some reason the region now has to be explicitly included to `create_bucket` 🤷 


* botocore: specify region

* celery: pin vine version

v0.41.2

Verified

This commit was signed with the committer’s verified signature.
fix(django): trace mro chain for Django views (DataDog#1625)