diff --git a/CHANGELOG.md b/CHANGELOG.md index d6e3ef4..455e13d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,11 @@ ## [Unreleased](https://github.com/Dynatrace/openkit-js/compare/v3.0.0...HEAD) -## 3.0.0 [Release date: 2024-04-XX] +## 3.0.0 [Release date: 2024-05-27] ### Changed -- `OpenKitBuilder(beaconURL: string, applicationId: string, deviceId: number | string)` has no longer a deviceId which has type string. +- `OpenKitBuilder(beaconURL: string, applicationId: string, deviceId: number | string)` changed to `OpenKitBuilder(beaconURL: string, applicationId: string, deviceId: number)`, meaning it is no longer possible to use a deviceId of type string. The deviceId must be a decimal number in the range of Number.MIN_SAFE_INTEGER to Number.MAX_SAFE_INTEGER. If the number is outside of this range, not decimal or invalid, it will be hashed. ## 2.3.0 [Release date: 2023-03-13] diff --git a/package.json b/package.json index a11d069..8de1243 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dynatrace/openkit-js", - "version": "2.3.0", + "version": "3.0.0", "description": "OpenKit-JavaScript reference implementation", "author": "Dynatrace", "types": "dist/types/index.d.ts", diff --git a/src/core/PlatformConstants.ts b/src/core/PlatformConstants.ts index 3eed70c..0d0773c 100644 --- a/src/core/PlatformConstants.ts +++ b/src/core/PlatformConstants.ts @@ -20,9 +20,9 @@ import { getVersionNumber } from './utils/Utils'; * The OpenKit-JavaScript version. * For now, it must be equal to the mobile agent version. */ -export const openKitVersion = getVersionNumber(8, 287, { - major: 2, - minor: 3, +export const openKitVersion = getVersionNumber(8, 293, { + major: 3, + minor: 0, build: 0, });