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 6.1.0 #276

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
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 6.1.0 In progress
## 6.1.0 2024-10-30
* ERM-3369 Update module license, guidance and dependencies for mod-licenses
* ERM-3089 missing content-type header in /licenses/licenses/${uuid}/linkedAgreements response
* Fix and automatically validate module descriptor (Eureka)

## 6.0.4 2024-10-18
* ERM-3387 Description can be too long for index, causing mod-licenses error when updating from 5.0.x to later versions or failure on saving licenses with a long description
Expand Down
2 changes: 2 additions & 0 deletions service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,8 @@ 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-licenses
appVersion=6.1.0-SNAPSHOT
appVersion=6.1.0
okapiInterfaceVersion=6.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": "licenses",
"version": "${info.app.minorVersion}",
"version": "${okapiInterfaceVersion}",
"handlers": [
{
"methods": [
Expand Down