Skip to content

Commit 53b3a20

Browse files
TheHighriseropenkitdt
authored andcommitted
Pull request #264: RUM-20843 Release 3.3
Merge in OP/openkit-java from feature/RUM-20843-openkit-.net-java-native-release-3.3.0 to main * commit 'cc028fb9be8482adefc7c2d8144cfcdea9744e50': RUM-20843 Supported Versions Update RUM-20843 Release 3.3 GitOrigin-RevId: ed92f3864c9f49f99762c959b0c310e1c78f803f
1 parent 6b5c8f0 commit 53b3a20

File tree

5 files changed

+28
-14
lines changed

5 files changed

+28
-14
lines changed

CHANGELOG.md

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

3-
## [Unreleased](https://github.com/Dynatrace/openkit-java/compare/v3.2.0...HEAD)
3+
## [Unreleased](https://github.com/Dynatrace/openkit-java/compare/v3.3.0...HEAD)
4+
5+
## 3.3.0 [Release date: 2024-08-02]
6+
[GitHub Releases](https://github.com/Dynatrace/openkit-java/releases/tag/v3.3.0)
47

58
### Added
69
- `WebRequestTracer.setBytesSent(long bytes)` to increase the size range

docs/supported_versions.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ Example: Version `1.4.3` supersedes `1.4.2` and therefore only `1.4.3` will be m
99
## Active maintenance
1010
| Version | Bug fixes | Security fixes | Remarks |
1111
|---------|:------------------:|:------------------:|------------------|
12-
| 3.2.X | :heavy_check_mark: | :heavy_check_mark: | |
13-
| 3.1.X | :heavy_check_mark: | :heavy_check_mark: | |
14-
| 3.0.X | :heavy_check_mark: | :heavy_check_mark: | |
15-
| 2.2.X | :heavy_check_mark: | :heavy_check_mark: | |
16-
| 2.1.X | :x: | :x: | Upgrade to 2.2.X |
17-
| 2.0.X | :x: | :x: | Upgrade to 2.2.X |
18-
| 1.4.X | :x: | :x: | Upgrade to 2.2.X |
19-
| 1.3.X | :x: | :x: | Upgrade to 2.2.X |
20-
| 1.2.X | :x: | :x: | Upgrade to 2.2.X |
21-
| 1.1.X | :x: | :x: | Upgrade to 2.2.X |
22-
| 1.0.X | :x: | :x: | Upgrade to 2.2.X |
12+
| 3.3.X | :heavy_check_mark: | :heavy_check_mark: | |
13+
| 3.2.X | :x: | :heavy_check_mark: | |
14+
| 3.1.X | :x: | :heavy_check_mark: | |
15+
| 3.0.X | :x: | :heavy_check_mark: | |
16+
| 2.2.X | :x: | :x: | Upgrade to 3.3.X |
17+
| 2.1.X | :x: | :x: | Upgrade to 3.3.X |
18+
| 2.0.X | :x: | :x: | Upgrade to 3.3.X |
19+
| 1.4.X | :x: | :x: | Upgrade to 3.3.X |
20+
| 1.3.X | :x: | :x: | Upgrade to 3.3.X |
21+
| 1.2.X | :x: | :x: | Upgrade to 3.3.X |
22+
| 1.1.X | :x: | :x: | Upgrade to 3.3.X |
23+
| 1.0.X | :x: | :x: | Upgrade to 3.3.X |
2324

2425

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

docs/upgrade_guide.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Upgrade guide for OpenKit Java
22

3+
## OpenKit Java 3.2 to 3.3
4+
There are no breaking API changes and upgrading is straightforward, by [updating][update] the library
5+
to the latest 3.2 release.
6+
7+
### Deprecated API
8+
* `WebRequestTracer#setBytesSent(int bytes)`
9+
Use `WebRequestTracer#setBytesSent(long bytes)` to increase the size range
10+
* `WebRequestTracer#setBytesReceived(int bytes)`
11+
Use `WebRequestTracer#setBytesReceived(long bytes)` to increase the size range
12+
313
## OpenKit Java 3.1 to 3.2
414
There are no breaking API changes and upgrading is straightforward, by [updating][update] the library
515
to the latest 3.2 release.

src/main/java/com/dynatrace/openkit/protocol/ProtocolConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
public class ProtocolConstants {
2020

2121
// version constants
22-
public static final String OPENKIT_VERSION = "8.281.30300";
22+
public static final String OPENKIT_VERSION = "8.297.30300";
2323
public static final int PROTOCOL_VERSION = 3;
2424
public static final int PLATFORM_TYPE_OPENKIT = 1;
2525
public static final String AGENT_TECHNOLOGY_TYPE = "okjava";

version.properties

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

0 commit comments

Comments
 (0)