Skip to content

Commit 3e94f2e

Browse files
authored
chore(release): v0.24.0 (#1346)
1 parent b1c7892 commit 3e94f2e

File tree

10 files changed

+26
-9
lines changed

10 files changed

+26
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
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.24.0
6+
7+
- `@splunk/otel-web`
8+
- **Deprecation Warnings**: Added console warning messages for better visibility of previously deprecated APIs and configuration options. [#1345](https://github.com/signalfx/splunk-otel-js-web/pull/1345)
9+
- These items were deprecated in earlier versions but now show explicit deprecation warnings to help users migrate before they are removed in a future major version:
10+
- **Configuration Options**: The following configuration options have been renamed and the old names will show deprecation warnings:
11+
- `app` → Use `applicationName` instead
12+
- `beaconUrl` → Use `beaconEndpoint` instead
13+
- `environment` → Use `deploymentEnvironment` instead
14+
- `rumAuth` → Use `rumAccessToken` instead
15+
- **API Methods**: The following methods are deprecated:
16+
- `SplunkRum._experimental_getGlobalAttributes()` → Use `SplunkRum.getGlobalAttributes()` instead
17+
- `SplunkRum.error(...args)` → Use `SplunkRum.reportError(error, context)` instead
18+
- `SplunkRum._experimental_addEventListener(name, callback)` → Use `SplunkRum.addEventListener(name, callback)` instead
19+
- `SplunkRum._experimental_removeEventListener(name, callback)` → Use `SplunkRum.removeEventListener(name, callback)` instead
20+
- `SplunkRum._experimental_getSessionId()` → Use `SplunkRum.getSessionId()` instead
21+
522
## 0.23.1
623

724
- `@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": "0.23.1",
4+
"version": "0.24.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": "0.23.1",
3+
"version": "0.24.0",
44
"description": "Build plugins for users of @splunk/otel-web",
55
"repository": "github:signalfx/splunk-otel-js-browser",
66
"scripts": {

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 = '0.23.1'
20+
export const VERSION = '0.24.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": "0.23.1",
4+
"version": "0.24.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 = '0.23.1'
20+
export const VERSION = '0.24.0'

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.23.1",
3+
"version": "0.24.0",
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.23.1'
20+
export const VERSION = '0.24.0'

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.23.1",
3+
"version": "0.24.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

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.23.1'
20+
export const VERSION = '0.24.0'

0 commit comments

Comments
 (0)