Skip to content

Commit

Permalink
version 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviarla authored and jhpark816 committed Sep 27, 2024
1 parent 1b3b052 commit a3a32ef
Show file tree
Hide file tree
Showing 4 changed files with 21 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-09-27 [version 1.14.0]
## 🐣 New Features
* If the method returns null, store NullValue instance in the cache server by default.
* Delete unused deprecated codes.
* Remove deprecation of wantToGetException. It is false by default and it can be changed by ArcusCacheConfiguration.
* Provide better interface to construct ArcusCacheManager, ArcusCacheConfiguration, and ArcusCache.
## ✅ Testing
* Upgrade Junit version to 5.10.2.
## ⬆️ Dependency Upgrades
* Upgrade Java version to 8.
* Upgrade Spring version to 5.3.33.
* Upgrade arcus-java-client version to 1.14.0

# 2024-06-20 [version 1.13.6]
## 🐣 New Features
* Read and return null if cache server stored NullValue instance.
Expand Down
7 changes: 4 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.6</version>
<version>1.14.0</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.6'
compile 'com.jam2in.arcus:arcus-spring:1.14.0'
}
```
##### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.6'
implementation 'com.jam2in.arcus:arcus-spring:1.14.0'
}
```

Expand All @@ -59,6 +59,7 @@ For example, when the parameters are 'a', 'b', 'c', StringKeyGenerator creates t
Spring Cache configuration is required before using arcus-spring. Create ArcusCacheManager and StringKeyGenerator with the following configuration.

#### XML
- Use ArcusClientFactoryBean or ArcusCacheConfigurationFactoryBean because these classes do not provide default constructor and setter.
```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
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.6</version>
<version>1.14.0</version>
</dependency>
</dependencies>
```
Expand All @@ -20,13 +20,13 @@
#### version 7.0 before
```groovy
dependencies {
compile 'com.jam2in.arcus:arcus-spring:1.13.6'
compile 'com.jam2in.arcus:arcus-spring:1.14.0'
}
```
#### version 7.0 or later
```groovy
dependencies {
implementation 'com.jam2in.arcus:arcus-spring:1.13.6'
implementation 'com.jam2in.arcus:arcus-spring:1.14.0'
}
```

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.6</version>
<version>1.14.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit a3a32ef

Please sign in to comment.