Skip to content

Commit

Permalink
some more version updates, plus some revert
Browse files Browse the repository at this point in the history
  • Loading branch information
srprash committed Jul 3, 2024
1 parent a788941 commit 90e65be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions THIRD-PARTY-LICENSES
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


** opentelemetry-python; version 0.46b0 -- https://github.com/open-telemetry/opentelemetry-python
** opentelemetry-python-contrib; version 0.46b0 -- https://github.com/open-telemetry/opentelemetry-python-contrib
** opentelemetry-python; version 1.22.0 -- https://github.com/open-telemetry/opentelemetry-python
** opentelemetry-python-contrib; version 0.43b0 -- https://github.com/open-telemetry/opentelemetry-python-contrib

Apache License
Version 2.0, January 2004
Expand Down
4 changes: 2 additions & 2 deletions contract-tests/images/mock-collector/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
grpcio==1.60.1
opentelemetry-proto==1.22.0
opentelemetry-sdk==1.22.0
opentelemetry-proto==1.25.0
opentelemetry-sdk==1.25.0
protobuf==4.25.2
typing-extensions==4.9.0
4 changes: 2 additions & 2 deletions contract-tests/tests/test/amazon/base/contract_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def setUpClass(cls) -> None:
cls.addClassCleanup(cls.class_tear_down)
cls.network = NetworkCollection(client=DockerClient()).create(NETWORK_NAME)
mock_collector_networking_config: Dict[str, EndpointConfig] = {
NETWORK_NAME: EndpointConfig(version="1.22", aliases=[_MOCK_COLLECTOR_ALIAS])
NETWORK_NAME: EndpointConfig(version="1.25", aliases=[_MOCK_COLLECTOR_ALIAS])
}
cls.mock_collector: DockerContainer = (
DockerContainer(_MOCK_COLLECTOR_NAME)
Expand Down Expand Up @@ -82,7 +82,7 @@ def class_tear_down(cls) -> None:
def setUp(self) -> None:
self.addCleanup(self.tear_down)
application_networking_config: Dict[str, EndpointConfig] = {
NETWORK_NAME: EndpointConfig(version="1.22", aliases=self.get_application_network_aliases())
NETWORK_NAME: EndpointConfig(version="1.25", aliases=self.get_application_network_aliases())
}
self.application: DockerContainer = (
DockerContainer(self.get_application_image_name())
Expand Down
2 changes: 1 addition & 1 deletion contract-tests/tests/test/amazon/botocore/botocore_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_application_image_name() -> str:
def set_up_dependency_container(cls):
local_stack_networking_config: Dict[str, EndpointConfig] = {
NETWORK_NAME: EndpointConfig(
version="1.22",
version="1.25",
aliases=[
"localstack",
"s3.localstack",
Expand Down

0 comments on commit 90e65be

Please sign in to comment.