Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ This sapi library has (mostly) been superseded by sapi-nt.

There are two versions of it which remain in use in legacy services - sapi 2.x and sapi 3.x.

### sapi 2.x
### sapi 2.x/4.x

This version is used in fsa-cat-api and standard-reports-manager.

This is managed on the `main` branch (this branch).
This is managed on the `main` branch (this branch). The 2.x release is also maintained on the `maintenance/2.x` branch.

### sapi 3.x

Expand Down Expand Up @@ -36,6 +36,8 @@ mvn clean deploy

## Changelog

`4.0.0` - major new release of sapi from the 2.x line. Addresses multiple CVEs and moves to Java 21 and Jena 5
`2.3.15` - minor update of dependencies to address CVEs
`2.3.14` - allow use of CONSTRUCT in item queries
`2.3.13` - improve return status codes, only retry on 50X errors
`2.3.12` - find missing logging for query retry
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.epimorphics</groupId>
<artifactId>sapi</artifactId>
<packaging>pom</packaging>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
<name>sapi</name>
<description>Simple API</description>

Expand Down
4 changes: 2 additions & 2 deletions sapi-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<parent>
<groupId>com.epimorphics</groupId>
<artifactId>sapi</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
</parent>

<dependencies>
<dependency>
<groupId>com.epimorphics</groupId>
<artifactId>sapi-lib</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions sapi-doctool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<parent>
<groupId>com.epimorphics</groupId>
<artifactId>sapi</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
</parent>

<dependencies>

<dependency>
<groupId>com.epimorphics</groupId>
<artifactId>sapi-lib</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion sapi-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.epimorphics</groupId>
<artifactId>sapi</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
Loading