Skip to content

Commit 6f3008a

Browse files
[release/v1.28.x-0.49bx] Prepare release 1.28.1/0.49b1 (#4262)
1 parent 15289cb commit 6f3008a

File tree

36 files changed

+203
-59
lines changed

36 files changed

+203
-59
lines changed

.github/workflows/check-links.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@ jobs:
2323
check-links:
2424
runs-on: ubuntu-latest
2525
needs: changedfiles
26-
if: ${{needs.changedfiles.outputs.md}}
26+
if: |
27+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
28+
&& ${{needs.changedfiles.outputs.md}}
2729
steps:
2830
- name: Checkout Repo
2931
uses: actions/checkout@v4
3032
with:
3133
fetch-depth: 0
3234

3335
- name: Install markdown-link-check
34-
run: npm install -g markdown-link-check
36+
run: npm install -g markdown-link-check@v3.12.2
3537

3638
- name: Run markdown-link-check
3739
run: |

.github/workflows/contrib_0.yml

+153-13
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: ${{ github.sha }}
14-
CONTRIB_REPO_SHA: 925d8442c91ab7a89296ab20eb7cca688d4ea1cd
14+
CONTRIB_REPO_SHA: c65e27333e7c7b6ea2e5eb56191c16f024430881
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:
1818

19-
py38-test-instrumentation-openai-v2:
20-
name: instrumentation-openai-v2
19+
py38-test-instrumentation-openai-v2-0:
20+
name: instrumentation-openai-v2-0
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -42,7 +42,35 @@ jobs:
4242
run: pip install tox
4343

4444
- name: Run tests
45-
run: tox -e py38-test-instrumentation-openai-v2 -- -ra
45+
run: tox -e py38-test-instrumentation-openai-v2-0 -- -ra
46+
47+
py38-test-instrumentation-openai-v2-1:
48+
name: instrumentation-openai-v2-1
49+
runs-on: ubuntu-latest
50+
steps:
51+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
52+
uses: actions/checkout@v4
53+
with:
54+
repository: open-telemetry/opentelemetry-python-contrib
55+
ref: ${{ env.CONTRIB_REPO_SHA }}
56+
57+
- name: Checkout core repo @ SHA - ${{ github.sha }}
58+
uses: actions/checkout@v4
59+
with:
60+
repository: open-telemetry/opentelemetry-python
61+
path: opentelemetry-python-core
62+
63+
- name: Set up Python 3.8
64+
uses: actions/setup-python@v5
65+
with:
66+
python-version: "3.8"
67+
architecture: "x64"
68+
69+
- name: Install tox
70+
run: pip install tox
71+
72+
- name: Run tests
73+
run: tox -e py38-test-instrumentation-openai-v2-1 -- -ra
4674

4775
py38-test-resource-detector-container:
4876
name: resource-detector-container
@@ -72,8 +100,8 @@ jobs:
72100
- name: Run tests
73101
run: tox -e py38-test-resource-detector-container -- -ra
74102

75-
py38-test-resource-detector-azure:
76-
name: resource-detector-azure
103+
py38-test-resource-detector-azure-0:
104+
name: resource-detector-azure-0
77105
runs-on: ubuntu-latest
78106
steps:
79107
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -98,10 +126,10 @@ jobs:
98126
run: pip install tox
99127

100128
- name: Run tests
101-
run: tox -e py38-test-resource-detector-azure -- -ra
129+
run: tox -e py38-test-resource-detector-azure-0 -- -ra
102130

103-
py38-test-sdk-extension-aws:
104-
name: sdk-extension-aws
131+
py38-test-resource-detector-azure-1:
132+
name: resource-detector-azure-1
105133
runs-on: ubuntu-latest
106134
steps:
107135
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -126,7 +154,63 @@ jobs:
126154
run: pip install tox
127155

128156
- name: Run tests
129-
run: tox -e py38-test-sdk-extension-aws -- -ra
157+
run: tox -e py38-test-resource-detector-azure-1 -- -ra
158+
159+
py38-test-sdk-extension-aws-0:
160+
name: sdk-extension-aws-0
161+
runs-on: ubuntu-latest
162+
steps:
163+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
164+
uses: actions/checkout@v4
165+
with:
166+
repository: open-telemetry/opentelemetry-python-contrib
167+
ref: ${{ env.CONTRIB_REPO_SHA }}
168+
169+
- name: Checkout core repo @ SHA - ${{ github.sha }}
170+
uses: actions/checkout@v4
171+
with:
172+
repository: open-telemetry/opentelemetry-python
173+
path: opentelemetry-python-core
174+
175+
- name: Set up Python 3.8
176+
uses: actions/setup-python@v5
177+
with:
178+
python-version: "3.8"
179+
architecture: "x64"
180+
181+
- name: Install tox
182+
run: pip install tox
183+
184+
- name: Run tests
185+
run: tox -e py38-test-sdk-extension-aws-0 -- -ra
186+
187+
py38-test-sdk-extension-aws-1:
188+
name: sdk-extension-aws-1
189+
runs-on: ubuntu-latest
190+
steps:
191+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
192+
uses: actions/checkout@v4
193+
with:
194+
repository: open-telemetry/opentelemetry-python-contrib
195+
ref: ${{ env.CONTRIB_REPO_SHA }}
196+
197+
- name: Checkout core repo @ SHA - ${{ github.sha }}
198+
uses: actions/checkout@v4
199+
with:
200+
repository: open-telemetry/opentelemetry-python
201+
path: opentelemetry-python-core
202+
203+
- name: Set up Python 3.8
204+
uses: actions/setup-python@v5
205+
with:
206+
python-version: "3.8"
207+
architecture: "x64"
208+
209+
- name: Install tox
210+
run: pip install tox
211+
212+
- name: Run tests
213+
run: tox -e py38-test-sdk-extension-aws-1 -- -ra
130214

131215
py38-test-distro:
132216
name: distro
@@ -1584,6 +1668,34 @@ jobs:
15841668
- name: Run tests
15851669
run: tox -e py38-test-instrumentation-sqlalchemy-1 -- -ra
15861670

1671+
py38-test-instrumentation-sqlalchemy-2:
1672+
name: instrumentation-sqlalchemy-2
1673+
runs-on: ubuntu-latest
1674+
steps:
1675+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1676+
uses: actions/checkout@v4
1677+
with:
1678+
repository: open-telemetry/opentelemetry-python-contrib
1679+
ref: ${{ env.CONTRIB_REPO_SHA }}
1680+
1681+
- name: Checkout core repo @ SHA - ${{ github.sha }}
1682+
uses: actions/checkout@v4
1683+
with:
1684+
repository: open-telemetry/opentelemetry-python
1685+
path: opentelemetry-python-core
1686+
1687+
- name: Set up Python 3.8
1688+
uses: actions/setup-python@v5
1689+
with:
1690+
python-version: "3.8"
1691+
architecture: "x64"
1692+
1693+
- name: Install tox
1694+
run: pip install tox
1695+
1696+
- name: Run tests
1697+
run: tox -e py38-test-instrumentation-sqlalchemy-2 -- -ra
1698+
15871699
py38-test-instrumentation-redis:
15881700
name: instrumentation-redis
15891701
runs-on: ubuntu-latest
@@ -1864,8 +1976,36 @@ jobs:
18641976
- name: Run tests
18651977
run: tox -e py38-test-util-http -- -ra
18661978

1867-
py38-test-propagator-aws-xray:
1868-
name: propagator-aws-xray
1979+
py38-test-propagator-aws-xray-0:
1980+
name: propagator-aws-xray-0
1981+
runs-on: ubuntu-latest
1982+
steps:
1983+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1984+
uses: actions/checkout@v4
1985+
with:
1986+
repository: open-telemetry/opentelemetry-python-contrib
1987+
ref: ${{ env.CONTRIB_REPO_SHA }}
1988+
1989+
- name: Checkout core repo @ SHA - ${{ github.sha }}
1990+
uses: actions/checkout@v4
1991+
with:
1992+
repository: open-telemetry/opentelemetry-python
1993+
path: opentelemetry-python-core
1994+
1995+
- name: Set up Python 3.8
1996+
uses: actions/setup-python@v5
1997+
with:
1998+
python-version: "3.8"
1999+
architecture: "x64"
2000+
2001+
- name: Install tox
2002+
run: pip install tox
2003+
2004+
- name: Run tests
2005+
run: tox -e py38-test-propagator-aws-xray-0 -- -ra
2006+
2007+
py38-test-propagator-aws-xray-1:
2008+
name: propagator-aws-xray-1
18692009
runs-on: ubuntu-latest
18702010
steps:
18712011
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -1890,7 +2030,7 @@ jobs:
18902030
run: pip install tox
18912031

18922032
- name: Run tests
1893-
run: tox -e py38-test-propagator-aws-xray -- -ra
2033+
run: tox -e py38-test-propagator-aws-xray-1 -- -ra
18942034

18952035
py38-test-propagator-ot-trace:
18962036
name: propagator-ot-trace

.github/workflows/lint_0.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: main
14-
CONTRIB_REPO_SHA: 925d8442c91ab7a89296ab20eb7cca688d4ea1cd
14+
CONTRIB_REPO_SHA: c65e27333e7c7b6ea2e5eb56191c16f024430881
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:

.github/workflows/misc_0.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: main
14-
CONTRIB_REPO_SHA: 925d8442c91ab7a89296ab20eb7cca688d4ea1cd
14+
CONTRIB_REPO_SHA: c65e27333e7c7b6ea2e5eb56191c16f024430881
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:
@@ -109,6 +109,8 @@ jobs:
109109
docs:
110110
name: docs
111111
runs-on: ubuntu-latest
112+
if: |
113+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
112114
steps:
113115
- name: Checkout repo @ SHA - ${{ github.sha }}
114116
uses: actions/checkout@v4
@@ -215,7 +217,7 @@ jobs:
215217
runs-on: ubuntu-latest
216218
if: |
217219
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
218-
&& github.actor != 'opentelemetrybot' && github.event_name == 'pull_request'
220+
&& github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
219221
steps:
220222
- name: Checkout repo @ SHA - ${{ github.sha }}
221223
uses: actions/checkout@v4

.github/workflows/test_0.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: main
14-
CONTRIB_REPO_SHA: 925d8442c91ab7a89296ab20eb7cca688d4ea1cd
14+
CONTRIB_REPO_SHA: c65e27333e7c7b6ea2e5eb56191c16f024430881
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## Version 1.28.1/0.49b1 (2024-11-08)
99

1010
- Fix metrics export with exemplar and no context and filtering observable instruments
1111
([#4251](https://github.com/open-telemetry/opentelemetry-python/pull/4251))

eachdist.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sortfirst=
1111
exporter/*
1212

1313
[stable]
14-
version=1.28.0
14+
version=1.28.1
1515

1616
packages=
1717
opentelemetry-sdk
@@ -27,7 +27,7 @@ packages=
2727
opentelemetry-api
2828

2929
[prerelease]
30-
version=0.49b0
30+
version=0.49b1
3131

3232
packages=
3333
opentelemetry-opentracing-shim

exporter/opentelemetry-exporter-opencensus/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
dependencies = [
3131
"grpcio >= 1.0.0, < 2.0.0",
3232
"opencensus-proto >= 0.1.0, < 1.0.0",
33-
"opentelemetry-api >= 1.28.0",
33+
"opentelemetry-api >= 1.28.1",
3434
"opentelemetry-sdk >= 1.15",
3535
"protobuf ~= 3.13",
3636
"setuptools >= 16.0",

exporter/opentelemetry-exporter-opencensus/src/opentelemetry/exporter/opencensus/version/__init__.py

+1-1
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.49b0"
15+
__version__ = "0.49b1"

exporter/opentelemetry-exporter-otlp-proto-common/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.12",
2828
]
2929
dependencies = [
30-
"opentelemetry-proto == 1.28.0",
30+
"opentelemetry-proto == 1.28.1",
3131
]
3232

3333
[project.urls]

exporter/opentelemetry-exporter-otlp-proto-common/src/opentelemetry/exporter/otlp/proto/common/version/__init__.py

+1-1
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__ = "1.28.0"
15+
__version__ = "1.28.1"

exporter/opentelemetry-exporter-otlp-proto-grpc/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ dependencies = [
3131
"googleapis-common-protos ~= 1.52",
3232
"grpcio >= 1.63.2, < 2.0.0",
3333
"opentelemetry-api ~= 1.15",
34-
"opentelemetry-proto == 1.28.0",
35-
"opentelemetry-sdk ~= 1.28.0",
36-
"opentelemetry-exporter-otlp-proto-common == 1.28.0",
34+
"opentelemetry-proto == 1.28.1",
35+
"opentelemetry-sdk ~= 1.28.1",
36+
"opentelemetry-exporter-otlp-proto-common == 1.28.1",
3737
]
3838

3939
[project.entry-points.opentelemetry_logs_exporter]

exporter/opentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/version/__init__.py

+1-1
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__ = "1.28.0"
15+
__version__ = "1.28.1"

exporter/opentelemetry-exporter-otlp-proto-http/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies = [
3030
"Deprecated >= 1.2.6",
3131
"googleapis-common-protos ~= 1.52",
3232
"opentelemetry-api ~= 1.15",
33-
"opentelemetry-proto == 1.28.0",
34-
"opentelemetry-sdk ~= 1.28.0",
35-
"opentelemetry-exporter-otlp-proto-common == 1.28.0",
33+
"opentelemetry-proto == 1.28.1",
34+
"opentelemetry-sdk ~= 1.28.1",
35+
"opentelemetry-exporter-otlp-proto-common == 1.28.1",
3636
"requests ~= 2.7",
3737
]
3838

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/version/__init__.py

+1-1
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__ = "1.28.0"
15+
__version__ = "1.28.1"

exporter/opentelemetry-exporter-otlp/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ classifiers = [
2828
"Typing :: Typed",
2929
]
3030
dependencies = [
31-
"opentelemetry-exporter-otlp-proto-grpc == 1.28.0",
32-
"opentelemetry-exporter-otlp-proto-http == 1.28.0",
31+
"opentelemetry-exporter-otlp-proto-grpc == 1.28.1",
32+
"opentelemetry-exporter-otlp-proto-http == 1.28.1",
3333
]
3434

3535
[project.entry-points.opentelemetry_logs_exporter]

0 commit comments

Comments
 (0)