Skip to content

Commit ba14255

Browse files
authored
update CHANGELOG and bump version to 0.5.0 (elastic#40)
* elastic-opentelemetry-instrumentation-openai: relax api requirements Relax requirements so that the upcoming 1.29.0 will be fine too. Keep the comment signaling that you want at least 1.28.2. * update CHANGELOG and bump version to 0.5.0
1 parent 00183a6 commit ba14255

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Elastic OpenTelemetry Instrumentation OpenAI
22

3+
## v0.5.0
4+
5+
- Sync embeddings calls tracing with semantic conventions 1.29.0 (#36)
6+
- Drop span events support for events, ELASTIC_OTEL_GENAI_EVENTS environment variable is gone (#38)
7+
- Relax opentelemetry-api dependency so it supports 1.29.0+ (#40)
8+
39
## v0.4.0
410

511
- Add support for tracing embeddings calls (#20)

instrumentation/elastic-opentelemetry-instrumentation-openai/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ classifiers = [
2525
"Programming Language :: Python :: 3.12",
2626
]
2727
dependencies = [
28-
# 1.28.2 is required for Events API/SDK
29-
"opentelemetry-api ~= 1.28.2",
28+
# 1.28.2 is required for *robust* Events API/SDK
29+
"opentelemetry-api ~= 1.28",
3030
"opentelemetry-instrumentation ~= 0.49b2",
3131
"opentelemetry-semantic-conventions ~= 0.49b2",
3232
"wrapt >= 1.0.0, < 2.0.0",

instrumentation/elastic-opentelemetry-instrumentation-openai/src/opentelemetry/instrumentation/openai/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
__version__ = "0.4.0"
17+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)