Skip to content

Commit 4ac6c4f

Browse files
authored
chore(release): 1.1.0 (#1449)
1 parent ee5252c commit 4ac6c4f

File tree

13 files changed

+35
-19
lines changed

13 files changed

+35
-19
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
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+
## 1.1.0
6+
7+
- `@splunk/otel-web`
8+
- **Collect Text from Clicked Elements** [#1332](https://github.com/signalfx/splunk-otel-js-web/pull/1332)
9+
- Click events now capture text content from the clicked elements with privacy-first defaults
10+
- **Default Behavior**: By default, only the element's tag name is collected (e.g., `[Button]`), ensuring no sensitive information is captured
11+
- **Masking & Unmasking**: Use `maskAllText` and `sensitiveRules` configuration options to control text capture behavior, similar to session replay functionality
12+
- **Examples**:
13+
- Default: `Clicked to '[Button]'` for `<button>Potentially sensitive text</button>`
14+
- After explicitly unmasking: `Clicked to 'Potentially sensitive text'`
15+
- See [documentation](https://help.splunk.com/en/splunk-observability-cloud/monitor-end-user-experience/real-user-monitoring/replay-user-sessions/record-browser-sessions) for details on masking configuration
16+
17+
- `@splunk/otel-web-session-recorder`
18+
- **Add browser compatibility guard and enable polyfills for session recorder CDN bundle** [#1450](https://github.com/signalfx/splunk-otel-js-web/pull/1450)
19+
- Prevents session recorder initialization in unsupported browsers and enables automatic polyfill injection for the CDN bundle.
20+
521
## 1.0.1
622

723
- `@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": "1.0.1",
4+
"version": "1.1.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": "1.0.1",
3+
"version": "1.1.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 = '1.0.1'
20+
export const VERSION = '1.1.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": "1.0.1",
4+
"version": "1.1.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 = '1.0.1'
20+
export const VERSION = '1.1.0'

packages/session-recorder/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,24 +90,24 @@ Choose a versioning strategy based on your needs:
9090

9191
```html
9292
<!-- Locks to v1.0.x - gets latest patch updates only -->
93-
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v1.0/splunk-otel-web.js" crossorigin="anonymous"></script>
93+
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v1.1/splunk-otel-web.js" crossorigin="anonymous"></script>
9494
<script
95-
src="https://cdn.signalfx.com/o11y-gdi-rum/v1.0/splunk-otel-web-session-recorder.js"
95+
src="https://cdn.signalfx.com/o11y-gdi-rum/v1.1/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 v1.0.1 - no automatic updates -->
103+
<!-- Locks to exact version v1.1.0 - no automatic updates -->
104104
<script
105-
src="https://cdn.signalfx.com/o11y-gdi-rum/v1.0.1/splunk-otel-web.js"
105+
src="https://cdn.signalfx.com/o11y-gdi-rum/v1.1.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/v1.0.1/splunk-otel-web-session-recorder.js"
110+
src="https://cdn.signalfx.com/o11y-gdi-rum/v1.1.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": "1.0.1",
3+
"version": "1.1.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 = '1.0.1'
20+
export const VERSION = '1.1.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 v1.0.x - gets latest patch updates only -->
81-
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v1.0/splunk-otel-web.js" crossorigin="anonymous"></script>
80+
<!-- Locks to v1.1.x - gets latest patch updates only -->
81+
<script src="https://cdn.signalfx.com/o11y-gdi-rum/v1.1/splunk-otel-web.js" crossorigin="anonymous"></script>
8282
```
8383

8484
**Exact Version Lock**
8585

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

0 commit comments

Comments
 (0)