Skip to content

Commit e140104

Browse files
committed
Release 0.17.0
1 parent 79652db commit e140104

File tree

7 files changed

+28
-13
lines changed

7 files changed

+28
-13
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ If the version of Open Telemetry is unspecified for a version, then it is the sa
44

55
## Unreleased
66

7+
## 0.17.0
8+
9+
| Open Telemetry API | Core | Instrumentations & Contrib |
10+
| ------------------ | ------- | -------------------------- |
11+
| ^1.8.0 | ^1.23.0 | ^0.50.0 & compatible |
12+
13+
Changelog since v0.16.5:
14+
15+
* `@splunk/otel-web`
16+
* remove zone.js from user-interaction instrumentation ([#719](https://github.com/signalfx/splunk-otel-js-web/pull/719))
17+
* Preprations for OTLP export support ([#745](https://github.com/signalfx/splunk-otel-js-web/pull/745))
18+
* `@splunk/otel-web-session-recorder`
19+
* Internal changes in how data is shared with `@splunk/otel-web`
20+
**Note**: make sure that to use the same version of `@splunk/otel-web` and `@splunk/otel-web-session-recorder` libraries
21+
722
## 0.17.0-beta.1
823

924
* Fix folders being ignored while packing for npm ([#726](https://github.com/signalfx/splunk-otel-js-web/pull/726))

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@splunk/otel-web-dev-root",
33
"private": true,
4-
"version": "0.17.0-beta.1",
4+
"version": "0.17.0",
55
"--workspaces": "Hardcoded so npm runs workspaces commands in order",
66
"workspaces": [
77
"packages/web",

packages/session-recorder/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/otel-web-session-recorder",
3-
"version": "0.17.0-beta.1",
3+
"version": "0.17.0",
44
"description": "Splunk distribution of rrweb for recording session",
55
"repository": "github:signalfx/splunk-otel-js-browser",
66
"scripts": {
@@ -41,7 +41,7 @@
4141
"type-fest": "^4.0.0"
4242
},
4343
"peerDependencies": {
44-
"@splunk/otel-web": "^0.17.0-beta.0"
44+
"@splunk/otel-web": "^0.17.0"
4545
},
4646
"devDependencies": {
4747
"@babel/plugin-transform-runtime": "^7.22.9",

packages/session-recorder/src/version.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Splunk Inc.
2+
Copyright 2024 Splunk Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -15,4 +15,4 @@ limitations under the License.
1515
*/
1616

1717
// this is an autogenerated file, see scripts/version-update.js
18-
export const VERSION = '0.17.0-beta.1';
18+
export const VERSION = '0.17.0';

packages/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/otel-web",
3-
"version": "0.17.0-beta.1",
3+
"version": "0.17.0",
44
"description": "Splunk distribution of Open Telemetry for browser environment.",
55
"repository": "github:signalfx/splunk-otel-js-browser",
66
"scripts": {

packages/web/src/version.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Splunk Inc.
2+
Copyright 2024 Splunk Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -15,4 +15,4 @@ limitations under the License.
1515
*/
1616

1717
// this is an autogenerated file, see scripts/version-update.js
18-
export const VERSION = '0.17.0-beta.1';
18+
export const VERSION = '0.17.0';

0 commit comments

Comments
 (0)