Skip to content

Commit f0360d7

Browse files
authored
chore(release): 0.20.0-beta.4 (#941)
1 parent 7fb034b commit f0360d7

File tree

10 files changed

+27
-14
lines changed

10 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
If the version of Open Telemetry is unspecified for a version, then it is the same as in the previous release.
44

5+
## 0.20.0-beta.4
6+
7+
* `@splunk/otel-web`
8+
* feat: add `http.status_code` to all resources spans
9+
* Resource spans now contain status code. The status code is set always when browser reports it.
10+
Browser does not report status code for [cross-origin resources](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/responseStatus#value) that do not have [`crossorigin` attribute set](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin).
11+
in such cases, status code is omitted. ([#936](https://github.com/signalfx/splunk-otel-js-web/pull/936))
12+
* fix: do not extend session from discarded session replay spans
13+
* Session is not extended when span is discarded by session replay. Please see detailed info in [PR description](https://github.com/signalfx/splunk-otel-js-web/pull/939).
14+
* There is a possibly breaking change as the `Splunk.getSessionId()` can return `undefined` when previous session
15+
expired and there are no new spans. The API already was typed as returning `string | undefined` hence not
16+
considered as a breaking change. See PR for explanation. ([#939](https://github.com/signalfx/splunk-otel-js-web/pull/939))
17+
518
## 0.20.0-beta.3
619

720
* `@splunk/otel-web`

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
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.20.0-beta.3",
4+
"version": "0.20.0-beta.4",
55
"--workspaces": "Hardcoded so npm runs workspaces commands in order",
66
"workspaces": [
77
"packages/web",

packages/integration-tests/package-lock.json

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

packages/integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@splunk/otel-js-web-integration-tests",
33
"private": true,
4-
"version": "0.20.0-beta.3",
4+
"version": "0.20.0-beta.4",
55
"repository": "github:signalfx/splunk-otel-js-browser",
66
"scripts": {
77
"server": "run-p server:*",

packages/integration-tests/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818

1919
// this is an autogenerated file, see scripts/version-update.js
20-
export const VERSION = '0.20.0-beta.3'
20+
export const VERSION = '0.20.0-beta.4'

packages/session-recorder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/otel-web-session-recorder",
3-
"version": "0.20.0-beta.3",
3+
"version": "0.20.0-beta.4",
44
"description": "Splunk distribution of rrweb for recording session",
55
"repository": "github:signalfx/splunk-otel-js-browser",
66
"scripts": {

packages/session-recorder/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818

1919
// this is an autogenerated file, see scripts/version-update.js
20-
export const VERSION = '0.20.0-beta.3'
20+
export const VERSION = '0.20.0-beta.4'

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/otel-web",
3-
"version": "0.20.0-beta.3",
3+
"version": "0.20.0-beta.4",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818

1919
// this is an autogenerated file, see scripts/version-update.js
20-
export const VERSION = '0.20.0-beta.3'
20+
export const VERSION = '0.20.0-beta.4'

0 commit comments

Comments
 (0)