Skip to content

Commit 4d2c902

Browse files
authored
Merge branch 'main' into prometheus_exporter
2 parents 82e9a0d + 06809f4 commit 4d2c902

File tree

39 files changed

+145
-125
lines changed

39 files changed

+145
-125
lines changed

.github/workflows/check-links.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
check-links:
2424
runs-on: ubuntu-latest
2525
needs: changedfiles
26-
if: ${{needs.changedfiles.outputs.md}}
26+
if:
27+
if: |
28+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
29+
&& ${{needs.changedfiles.outputs.md}}
2730
steps:
2831
- name: Checkout Repo
2932
uses: actions/checkout@v4

.github/workflows/contrib_0.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,34 @@ env:
1616

1717
jobs:
1818

19+
py38-test-instrumentation-openai-v2:
20+
name: instrumentation-openai-v2
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
24+
uses: actions/checkout@v4
25+
with:
26+
repository: open-telemetry/opentelemetry-python-contrib
27+
ref: ${{ env.CONTRIB_REPO_SHA }}
28+
29+
- name: Checkout core repo @ SHA - ${{ github.sha }}
30+
uses: actions/checkout@v4
31+
with:
32+
repository: open-telemetry/opentelemetry-python
33+
path: opentelemetry-python-core
34+
35+
- name: Set up Python 3.8
36+
uses: actions/setup-python@v5
37+
with:
38+
python-version: "3.8"
39+
architecture: "x64"
40+
41+
- name: Install tox
42+
run: pip install tox
43+
44+
- name: Run tests
45+
run: tox -e py38-test-instrumentation-openai-v2 -- -ra
46+
1947
py38-test-resource-detector-container:
2048
name: resource-detector-container
2149
runs-on: ubuntu-latest

.github/workflows/lint_0.yml

Lines changed: 1 addition & 1 deletion
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: main
14+
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:

.github/workflows/misc_0.yml

Lines changed: 2 additions & 2 deletions
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: main
14+
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:
@@ -215,7 +215,7 @@ jobs:
215215
runs-on: ubuntu-latest
216216
if: |
217217
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
218-
&& github.actor != 'opentelemetrybot' && github.event_name == 'pull_request'
218+
&& github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
219219
steps:
220220
- name: Checkout repo @ SHA - ${{ github.sha }}
221221
uses: actions/checkout@v4

CHANGELOG.md

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

88
## Unreleased
99

10+
## Version 1.28.0/0.49b0 (2024-11-05)
11+
1012
- Removed superfluous py.typed markers and added them where they were missing
1113
([#4172](https://github.com/open-telemetry/opentelemetry-python/pull/4172))
1214
- Include metric info in encoding exceptions

docs/examples/fork-process-model/flask-gunicorn/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ protobuf==3.20.3
1616
six==1.15.0
1717
thrift==0.13.0
1818
uWSGI==2.0.22
19-
Werkzeug==3.0.3
19+
Werkzeug==3.0.6
2020
wrapt==1.16.0

docs/examples/fork-process-model/flask-uwsgi/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ protobuf==3.20.3
1616
six==1.15.0
1717
thrift==0.13.0
1818
uWSGI==2.0.22
19-
Werkzeug==3.0.3
19+
Werkzeug==3.0.6
2020
wrapt==1.16.0

docs/getting_started/tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ requests==2.32.3
1919
tomli==2.0.1
2020
typing_extensions==4.8.0
2121
urllib3==1.26.19
22-
Werkzeug==3.0.3
22+
Werkzeug==3.0.6
2323
wrapt==1.15.0
2424
zipp==3.19.2
2525
-e opentelemetry-semantic-conventions

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sortfirst=
1111
exporter/*
1212

1313
[stable]
14-
version=1.28.0.dev
14+
version=1.29.0.dev
1515

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

2929
[prerelease]
30-
version=0.49b0.dev
30+
version=0.50b0.dev
3131

3232
packages=
3333
opentelemetry-opentracing-shim

exporter/opentelemetry-exporter-opencensus/pyproject.toml

Lines changed: 1 addition & 1 deletion
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.dev",
33+
"opentelemetry-api >= 1.29.0.dev",
3434
"opentelemetry-sdk >= 1.15",
3535
"protobuf ~= 3.13",
3636
"setuptools >= 16.0",

0 commit comments

Comments
 (0)