Skip to content

Commit 7581c30

Browse files
authored
Merge branch 'main' into feature/asyncio-instrumentation
2 parents d3facc4 + 54be160 commit 7581c30

File tree

125 files changed

+1220
-314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1220
-314
lines changed

.github/component_owners.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ components:
6464

6565
instrumentation/opentelemetry-instrumentation-requests:
6666
- ocelotl
67+
68+
instrumentation/opentelemetry-instrumentation-cassandra:
69+
- mattcontinisio

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'release/*'
77
pull_request:
88
env:
9-
CORE_REPO_SHA: c41b6bf29e9486a71ba1c40cd0ea35a03b2f7489
9+
CORE_REPO_SHA: 0ef76a5cc39626f783416ca75e43556e2bb2739d
1010

1111
jobs:
1212
build:

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## Version 1.20.0/0.41b0 (2023-09-01)
11+
1012
### Fixed
1113

1214
- `opentelemetry-instrumentation-asgi` Fix UnboundLocalError local variable 'start' referenced before assignment
1315
([#1889](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1889))
1416
- Fixed union typing error not compatible with Python 3.7 introduced in `opentelemetry-util-http`, fix tests introduced by patch related to sanitize method for wsgi
1517
([#1913](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1913))
18+
- `opentelemetry-instrumentation-celery` Unwrap Celery's `ExceptionInfo` errors and report the actual exception that was raised. ([#1863](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1863))
1619

1720
### Added
1821

@@ -36,6 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3639

3740
### Added
3841

42+
- Add instrumentor support for cassandra and scylla
43+
([#1902](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1902))
3944
- Add instrumentor support for mysqlclient
4045
([#1744](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1744))
4146
- Fix async redis clients not being traced correctly
@@ -61,6 +66,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6166
- Add optional distro and configurator selection for auto-instrumentation
6267
([#1823](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1823))
6368

69+
### Added
70+
- `opentelemetry-instrumentation-kafka-python` Add instrumentation to `consume` method
71+
([#1786](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1786))
72+
6473
## Version 1.18.0/0.39b0 (2023-05-10)
6574

6675
- Update runtime metrics to follow semantic conventions

_template/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.41b0.dev"
15+
__version__ = "0.42b0.dev"

docs-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ asyncpg>=0.12.0
2525
boto~=2.0
2626
botocore~=1.0
2727
boto3~=1.0
28+
cassandra-driver~=3.25
2829
celery>=4.0
2930
confluent-kafka>= 1.8.2,<= 2.2.0
3031
elasticsearch>=2.0,<9.0
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
OpenTelemetry Cassandra Instrumentation
2+
=======================================
3+
4+
.. automodule:: opentelemetry.instrumentation.cassandra
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sortfirst=
1616
ext/*
1717

1818
[stable]
19-
version=1.20.0.dev
19+
version=1.21.0.dev
2020

2121
packages=
2222
opentelemetry-sdk
@@ -34,7 +34,7 @@ packages=
3434
opentelemetry-api
3535

3636
[prerelease]
37-
version=0.41b0.dev
37+
version=0.42b0.dev
3838

3939
packages=
4040
all

exporter/opentelemetry-exporter-prometheus-remote-write/src/opentelemetry/exporter/prometheus_remote_write/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.41b0.dev"
15+
__version__ = "0.42b0.dev"

exporter/opentelemetry-exporter-richconsole/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
dependencies = [
2828
"opentelemetry-api ~= 1.12",
2929
"opentelemetry-sdk ~= 1.12",
30-
"opentelemetry-semantic-conventions == 0.41b0.dev",
30+
"opentelemetry-semantic-conventions == 0.42b0.dev",
3131
"rich>=10.0.0",
3232
]
3333

exporter/opentelemetry-exporter-richconsole/src/opentelemetry/exporter/richconsole/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.41b0.dev"
15+
__version__ = "0.42b0.dev"

0 commit comments

Comments
 (0)