Skip to content

Commit f2869c7

Browse files
authored
Prep v2.1.0 -- bump upstream to 1.30.0 and 0.51b0 (#607)
* Bump upstream versions to 1.30.0 and 0.51b0
1 parent f80d24f commit f2869c7

File tree

8 files changed

+20
-15
lines changed

8 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 2.1.0 - 2025-02-18
6+
- Upgrade Otel dependencies to 1.30.0 / 0.51b0
7+
58
## 2.0.0 - 2025-01-28
69
- See [VERSION_2_RELEASE_NOTES.md](VERSION_2_RELEASE_NOTES.md)
710

docker/example-instrumentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ spec:
1111
env:
1212
- name: OTEL_EXPORTER_OTLP_PROTOCOL
1313
value: http/protobuf
14-
image: "splunk-otel-instrumentation-python:v2.0.0"
14+
image: "splunk-otel-instrumentation-python:v2.1.0"

docker/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
splunk-opentelemetry==2.0.0
1+
splunk-opentelemetry==2.1.0

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ classifiers = [
2323
"Programming Language :: Python :: Implementation :: PyPy",
2424
]
2525
dependencies = [
26-
"opentelemetry-api==1.29.0",
27-
"opentelemetry-sdk==1.29.0",
28-
"opentelemetry-propagator-b3==1.29.0",
29-
"opentelemetry-exporter-otlp-proto-grpc==1.29.0",
30-
"opentelemetry-exporter-otlp-proto-http==1.29.0",
31-
"opentelemetry-instrumentation==0.50b0",
32-
"opentelemetry-instrumentation-system-metrics==0.50b0",
33-
"opentelemetry-semantic-conventions==0.50b0",
26+
"opentelemetry-api==1.30.0",
27+
"opentelemetry-sdk==1.30.0",
28+
"opentelemetry-propagator-b3==1.30.0",
29+
"opentelemetry-exporter-otlp-proto-grpc==1.30.0",
30+
"opentelemetry-exporter-otlp-proto-http==1.30.0",
31+
"opentelemetry-instrumentation==0.51b0",
32+
"opentelemetry-instrumentation-system-metrics==0.51b0",
33+
"opentelemetry-semantic-conventions==0.51b0",
3434
]
3535

3636
[project.urls]

src/splunk_otel/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
__version__ = "2.0.0"
16+
__version__ = "2.1.0"

tests/ott_lib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
from opentelemetry import trace
55

6+
UPSTREAM_PRERELEASE_VERSION = "0.51b0"
7+
68

79
def project_path():
810
return str(Path(__file__).parent.parent)

tests/ott_logging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22

33
from opentelemetry import trace
4-
from ott_lib import project_path
4+
from ott_lib import UPSTREAM_PRERELEASE_VERSION, project_path
55

66
MESSAGE = "uh oh!"
77
LOGGER_NAME = "logging-ott"
@@ -17,7 +17,7 @@
1717

1818
class LoggingOtelTest:
1919
def requirements(self):
20-
return project_path(), "opentelemetry-instrumentation-logging==0.49b2"
20+
return project_path(), f"opentelemetry-instrumentation-logging=={UPSTREAM_PRERELEASE_VERSION}"
2121

2222
def environment_variables(self):
2323
return {

tests/ott_propagator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Mapping, Optional, Sequence
22

33
from oteltest import OtelTest, Telemetry
4-
from ott_lib import project_path
4+
from ott_lib import UPSTREAM_PRERELEASE_VERSION, project_path
55

66
PORT = 8888
77

@@ -35,7 +35,7 @@ def requirements(self) -> Sequence[str]:
3535
project_path(),
3636
"oteltest",
3737
"flask",
38-
"opentelemetry-instrumentation-flask==0.50b0",
38+
f"opentelemetry-instrumentation-flask=={UPSTREAM_PRERELEASE_VERSION}",
3939
]
4040

4141
def wrapper_command(self) -> str:

0 commit comments

Comments
 (0)