Skip to content

Commit 6ef34e7

Browse files
v0.10.0
1 parent 207f9fe commit 6ef34e7

File tree

29 files changed

+135
-73
lines changed

29 files changed

+135
-73
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
### Features
9+
10+
- introduce traceloop.entity.path instead of traceloop.entity.name chaining ([#393](https://github.com/traceloop/openllmetry-js/issues/393)) ([207f9fe](https://github.com/traceloop/openllmetry-js/commit/207f9fe552cccad23f483ac106833e23186581e7))
11+
612
## [0.9.5](https://github.com/traceloop/openllmetry-js/compare/v0.9.4...v0.9.5) (2024-07-30)
713

814
### Bug Fixes

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.9.5",
3+
"version": "0.10.0",
44
"packages": ["packages/*"],
55
"useNx": true
66
}

package-lock.json

+36-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ai-semantic-conventions/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
### Features
9+
10+
- introduce traceloop.entity.path instead of traceloop.entity.name chaining ([#393](https://github.com/traceloop/openllmetry-js/issues/393)) ([207f9fe](https://github.com/traceloop/openllmetry-js/commit/207f9fe552cccad23f483ac106833e23186581e7))
11+
612
# [0.9.0](https://github.com/traceloop/openllmetry-js/compare/v0.8.9...v0.9.0) (2024-07-04)
713

814
### Bug Fixes

packages/ai-semantic-conventions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/ai-semantic-conventions",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "OpenTelemetry ai-specific semantic conventions",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

packages/instrumentation-anthropic/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
**Note:** Version bump only for package @traceloop/instrumentation-anthropic
9+
610
## [0.9.2](https://github.com/traceloop/openllmetry-js/compare/v0.9.1...v0.9.2) (2024-07-17)
711

812
### Bug Fixes

packages/instrumentation-anthropic/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/instrumentation-anthropic",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"description": "Anthropic Instrumentaion",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -40,7 +40,7 @@
4040
"@opentelemetry/core": "^1.25.0",
4141
"@opentelemetry/instrumentation": "^0.52.0",
4242
"@opentelemetry/semantic-conventions": "^1.25.0",
43-
"@traceloop/ai-semantic-conventions": "^0.9.0",
43+
"@traceloop/ai-semantic-conventions": "^0.10.0",
4444
"tslib": "^2.3.0"
4545
},
4646
"devDependencies": {

packages/instrumentation-azure/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
**Note:** Version bump only for package @traceloop/instrumentation-azure
9+
610
## [0.9.2](https://github.com/traceloop/openllmetry-js/compare/v0.9.1...v0.9.2) (2024-07-17)
711

812
### Bug Fixes

packages/instrumentation-azure/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/instrumentation-azure",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"description": "Azure OpenAI Instrumentaion",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -40,7 +40,7 @@
4040
"@opentelemetry/core": "^1.25.0",
4141
"@opentelemetry/instrumentation": "^0.52.0",
4242
"@opentelemetry/semantic-conventions": "^1.25.0",
43-
"@traceloop/ai-semantic-conventions": "^0.9.0",
43+
"@traceloop/ai-semantic-conventions": "^0.10.0",
4444
"tslib": "^2.3.0"
4545
},
4646
"devDependencies": {

packages/instrumentation-bedrock/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
**Note:** Version bump only for package @traceloop/instrumentation-bedrock
9+
610
## [0.9.2](https://github.com/traceloop/openllmetry-js/compare/v0.9.1...v0.9.2) (2024-07-17)
711

812
### Bug Fixes

packages/instrumentation-bedrock/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/instrumentation-bedrock",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"description": "Amazon Bedrock Instrumentation",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -40,7 +40,7 @@
4040
"@opentelemetry/core": "^1.25.0",
4141
"@opentelemetry/instrumentation": "^0.52.0",
4242
"@opentelemetry/semantic-conventions": "^1.25.0",
43-
"@traceloop/ai-semantic-conventions": "^0.9.0",
43+
"@traceloop/ai-semantic-conventions": "^0.10.0",
4444
"tslib": "^2.3.0"
4545
},
4646
"devDependencies": {

packages/instrumentation-chromadb/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
**Note:** Version bump only for package @traceloop/instrumentation-chromadb
9+
610
## [0.9.2](https://github.com/traceloop/openllmetry-js/compare/v0.9.1...v0.9.2) (2024-07-17)
711

812
### Bug Fixes

packages/instrumentation-chromadb/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/instrumentation-chromadb",
3-
"version": "0.9.2",
3+
"version": "0.10.0",
44
"description": "ChromaDB Instrumentation",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",
@@ -39,7 +39,7 @@
3939
"@opentelemetry/core": "^1.25.0",
4040
"@opentelemetry/instrumentation": "^0.52.0",
4141
"@opentelemetry/semantic-conventions": "^1.25.0",
42-
"@traceloop/ai-semantic-conventions": "^0.9.0",
42+
"@traceloop/ai-semantic-conventions": "^0.10.0",
4343
"tslib": "^2.3.0"
4444
},
4545
"devDependencies": {

packages/instrumentation-cohere/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.10.0](https://github.com/traceloop/openllmetry-js/compare/v0.9.5...v0.10.0) (2024-08-01)
7+
8+
**Note:** Version bump only for package @traceloop/instrumentation-cohere
9+
610
## [0.9.2](https://github.com/traceloop/openllmetry-js/compare/v0.9.1...v0.9.2) (2024-07-17)
711

812
### Bug Fixes

0 commit comments

Comments
 (0)