Skip to content

Commit 1234547

Browse files
authored
chore(release): v2.2.0 (#1645)
1 parent 90cc0ff commit 1234547

File tree

12 files changed

+39
-19
lines changed

12 files changed

+39
-19
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
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+
## 2.2.0
6+
7+
- `@splunk/otel-web`
8+
- **Enable rage clicks by default** [#1641](https://github.com/signalfx/splunk-otel-js-web/pull/1641)
9+
- Rage clicks frustration signal is now enabled by default
10+
- **Remove `_experimental` prefix from `spaMetrics`** [#1640](https://github.com/signalfx/splunk-otel-js-web/pull/1640)
11+
- The spaMetrics feature is now stable and no longer marked as experimental
12+
- **Prevent `session.start` spans and session replay for native sessions** [#1638](https://github.com/signalfx/splunk-otel-js-web/pull/1638)
13+
- Prevents duplicate `session.start` spans and session replay when receiving a session ID from the mobile agent (MRUM)
14+
15+
- `@splunk/otel-web-session-recorder`
16+
- **Update session-replay CDN module to v2.6.7** [#1643](https://github.com/signalfx/splunk-otel-js-web/pull/1643)
17+
18+
- `@splunk/otel-web-build-plugins`
19+
- **Fix build of `@splunk/rum-build-plugins`** [#1644](https://github.com/signalfx/splunk-otel-js-web/pull/1644)
20+
- Fixed broken source map upload functionality for both CommonJS and ES Module consumers
21+
- Added webpack example for end-to-end validation of upload behavior
22+
23+
- **Updated dependencies** [#1626](https://github.com/signalfx/splunk-otel-js-web/pull/1626)
24+
525
## 2.1.0
626

727
- `@splunk/otel-web`

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": "2.1.0",
4+
"version": "2.2.0",
55
"engines": {
66
"node": ">=22",
77
"pnpm": ">=10"

packages/build-plugins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/rum-build-plugins",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Build plugins for users of @splunk/otel-web",
55
"keywords": [
66
"splunk",

packages/build-plugins/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 = '2.1.0'
20+
export const VERSION = '2.2.0'

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": "2.1.0",
4+
"version": "2.2.0",
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 = '2.1.0'
20+
export const VERSION = '2.2.0'

packages/session-recorder/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,25 @@ Choose a versioning strategy based on your needs:
8989
**Minor Version Lock**
9090

9191
```html
92-
<!-- Locks to v2.1.x - gets latest patch updates only -->
93-
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1/splunk-otel-web.js" crossorigin="anonymous"></script>
92+
<!-- Locks to v2.2.x - gets latest patch updates only -->
93+
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2/splunk-otel-web.js" crossorigin="anonymous"></script>
9494
<script
95-
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1/splunk-otel-web-session-recorder.js"
95+
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2/splunk-otel-web-session-recorder.js"
9696
crossorigin="anonymous"
9797
></script>
9898
```
9999

100100
**Exact Version Lock**
101101

102102
```html
103-
<!-- Locks to exact version v2.1.0 - no automatic updates -->
103+
<!-- Locks to exact version v2.2.0 - no automatic updates -->
104104
<script
105-
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1.0/splunk-otel-web.js"
105+
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2.0/splunk-otel-web.js"
106106
crossorigin="anonymous"
107107
integrity="sha384-<integrity>"
108108
></script>
109109
<script
110-
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1.0/splunk-otel-web-session-recorder.js"
110+
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2.0/splunk-otel-web-session-recorder.js"
111111
crossorigin="anonymous"
112112
integrity="sha384-<integrity>"
113113
></script>

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": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Session recorder for Splunk Observability",
55
"keywords": [
66
"splunk",

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 = '2.1.0'
20+
export const VERSION = '2.2.0'

packages/web/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,16 @@ Choose a versioning strategy based on your needs:
7777
**Minor Version Lock**
7878

7979
```html
80-
<!-- Locks to v2.1.x - gets latest patch updates only -->
81-
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1/splunk-otel-web.js" crossorigin="anonymous"></script>
80+
<!-- Locks to v2.2.x - gets latest patch updates only -->
81+
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2/splunk-otel-web.js" crossorigin="anonymous"></script>
8282
```
8383

8484
**Exact Version Lock**
8585

8686
```html
87-
<!-- Locks to exact version v2.1.0 - no automatic updates -->
87+
<!-- Locks to exact version v2.2.0 - no automatic updates -->
8888
<script
89-
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.1.0/splunk-otel-web.js"
89+
src="https://cdn.signalfx.com/o11y-gdi-rum/v2.2.0/splunk-otel-web.js"
9090
crossorigin="anonymous"
9191
integrity="sha384-<integrity>"
9292
></script>

0 commit comments

Comments
 (0)