Skip to content

Commit 4e88a33

Browse files
v0.5.0
1 parent 53e9e68 commit 4e88a33

File tree

15 files changed

+412
-28
lines changed

15 files changed

+412
-28
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.5.0](https://github.com/expect-dev/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
### Features
9+
10+
- go server backend ([#42](https://github.com/expect-dev/jest-opentelemetry/issues/42)) ([a543845](https://github.com/expect-dev/jest-opentelemetry/commit/a543845445617bd321c7cee793e23caf2c651844))
11+
- gRPC matchers ([#48](https://github.com/expect-dev/jest-opentelemetry/issues/48)) ([fe893e2](https://github.com/expect-dev/jest-opentelemetry/commit/fe893e2068286b014d20fe9f25335c5e02f341c8))
12+
- traceloop proto ([#52](https://github.com/expect-dev/jest-opentelemetry/issues/52)) ([53e9e68](https://github.com/expect-dev/jest-opentelemetry/commit/53e9e68ab34bf79ab52adb82be219d48fef64acb))
13+
614
## [0.4.1](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.0...v0.4.1) (2023-02-23)
715

816
### Bug Fixes

lerna.json

+1-1
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.4.1"
4+
"version": "0.5.0"
55
}

package-lock.json

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

packages/expect-opentelemetry/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
### Features
9+
10+
- go server backend ([#42](https://github.com/traceloop/jest-opentelemetry/issues/42)) ([a543845](https://github.com/traceloop/jest-opentelemetry/commit/a543845445617bd321c7cee793e23caf2c651844))
11+
- gRPC matchers ([#48](https://github.com/traceloop/jest-opentelemetry/issues/48)) ([fe893e2](https://github.com/traceloop/jest-opentelemetry/commit/fe893e2068286b014d20fe9f25335c5e02f341c8))
12+
613
# 0.4.0 (2023-02-22)
714

815
### Bug Fixes

packages/expect-opentelemetry/package.json

+2-2
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.4.0",
4+
"version": "0.5.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.9.1",
39-
"@traceloop/otel-proto": "^0.4.0",
39+
"@traceloop/otel-proto": "^0.5.0",
4040
"axios": "^1.3.4",
4141
"deep-equal": "^2.2.0"
4242
},

packages/instrument-opentelemetry/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.5.0](https://github.com/expect-dev/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
### Features
9+
10+
- go server backend ([#42](https://github.com/expect-dev/jest-opentelemetry/issues/42)) ([a543845](https://github.com/expect-dev/jest-opentelemetry/commit/a543845445617bd321c7cee793e23caf2c651844))
11+
612
## [0.4.1](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.0...v0.4.1) (2023-02-23)
713

814
### Bug Fixes

packages/instrument-opentelemetry/package.json

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

packages/jest-environment-otel/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.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
### Features
9+
10+
- go server backend ([#42](https://github.com/traceloop/jest-opentelemetry/issues/42)) ([a543845](https://github.com/traceloop/jest-opentelemetry/commit/a543845445617bd321c7cee793e23caf2c651844))
11+
612
# 0.4.0 (2023-02-22)
713

814
### Bug Fixes

packages/jest-environment-otel/package.json

+2-2
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.4.0",
4+
"version": "0.5.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.4.0",
46+
"@traceloop/otel-receiver": "^0.5.0",
4747
"chalk": "^4.1.2",
4848
"cwd": "^0.10.0",
4949
"jest-dev-server": "^7.0.1",

packages/jest-opentelemetry/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.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
**Note:** Version bump only for package @traceloop/jest-opentelemetry
9+
610
# 0.4.0 (2023-02-22)
711

812
### Bug Fixes

packages/jest-opentelemetry/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traceloop/jest-opentelemetry",
33
"description": "Run your tests using Jest & OpenTelemetry.",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"license": "Apache-2.0",
66
"type": "commonjs",
77
"repository": {
@@ -25,7 +25,7 @@
2525
"jest-opentelemetry"
2626
],
2727
"dependencies": {
28-
"@traceloop/expect-opentelemetry": "^0.4.0",
29-
"@traceloop/jest-environment-otel": "^0.4.0"
28+
"@traceloop/expect-opentelemetry": "^0.5.0",
29+
"@traceloop/jest-environment-otel": "^0.5.0"
3030
}
3131
}

packages/otel-proto/CHANGELOG.md

+11
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.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
9+
### Features
10+
11+
* traceloop proto ([#52](https://github.com/traceloop/jest-opentelemetry/issues/52)) ([53e9e68](https://github.com/traceloop/jest-opentelemetry/commit/53e9e68ab34bf79ab52adb82be219d48fef64acb))
12+
13+
14+
15+
16+
617
# 0.4.0 (2023-02-22)
718

819
### Bug Fixes

packages/otel-proto/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traceloop/otel-proto",
33
"description": "Otel & Traceloop proto compiled to JS with type definitions",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"license": "Apache-2.0",
66
"type": "commonjs",
77
"main": "./dist/index.js",

packages/otel-receiver/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.5.0](https://github.com/traceloop/jest-opentelemetry/compare/v0.4.1...v0.5.0) (2023-03-17)
7+
8+
### Features
9+
10+
- go server backend ([#42](https://github.com/traceloop/jest-opentelemetry/issues/42)) ([a543845](https://github.com/traceloop/jest-opentelemetry/commit/a543845445617bd321c7cee793e23caf2c651844))
11+
612
# 0.4.0 (2023-02-22)
713

814
### Bug Fixes

packages/otel-receiver/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traceloop/otel-receiver",
33
"description": "A node server to receive and cache incoming opentelemetry spans.",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"license": "Apache-2.0",
66
"type": "commonjs",
77
"main": "./dist/index.js",
@@ -45,7 +45,7 @@
4545
"rollup-plugin-swc3": "^0.8.0"
4646
},
4747
"dependencies": {
48-
"@traceloop/otel-proto": "^0.4.0",
48+
"@traceloop/otel-proto": "^0.5.0",
4949
"express": "^4.18.2"
5050
}
5151
}

0 commit comments

Comments
 (0)