Skip to content

Commit 4177f62

Browse files
committed
v0.6.0
1 parent 96b9e26 commit 4177f62

File tree

15 files changed

+114
-28
lines changed

15 files changed

+114
-28
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.6.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.5.0...v0.6.0) (2023-06-04)
7+
8+
### Bug Fixes
9+
10+
- instrumentation version bump ([#55](https://github.com/traceloop/jest-opentelemetry/issues/55)) ([0a5a352](https://github.com/traceloop/jest-opentelemetry/commit/0a5a352d6ef45e3bce114a53182f7958a1e3b7a9))
11+
- work with remote server ([#69](https://github.com/traceloop/jest-opentelemetry/issues/69)) ([d219a40](https://github.com/traceloop/jest-opentelemetry/commit/d219a402ea52b7cc7aa4c8f31a4e9071e016a9cf))
12+
13+
### Features
14+
15+
- redis tests ([#61](https://github.com/traceloop/jest-opentelemetry/issues/61)) ([7e0c156](https://github.com/traceloop/jest-opentelemetry/commit/7e0c156aabf06b5e79667ebc7574a58fab2e7bd3))
16+
- user agent header for traceloopId ([#73](https://github.com/traceloop/jest-opentelemetry/issues/73)) ([96b9e26](https://github.com/traceloop/jest-opentelemetry/commit/96b9e26d29636c9095b731ca96c87a23f2b8db8b))
17+
618
# [0.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
719

820
### Features

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useWorkspaces": true,
4-
"version": "0.5.0"
4+
"version": "0.6.0"
55
}

package-lock.json

Lines changed: 53 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/expect-opentelemetry/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.6.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.5.0...v0.6.0) (2023-06-04)
7+
8+
### Bug Fixes
9+
10+
- work with remote server ([#69](https://github.com/traceloop/jest-opentelemetry/issues/69)) ([d219a40](https://github.com/traceloop/jest-opentelemetry/commit/d219a402ea52b7cc7aa4c8f31a4e9071e016a9cf))
11+
12+
### Features
13+
14+
- redis tests ([#61](https://github.com/traceloop/jest-opentelemetry/issues/61)) ([7e0c156](https://github.com/traceloop/jest-opentelemetry/commit/7e0c156aabf06b5e79667ebc7574a58fab2e7bd3))
15+
- user agent header for traceloopId ([#73](https://github.com/traceloop/jest-opentelemetry/issues/73)) ([96b9e26](https://github.com/traceloop/jest-opentelemetry/commit/96b9e26d29636c9095b731ca96c87a23f2b8db8b))
16+
617
# [0.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
718

819
### Features

packages/expect-opentelemetry/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traceloop/expect-opentelemetry",
33
"description": "Assertion toolkit for OpenTelemetry tests.",
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"license": "Apache-2.0",
66
"type": "commonjs",
77
"main": "./dist/index.js",
@@ -36,7 +36,7 @@
3636
},
3737
"dependencies": {
3838
"@opentelemetry/semantic-conventions": "^1.10.1",
39-
"@traceloop/otel-proto": "^0.5.0",
39+
"@traceloop/otel-proto": "^0.6.0",
4040
"axios": "^1.3.4",
4141
"deep-equal": "^2.2.0"
4242
},

packages/instrument-opentelemetry/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.6.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.5.0...v0.6.0) (2023-06-04)
7+
8+
**Note:** Version bump only for package @traceloop/instrument-opentelemetry
9+
610
# [0.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
711

812
### Features

packages/instrument-opentelemetry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@traceloop/instrument-opentelemetry",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"main": "./dist/tracing.js",
55
"engines": {
66
"node": ">=14.0.0"

packages/jest-environment-otel/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.6.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.5.0...v0.6.0) (2023-06-04)
7+
8+
### Bug Fixes
9+
10+
- work with remote server ([#69](https://github.com/traceloop/jest-opentelemetry/issues/69)) ([d219a40](https://github.com/traceloop/jest-opentelemetry/commit/d219a402ea52b7cc7aa4c8f31a4e9071e016a9cf))
11+
612
# [0.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
713

814
### Features

packages/jest-environment-otel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traceloop/jest-environment-otel",
33
"description": "OpenTelemetry environment for Jest.",
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"license": "Apache-2.0",
66
"type": "commonjs",
77
"main": "./index.js",
@@ -43,7 +43,7 @@
4343
"rollup-plugin-swc3": "^0.8.0"
4444
},
4545
"dependencies": {
46-
"@traceloop/otel-receiver": "^0.5.0",
46+
"@traceloop/otel-receiver": "^0.6.0",
4747
"chalk": "^4.1.2",
4848
"cwd": "^0.10.0",
4949
"jest-dev-server": "^7.0.1",

packages/jest-opentelemetry/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.6.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.5.0...v0.6.0) (2023-06-04)
7+
8+
**Note:** Version bump only for package @traceloop/jest-opentelemetry
9+
610
# [0.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
711

812
**Note:** Version bump only for package @traceloop/jest-opentelemetry

0 commit comments

Comments
 (0)