Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 10 additions & 5 deletions .github/workflows/build_publish_pypi_and_draft_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,16 @@ jobs:
needs:
- build_sdist_and_wheel
- scan_sdist_and_wheel
uses: ./.github/workflows/publish_sdist_and_wheel.yaml
with:
artifact-name: ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
repository-name: pypi
secrets: inherit
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v6
with:
name: ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
- name: Unzip artifact with dist
run: unzip ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
- name: Publish sdist and wheel to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

create_release:
name: Create draft release
Expand Down
17 changes: 12 additions & 5 deletions .github/workflows/build_publish_testpypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,15 @@ jobs:
needs:
- build_sdist_and_wheel
- scan_sdist_and_wheel
uses: ./.github/workflows/publish_sdist_and_wheel.yaml
with:
artifact-name: ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
repository-name: testpypi
secrets: inherit
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v6
with:
name: ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
- name: Unzip artifact with dist
run: unzip ${{ needs.build_sdist_and_wheel.outputs.artifact-name }}
- name: Publish sdist and wheel to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
39 changes: 0 additions & 39 deletions .github/workflows/publish_sdist_and_wheel.yaml

This file was deleted.

10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/solarwinds/apm-python/compare/rel-5.1.0...HEAD)
## [Unreleased](https://github.com/solarwinds/apm-python/compare/rel-5.2.0...HEAD)

## [5.2.0.0](https://github.com/solarwinds/apm-python/releases/tag/rel-5.2.0) - 2025-12-09

### Changed
- Fixed thread safety of token bucket ([#712](https://github.com/solarwinds/apm-python/pull/712))
- Updated distro to always opt into `database` new semconv if supported by instrumentation ([#713](https://github.com/solarwinds/apm-python/pull/713))
- Updated workflows for PyPI trusted publishing ([#719](https://github.com/solarwinds/apm-python/pull/719))
- Upgraded to OTel Python 1.39.0/0.60b ([#720](https://github.com/solarwinds/apm-python/pull/720))

## [5.1.0](https://github.com/solarwinds/apm-python/releases/tag/rel-5.1.0) - 2025-10-21

Expand Down
2 changes: 1 addition & 1 deletion image/requirements-nodeps-beta.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
solarwinds_apm==5.1.0.0
solarwinds_apm==5.2.0.0
2 changes: 1 addition & 1 deletion solarwinds_apm/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.1.0"
__version__ = "5.2.0.0"
Loading