Skip to content

Commit

Permalink
Pull request #191: RUM-7455 Raise Version to 3.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
TheHighriser authored and openkitdt committed Dec 15, 2022
1 parent 315a8dd commit c09b0c9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 186 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# OpenKit Native ( C/C++ ) Changelog

## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v2.1.0...HEAD)
## [Unreleased](https://github.com/Dynatrace/openkit-native/compare/v3.0.0...HEAD)

## 3.0.0 [Release date: 2022-12-07]
[GitHub Releases](https://github.com/Dynatrace/openkit-native/releases/tag/v3.0.0)

### Added
- User-Agent header for http requests
Expand Down
175 changes: 0 additions & 175 deletions IAction.h

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.2.0.{build}
version: 3.0.0.{build}

# Build with Visual Studio 2017
image: Visual Studio 2017
Expand Down
8 changes: 4 additions & 4 deletions docs/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ This includes device specific information like operating system, manufacturer, o
| Method Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `withApplicationVersion` | sets the application version | `"2.2.0"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 2.2.0"` |
| `withApplicationVersion` | sets the application version | `"3.0.0"` |
| `withOperatingSystem` | sets the operating system name | `"OpenKit 3.0.0"` |
| `withManufacturer` | sets the manufacturer | `"Dynatrace"` |
| `withModelID` | sets the model id | `"OpenKitDevice"` |
| `withBeaconCacheMaxRecordAge` | sets the maximum age of an entry in the beacon cache in milliseconds | 45 min |
Expand All @@ -81,8 +81,8 @@ When using the OpenKit C API, additional configuration can applied to the config
| Parameter Name | Description | Default Value |
| ------------- | ------------- | ---------- |
| `useApplicationVersionForConfiguration` | sets the application version | `"2.2.0"` is used when argument is `NULL` |
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 2.2.0"` is used when argument is `NULL` |
| `useApplicationVersionForConfiguration` | sets the application version | `"3.0.0"` is used when argument is `NULL` |
| `useOperatingSystemForConfiguration` | sets the operating system name | `"OpenKit 3.0.0"` is used when argument is `NULL` |
| `useManufacturerForConfiguration` | sets the manufacturer | `"Dynatrace"` is used when argument is `NULL` |
| `useModelIDForConfiguration` | sets the model id | `"OpenKitDevice"` is used when argument is `NULL` |
| `useBeaconCacheBehaviorForConfiguration` | sets caching behavior for the beacon cache | 45 min retention, 80 MB lower memory boundary, 100 MB upper memory boundary |
Expand Down
7 changes: 4 additions & 3 deletions docs/supported_versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ Example: Version `1.1.7` supersedes `1.1.6` and therefore only `1.1.7` will be m
## Active maintenance
| Version | Bug fixes | Security fixes | Remarks |
|---------|:------------------:|:------------------:|------------------|
| 3.0.X | :heavy_check_mark: | :heavy_check_mark: | |
| 2.1.X | :heavy_check_mark: | :heavy_check_mark: | |
| 2.0.X | :heavy_check_mark: | :heavy_check_mark: | |
| 1.1.X | :heavy_check_mark: | :heavy_check_mark: | |
| 1.0.X | :x: | :x: | Upgrade to 1.1.X |
| 2.0.X | :x: | :x: | Upgrade to 2.1.X |
| 1.1.X | :x: | :x: | Upgrade to 2.1.X |
| 1.0.X | :x: | :x: | Upgrade to 2.1.X |


[semver]: https://semver.org/
2 changes: 1 addition & 1 deletion src/protocol/ProtocolConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace protocol
constexpr const char* QUERY_KEY_SESSION_IDENTIFIER = "si";

// constant query parameter values
constexpr const char* OPENKIT_VERSION = "8.229.20200";
constexpr const char* OPENKIT_VERSION = "8.257.30000";
constexpr const char* PLATFORM_TYPE_OPENKIT = "1";
constexpr const char* AGENT_TECHNOLOGY_TYPE = "okc";
constexpr int32_t PROTOCOL_VERSION = 3;
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.2.0
version=3.0.0

0 comments on commit c09b0c9

Please sign in to comment.