Skip to content

Commit bc7ccca

Browse files
release 2.4.0. (#130)
1 parent 19a5d47 commit bc7ccca

File tree

3 files changed

+8
-24
lines changed

3 files changed

+8
-24
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## master
44

5+
## 2.4.0 (2023-08-31)
6+
7+
- [#129](https://github.com/castle/castle-java/pull/129) Update to spring boot 6.0.1 and servlets 6.0.0
8+
- [#127](https://github.com/castle/castle-java/pull/127) Bump com.google.guava:guava from 31.1-jre to 32.0.0-jre
9+
10+
511
## 2.3.2 (2023-06-22)
612

713
- [#125](https://github.com/castle/castle-java/pull/125) Update generated classes to add scores, skip_request_token_validation, skip_context_validation fields, mark risk field as nullable

README.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ When using Maven, add the following dependency to your `pom.xml` file:
1414
<dependency>
1515
<groupId>io.castle</groupId>
1616
<artifactId>castle-java</artifactId>
17-
<version>2.3.2</version>
17+
<version>2.4.0</version>
1818
</dependency>
1919
```
2020

@@ -62,28 +62,6 @@ Castle.setSingletonInstance(castle);
6262
Castle.instance().client().filter(...);
6363
```
6464

65-
## Java 7 configuration
66-
67-
To use the library on a java 7 environment, switch the guava library to the following version:
68-
```xml
69-
<dependency>
70-
<groupId>io.castle</groupId>
71-
<artifactId>castle-java</artifactId>
72-
<version>1.0.3</version>
73-
<exclusions>
74-
<exclusion>
75-
<groupId>com.google.guava</groupId>
76-
<artifactId>guava</artifactId>
77-
</exclusion>
78-
</exclusions>
79-
</dependency>
80-
<dependency>
81-
<groupId>com.google.guava</groupId>
82-
<artifactId>guava</artifactId>
83-
<version>23.0-android</version>
84-
</dependency>
85-
```
86-
8765
# Configuring the SDK
8866

8967
## Settings

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>io.castle</groupId>
77
<artifactId>castle-java</artifactId>
88
<packaging>jar</packaging>
9-
<version>2.3.2</version>
9+
<version>2.4.0</version>
1010

1111
<name>${project.groupId}:${project.artifactId}:${project.version}</name>
1212
<description>Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users

0 commit comments

Comments
 (0)