Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
43f3fe5
config: generate model code from json schema
codeboten Jan 15, 2026
72c3729
update tox command’s deps and allowlist
MikeGoldsmith Feb 4, 2026
a2dfa41
add use-union-operator to datamodel-codegen and regenerate models file
MikeGoldsmith Feb 4, 2026
659ab65
Merge branch 'main' of github.com:open-telemetry/opentelemetry-python…
MikeGoldsmith Feb 4, 2026
dd6a2cd
add changelog
MikeGoldsmith Feb 4, 2026
99e9570
disable union-operator and set target python to 3.10
MikeGoldsmith Feb 4, 2026
43f2c09
Merge pull request #13 from honeycombio/codeboten/generate-config-mod…
codeboten Feb 4, 2026
1a3bde8
ignore generated file for linting
MikeGoldsmith Feb 5, 2026
6936e54
fix TypeAlias import for python 3.9 in generated models file
MikeGoldsmith Feb 5, 2026
7949792
update uv.lock with new dev dependencies
MikeGoldsmith Feb 5, 2026
9f5f21e
Merge pull request #14 from honeycombio/codeboten/generate-config-mod…
codeboten Feb 5, 2026
81ac395
run precommit
codeboten Feb 5, 2026
45bc753
Merge branch 'main' of github.com:open-telemetry/opentelemetry-python…
MikeGoldsmith Feb 11, 2026
801a425
Fix pyright config structure in pyproject.toml
MikeGoldsmith Feb 11, 2026
ba73218
Merge branch 'main' into codeboten/generate-config-model-from-schema
MikeGoldsmith Feb 11, 2026
aef08e0
set use-union-operator to true
MikeGoldsmith Feb 12, 2026
3ee990e
Merge branch 'main' of github.com:open-telemetry/opentelemetry-python…
MikeGoldsmith Feb 13, 2026
0d60e15
Exclude generated models.py from pyright checks
MikeGoldsmith Feb 13, 2026
4db86b3
Revert uv.lock to test contrib failures
MikeGoldsmith Feb 13, 2026
9232c0f
Update uv.lock for datamodel-code-generator dependencies
MikeGoldsmith Feb 13, 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
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ignore=CVS,gen,proto

# Add files or directories matching the regex patterns to be excluded. The
# regex matches against base names, not paths.
ignore-patterns=
ignore-patterns=^models\.py$

# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#4862](https://github.com/open-telemetry/opentelemetry-python/pull/4862))
- `opentelemetry-exporter-otlp-proto-http`: fix retry logic and error handling for connection failures in trace, metric, and log exporters
([#4709](https://github.com/open-telemetry/opentelemetry-python/pull/4709))
- `opentelemetry-sdk`: automatically generate configuration models using OTel config JSON schema
([#4879](https://github.com/open-telemetry/opentelemetry-python/pull/4879))
- Implement experimental TracerConfigurator
([#4861](https://github.com/open-telemetry/opentelemetry-python/pull/4861))

Expand Down
Loading
Loading