Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.1.0 #833

Merged
merged 2 commits into from
Oct 30, 2024
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
18 changes: 17 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
## 7.1.0 In progress
## 7.1.0 2024-10-30
* ERM-3394 Ensure initial pushkb support in Ramsons
* ERM-3284 GOKb ingest process should handle multiple coverage statements on a single TIPP/PCI
* ERM-3368 Update module license, guidance and dependencies for mod-agreements
* ERM-3331 Add documents to agreement lines
* ERM-3330 Open ended coverage statements not ingested from GOKb
* ERM-3299 Minimise supplementary term data populated as reference data
* ERM-3281 Design and implement process to resolve eissn, pissn, eisbn and pisbn namespaces
* ERM-3257 Write integration tests for title instance resolving use cases
* ERM-3225 Upgrade commons-fileupload from 1.4 to 1.5 fixing FileUpload DoS CVE-2023-24998
* Performance upgrades around session management for harvest
* Additional logging information for harvest
* Sample data now has Gokb RemoteKB OFF by default
* Fix for connection closed error when changing schema
* Automated integration test runners
* Fix and automatically validate module descriptor (Eureka)
* Tweaked how code reads from grailsApplication (getProperty(\*) instead of config.\*)
* Separate out interface and version number

## 7.0.9 2024-10-18
* Fixed problem with concurrentJobsGlobal not actually reading from environment variable
Expand Down
3 changes: 3 additions & 0 deletions service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,9 @@ project.gradle.projectsEvaluated {
// Get a System property
properties.setProperty('build.java.version', System.getProperty('java.version'))

properties.setProperty('okapiInterfaceVersion', "$okapiInterfaceVersion")


// Write the properties back to the file
grailsBuildInfoFile.withOutputStream {
properties.store(it,null)
Expand Down
3 changes: 2 additions & 1 deletion service/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ gormVersion=8.0.3

# Application
appName=mod-agreements
appVersion=7.1.0-SNAPSHOT
appVersion=7.1.0
okapiInterfaceVersion=7.1
dockerTagSuffix=
dockerRepo=folioci

Expand Down
2 changes: 1 addition & 1 deletion service/src/main/okapi/ModuleDescriptor-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"provides": [
{
"id": "erm",
"version": "${info.app.minorVersion}",
"version": "${okapiInterfaceVersion}",
"handlers": [
{
"methods": [
Expand Down