Skip to content

Commit

Permalink
Release 4.1.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealAgentK committed Aug 5, 2024
1 parent 821dfa9 commit ff4bc29
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 16 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
* 4.0.1-SNAPSHOT
* 4.1.0

* Feature: Physical memory is tracked on Sun/Oracle JVMs (#74)
* Docs: Various updates and fixes (#70 #88)
* Fix: `RaygunClientMessage` was sending the wrong provider SDK version (#87)
* Fix: `sendUnhandled` behaved incorrectly (#72)
* Internal: Improved sbt-based build flow for `playprovider`
* Internal: Project-management upgrades (#96 #89)
* Internal: Environment now POSIX-compliant

* [Internal] Improved sbt-based build flow for `playprovider`

* 4.0.0

* Added new `webproviderjakarta` middleware module for Jakarta EE support and a corresponding sample app.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This provider provides support for sending exceptions from desktop Java, Scala,
These instructions assume you have a Maven project with a POM file set up in Eclipse, but this is also applicable to other IDEs and environments.

1. Open your project's pom.xml in Eclipse. Click on Dependencies -> Add. In the pattern search box, type `com.mindscapehq`.
2. - Add `com.mindscape.raygun4java` and `com.mindscapehq.core` in the desired version (the current stable release is `4.0.0`).
2. - Add `com.mindscape.raygun4java` and `com.mindscapehq.core` in the desired version (the current stable release is `4.1.0`).
- If you are working in a web environment, add the `com.mindscapehq.webprovider` dependency too.
- If you wish to grab the example project, you can also get or build the `sampleapp` jar.
3. Save your POM, and the dependencies should appear in Maven dependencies.
Expand All @@ -26,7 +26,7 @@ The pom.xml will need to contain something like:
<dependency>
<groupId>com.mindscapehq</groupId>
<artifactId>core</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
</dependencies>
```
Expand All @@ -39,7 +39,7 @@ If you're using servlets, JSPs or similar, you'll need to also add:
<dependency>
<groupId>com.mindscapehq</groupId>
<artifactId>webprovider</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -261,13 +261,13 @@ Add the following line to your `build.sbt`'s `libraryDependencies`:
```
libraryDependencies ++= Seq(
"com.mindscapehq" % "raygun4java-play2" % "4.0.0"
"com.mindscapehq" % "raygun4java-play2" % "4.1.0"
)
```
#### With Maven
Add the `raygun4java-play2-4.0.0` dependency to your `pom.xml` (following the instructions under 'With Maven and a command shell' at the top of this file).
Add the `raygun4java-play2-4.1.0` dependency to your `pom.xml` (following the instructions under 'With Maven and a command shell' at the top of this file).
### Usage
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>core</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class RaygunClientMessage {

public RaygunClientMessage() {
setName("Raygun4Java");
setVersion("4.0.1");
setVersion("4.1.0");
setClientUrlString("https://github.com/MindscapeHQ/raygun4java");
}

Expand Down
2 changes: 1 addition & 1 deletion playprovider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<scm>
<url>https://github.com/mindscapehq/raygun4java</url>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
<name>Raygun4Java parent project</name>
<packaging>pom</packaging>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion sampleJakartaEEApp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>sampleJakartaEEApp</artifactId>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion sampleapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>sampleapp</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion webprovider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>webprovider</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion webproviderjakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.mindscapehq</groupId>
<artifactId>raygun4java</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>webproviderjakarta</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit ff4bc29

Please sign in to comment.