Skip to content

Commit 994697d

Browse files
authored
Merge branch 'main' into feat/context-value-hydration
2 parents a5af90e + b0dac08 commit 994697d

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ jobs:
9191
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
9292

9393
- name: Initialize CodeQL
94-
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3
94+
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3
9595
with:
9696
languages: python
9797
config-file: ./.github/codeql-config.yml
9898

9999
- name: Perform CodeQL Analysis
100-
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3
100+
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default_stages: [pre-commit]
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.9.6
4+
rev: v0.9.7
55
hooks:
66
- id: ruff
77
args: [--fix]

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"hooks/openfeature-hooks-opentelemetry": "0.1.3",
2+
"hooks/openfeature-hooks-opentelemetry": "0.2.0",
33
"providers/openfeature-provider-flagd": "0.2.0",
44
"providers/openfeature-provider-ofrep": "0.1.1",
55
"providers/openfeature-provider-flipt": "0.1.3"

hooks/openfeature-hooks-opentelemetry/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/open-feature/python-sdk-contrib/compare/openfeature-hooks-opentelemetry/v0.1.3...openfeature-hooks-opentelemetry/v0.2.0) (2025-02-21)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* drop Python 3.8 support ([#187](https://github.com/open-feature/python-sdk-contrib/issues/187))
9+
10+
### 🐛 Bug Fixes
11+
12+
* fix types for hints in OTel TracingHook ([#73](https://github.com/open-feature/python-sdk-contrib/issues/73)) ([24260fb](https://github.com/open-feature/python-sdk-contrib/commit/24260fb519d18590d82e9aae1cf824b9e6ca7f17))
13+
* remove modifications to license files ([#81](https://github.com/open-feature/python-sdk-contrib/issues/81)) ([a23f61e](https://github.com/open-feature/python-sdk-contrib/commit/a23f61e1c14c70e45a4bce4a014d5599813f1d28))
14+
15+
16+
### 🧹 Chore
17+
18+
* drop Python 3.8 support ([#187](https://github.com/open-feature/python-sdk-contrib/issues/187)) ([b55cc1e](https://github.com/open-feature/python-sdk-contrib/commit/b55cc1e0f823d05a330c12af6861dbd3bec69c3a))
19+
* update ruff ([#70](https://github.com/open-feature/python-sdk-contrib/issues/70)) ([9411d0f](https://github.com/open-feature/python-sdk-contrib/commit/9411d0f578238037b3c508faf8f23fe35a374b6c))
20+
* update test config ([c16883e](https://github.com/open-feature/python-sdk-contrib/commit/c16883eb06b870b3a8fa4821492f48291208336b))
21+
22+
23+
### 🔄 Refactoring
24+
25+
* add mypy and fix typing issues ([#72](https://github.com/open-feature/python-sdk-contrib/issues/72)) ([b405925](https://github.com/open-feature/python-sdk-contrib/commit/b4059255045cdb7054a35bc338207e23c42ce068))
26+
327
## [0.1.3](https://github.com/open-feature/python-sdk-contrib/compare/openfeature-hooks-opentelemetry/v0.1.2...openfeature-hooks-opentelemetry/v0.1.3) (2024-03-17)
428

529

hooks/openfeature-hooks-opentelemetry/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55

66
[project]
77
name = "openfeature-hooks-opentelemetry"
8-
version = "0.1.3"
8+
version = "0.2.0"
99
description = "OpenTelemetry hooks for the OpenFeature Python SDK"
1010
readme = "README.md"
1111
authors = [{ name = "OpenFeature", email = "[email protected]" }]

0 commit comments

Comments
 (0)