Skip to content

Commit

Permalink
version 1.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
uhm0311 authored and jhpark816 committed Jun 20, 2024
1 parent 13a5664 commit 50d116c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 2024-06-20 [version 1.13.6]
## 🐣 New Features
* Read and return null if cache server stored NullValue instance.
* Throw ValueRetrievalException if failed to get original value.
* Add setter method to ArcusCacheConfiguration which can change value of wantToGetException.
## 🔧 Enhancements
* Refactored codes for better readability.
## 🐛 Bug Fixes
* Set default value of wantToGetException to false regardless of ArcusCache object creation method.
* Fix inconsistent exception handling.
## ✅ Testing
* Fix wrong mock of ArcusClientPool in test code.

# 2024-04-01 [version 1.13.5]
## 🐣 New Features
* Add @Nullable annotation for support JSR-305
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The artifact for arcus-spring is in the central Maven repository. To use it, add
<dependency>
<groupId>com.jam2in.arcus</groupId>
<artifactId>arcus-spring</artifactId>
<version>1.13.5</version>
<version>1.13.6</version>
</dependency>
</dependencies>
```
Expand All @@ -34,13 +34,13 @@ The artifact for arcus-spring is in the central Maven repository. To use it, add
##### version 7.0 before
```groovy
dependencies {
compile 'com.jam2in.arcus:arcus-spring:1.13.5'
compile 'com.jam2in.arcus:arcus-spring:1.13.6'
}
```
##### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.5'
implementation 'com.jam2in.arcus:arcus-spring:1.13.6'
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/03-arcus-spring-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.jam2in.arcus</groupId>
<artifactId>arcus-spring</artifactId>
<version>1.13.5</version>
<version>1.13.6</version>
</dependency>
</dependencies>
```
Expand All @@ -20,13 +20,13 @@
#### version 7.0 before
```groovy
dependencies {
compile 'com.jam2in.arcus:arcus-spring:1.13.5'
compile 'com.jam2in.arcus:arcus-spring:1.13.6'
}
```
#### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.5'
implementation 'com.jam2in.arcus:arcus-spring:1.13.6'
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<name>arcus-spring</name>
<packaging>jar</packaging>
<url>https://github.com/naver/arcus-spring</url>
<version>1.13.5</version>
<version>1.13.6</version>

<properties>
<org.springframework.version>4.3.10.RELEASE</org.springframework.version>
Expand Down

0 comments on commit 50d116c

Please sign in to comment.