Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e05e302
feat: add opentelemetry-exporter-http-transport package
herin049 May 10, 2026
5e44894
add remaining unit tests
herin049 May 11, 2026
ba4a334
improve unit tests
herin049 May 11, 2026
2e03c70
update README.rst
herin049 May 11, 2026
749ec37
update CHANGELOG.md
herin049 May 11, 2026
d19c35c
update github workflows
herin049 May 11, 2026
06ef03b
update eachdist.ini
herin049 May 11, 2026
f8f4447
update test-requirements.txt
herin049 May 11, 2026
63821eb
remove pypy from tests
herin049 May 11, 2026
4be0dc2
run generate workflows
herin049 May 11, 2026
d3d9469
add test requirements latest/oldest
herin049 May 12, 2026
722645e
add changelog entry
herin049 May 14, 2026
d6abfb4
update tests to use mocket
herin049 May 16, 2026
6be55c6
fix lint errors
herin049 May 16, 2026
593c553
Merge branch 'main' into feat/exporter-otlp-http
herin049 May 16, 2026
b3d63dd
Merge branch 'main' into feat/exporter-otlp-http
herin049 May 19, 2026
5df3185
Merge branch 'main' into feat/exporter-otlp-http
herin049 May 22, 2026
41e4040
remove OTLPHTTPClient and update ABCs
herin049 May 27, 2026
330462a
refactor unit tests
herin049 May 28, 2026
217c319
update package version
herin049 May 28, 2026
48a03a7
remove future annotations imports
herin049 May 28, 2026
0169179
small tweak to headers behavior for transport implementations
herin049 May 30, 2026
5ba9d71
Merge branch 'main' into feat/exporter-otlp-http
herin049 Jun 4, 2026
17113d6
Merge branch 'main' into feat/exporter-otlp-http
herin049 Jun 6, 2026
febc956
Merge branch 'main' into feat/exporter-otlp-http
lzchen Jun 9, 2026
3ff5e28
Merge branch 'main' into feat/exporter-otlp-http
lzchen Jun 9, 2026
e55ddda
Merge branch 'main' into feat/exporter-otlp-http
herin049 Jun 10, 2026
7c4f26b
Merge branch 'main' into feat/exporter-otlp-http
herin049 Jun 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changelog/5194.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`opentelemetry-exporter-http-transport`: add 'opentelemetry-exporter-http-transport' package for HTTP exporters
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,25 @@ jobs:
- name: Run tests
run: tox -e lint-opentelemetry-opencensus-shim

lint-opentelemetry-exporter-http-transport:
name: opentelemetry-exporter-http-transport
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: "3.14"

- name: Install tox
run: pip install tox-uv

- name: Run tests
run: tox -e lint-opentelemetry-exporter-http-transport

lint-opentelemetry-exporter-opencensus:
name: opentelemetry-exporter-opencensus
runs-on: ubuntu-latest
Expand Down
Loading
Loading