diff --git a/CHANGELOG.md b/CHANGELOG.md index 97457cb..0ac6367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on Keep a Changelog and this project adheres to Semantic Versioning. +## [0.1.78] - 2026-03-26 + +- Block requests instrumentation from traceloop + + ## [0.1.77] - 2026-03-23 - Cleanup and refactor claude agent sdk instrumentation @@ -216,4 +221,4 @@ The format is based on Keep a Changelog and this project adheres to Semantic Ver - Added utility to set input and output data for any active span in a trace -[0.1.77]: https://github.com/KeyValueSoftwareSystems/netra-sdk-py/tree/main +[0.1.78]: https://github.com/KeyValueSoftwareSystems/netra-sdk-py/tree/main diff --git a/netra/instrumentation/__init__.py b/netra/instrumentation/__init__.py index 0d073f9..d55eea3 100644 --- a/netra/instrumentation/__init__.py +++ b/netra/instrumentation/__init__.py @@ -61,6 +61,7 @@ def init_instrumentations( Instruments.GROQ, Instruments.REDIS, Instruments.PYMYSQL, + Instruments.REQUESTS, } ) diff --git a/netra/version.py b/netra/version.py index bd9f1fc..19a9250 100644 --- a/netra/version.py +++ b/netra/version.py @@ -1 +1 @@ -__version__ = "0.1.77" +__version__ = "0.1.78" diff --git a/pyproject.toml b/pyproject.toml index a4b33de..4b29f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [project] name = "netra-sdk" -version = "0.1.77" +version = "0.1.78" description = "A Python SDK for AI application observability that provides OpenTelemetry-based monitoring, tracing, and PII protection for LLM and vector database applications. Enables easy instrumentation, session tracking, and privacy-focused data collection for AI systems in production environments." authors = [ {name = "Sooraj Thomas",email = "sooraj@keyvalue.systems"}