Skip to content

Commit

Permalink
Pull request #151: RUM-19690 Preparing 3.0 Major Release
Browse files Browse the repository at this point in the history
Merge in OP/openkit-js from feature/RUM-19690-openkit-javascript-major-3.0-release to main

* commit '9aebb348241b6a386ebcca5367992189d7ca5d08':
  RUM-19690 Adding more text to changelog
  RUM-19690 Date typo
  RUM-19690 Preparing 3.0 Major Release

GitOrigin-RevId: abc6a0db68385136bf8465c5c25b319e48240ded
  • Loading branch information
TheHighriser authored and openkitdt committed May 27, 2024
1 parent bbd6192 commit e40fa74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/core/PlatformConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});

Expand Down

0 comments on commit e40fa74

Please sign in to comment.