From a4c06452e8e68f65fad3c756d5b76370448d1215 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:04:34 -0800 Subject: [PATCH 1/6] drop python 3.9 and add 3.13 and 3.14 to workflow tests --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 20782f1..609460a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,12 +3,12 @@ name: Test and Lint on: pull_request: -jobs: +jobs: test-and-lint: runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + strategy: + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] env: SCOUT_LOGS_INGEST_KEY: test-ingest-key steps: @@ -33,4 +33,4 @@ jobs: - name: Run tests with coverage run: | - poetry run task test \ No newline at end of file + poetry run task test From 96f06cd88e10ff9cbeb3dd8e8921d58c8f5d3588 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:07:14 -0800 Subject: [PATCH 2/6] add pending changes --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eada3a5..32e8ccd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog ## Pending +### Fixed +- Shared logger provider being closed prematurely (#32) +- Ensure `handling_log` set to false if emit fails + +### Changed +- Drop Python 3.9 support, add Python 3.13 and 3.14 support (#33) ## [1.0.2] 2025-12-05 ### Changed From 19d6ee1901782b0cb0d6305a6fbc1b8bc19488d3 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:41:46 -0800 Subject: [PATCH 3/6] Retriggering checks From 29cfb092b8213aaafb804539d98f926807bab952 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:42:28 -0800 Subject: [PATCH 4/6] Retriggering checks From f15daa06e342a9ed88e305b17924439625b40401 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:45:31 -0800 Subject: [PATCH 5/6] Retriggering checks From eaa473018d9e26f0f2f72980e0681d6795194ea1 Mon Sep 17 00:00:00 2001 From: Quinn Milionis Date: Mon, 15 Dec 2025 12:46:47 -0800 Subject: [PATCH 6/6] bump poetry deps to python 3.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4569385..e8dcb57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ repository = "https://github.com/scoutapp/scout_apm_python_logging" documentation = "https://scoutapm.com/docs/features/log-management" [tool.poetry.dependencies] -python = "^3.9" +python = "^3.10" opentelemetry-api = "^1.26.0" opentelemetry-sdk = "^1.26.0" opentelemetry-exporter-otlp = "^1.26.0"