Skip to content

Commit c09b0c9

Browse files
TheHighriseropenkitdt
authored andcommitted
Pull request #191: RUM-7455 Raise Version to 3.0
Merge in OP/openkit-native from feature/RUM-7455-raise-version-to-3.0 to main * commit 'e1aa527f7f3dc20d9863c1e3f5daa958fd74bed7': RUM-7455 Changing Supported Versions RUM-7455 Applied version update to other files RUM-7455 Raise Version to 3.0 GitOrigin-RevId: 36e29080cfa4d855f113b937a233d6bb3c572ba9
1 parent 315a8dd commit c09b0c9

File tree

7 files changed

+15
-186
lines changed

7 files changed

+15
-186
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# OpenKit Native ( C/C++ ) Changelog
22

3-
## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v2.1.0...HEAD)
3+
## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v3.0.0...HEAD)
4+
5+
## 3.0.0 [Release date: 2022-12-07]
6+
[GitHub Releases](https://github.com/Dynatrace/openkit-native/releases/tag/v3.0.0)
47

58
### Added
69
- User-Agent header for http requests

IAction.h

Lines changed: 0 additions & 175 deletions
This file was deleted.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.2.0.{build}
1+
version: 3.0.0.{build}
22

33
# Build with Visual Studio 2017
44
image: Visual Studio 2017

docs/example.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ This includes device specific information like operating system, manufacturer, o
6161
6262
| Method Name | Description | Default Value |
6363
| ------------- | ------------- | ---------- |
64-
| `withApplicationVersion` | sets the application version | `"2.2.0"` |
65-
| `withOperatingSystem` | sets the operating system name | `"OpenKit 2.2.0"` |
64+
| `withApplicationVersion` | sets the application version | `"3.0.0"` |
65+
| `withOperatingSystem` | sets the operating system name | `"OpenKit 3.0.0"` |
6666
| `withManufacturer` | sets the manufacturer | `"Dynatrace"` |
6767
| `withModelID` | sets the model id | `"OpenKitDevice"` |
6868
| `withBeaconCacheMaxRecordAge` | sets the maximum age of an entry in the beacon cache in milliseconds | 45 min |
@@ -81,8 +81,8 @@ When using the OpenKit C API, additional configuration can applied to the config
8181
8282
| Parameter Name | Description | Default Value |
8383
| ------------- | ------------- | ---------- |
84-
| `useApplicationVersionForConfiguration` | sets the application version | `"2.2.0"` is used when argument is `NULL` |
85-
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 2.2.0"` is used when argument is `NULL` |
84+
| `useApplicationVersionForConfiguration` | sets the application version | `"3.0.0"` is used when argument is `NULL` |
85+
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 3.0.0"` is used when argument is `NULL` |
8686
| `useManufacturerForConfiguration` | sets the manufacturer | `"Dynatrace"` is used when argument is `NULL` |
8787
| `useModelIDForConfiguration` | sets the model id | `"OpenKitDevice"` is used when argument is `NULL` |
8888
| `useBeaconCacheBehaviorForConfiguration` | sets caching behavior for the beacon cache | 45 min retention, 80 MB lower memory boundary, 100 MB upper memory boundary |

docs/supported_versions.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ Example: Version `1.1.7` supersedes `1.1.6` and therefore only `1.1.7` will be m
99
## Active maintenance
1010
| Version | Bug fixes | Security fixes | Remarks |
1111
|---------|:------------------:|:------------------:|------------------|
12+
| 3.0.X | :heavy_check_mark: | :heavy_check_mark: | |
1213
| 2.1.X | :heavy_check_mark: | :heavy_check_mark: | |
13-
| 2.0.X | :heavy_check_mark: | :heavy_check_mark: | |
14-
| 1.1.X | :heavy_check_mark: | :heavy_check_mark: | |
15-
| 1.0.X | :x: | :x: | Upgrade to 1.1.X |
14+
| 2.0.X | :x: | :x: | Upgrade to 2.1.X |
15+
| 1.1.X | :x: | :x: | Upgrade to 2.1.X |
16+
| 1.0.X | :x: | :x: | Upgrade to 2.1.X |
1617

1718

1819
[semver]: https://semver.org/

src/protocol/ProtocolConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace protocol
3434
constexpr const char* QUERY_KEY_SESSION_IDENTIFIER = "si";
3535

3636
// constant query parameter values
37-
constexpr const char* OPENKIT_VERSION = "8.229.20200";
37+
constexpr const char* OPENKIT_VERSION = "8.257.30000";
3838
constexpr const char* PLATFORM_TYPE_OPENKIT = "1";
3939
constexpr const char* AGENT_TECHNOLOGY_TYPE = "okc";
4040
constexpr int32_t PROTOCOL_VERSION = 3;

version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.2.0
1+
version=3.0.0

0 commit comments

Comments
 (0)