From ec61793105f02dc6ec65952b248a997d326c59b7 Mon Sep 17 00:00:00 2001
From: Dmitriy-Butramyou <49509644+Dmitriy-Butramyou@users.noreply.github.com>
Date: Wed, 11 Oct 2023 21:32:21 +0400
Subject: [PATCH 1/5] [MODORDSTOR-352] - Release v13.6.0 (#349)
* [MODORDSTOR-352] - updated NEWS
* [MODORDSTOR-352] - folio-kafka-wrapper updated
* [maven-release-plugin] prepare release v13.6.0
* [maven-release-plugin] prepare for next development iteration
---
NEWS.md | 18 ++++++++++++++++++
pom.xml | 4 ++--
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/NEWS.md b/NEWS.md
index 60158411..9191e3d5 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,22 @@
+## 13.7.0 - Unreleased
+
## 13.6.0 - Unreleased
+The primary focus of this release was to implement endpoint to update order lines in batch
+
+[Full Changelog](https://github.com/folio-org/mod-orders-storage/compare/v13.5.0...v13.6.0)
+
+### Stories
+* [MODORDSTOR-346](https://issues.folio.org/browse/MODORDSTOR-346) - Upgrade folio-kafka-wrapper to 3.0.0 version
+* [MODORDSTOR-344](https://issues.folio.org/browse/MODORDSTOR-344) - Implement endpoint to update order lines in batch
+* [MODORDSTOR-342](https://issues.folio.org/browse/MODORDSTOR-342) - Update to Java 17 mod-orders-storage
+* [MODORDSTOR-330](https://issues.folio.org/browse/MODORDSTOR-330) - Update dependent raml-util
+* [MODORDSTOR-281](https://issues.folio.org/browse/MODORDSTOR-281) - Logging improvement
+
+### Bug Fixes
+* [MODORDSTOR-343](https://issues.folio.org/browse/MODORDSTOR-343) - Duplicated PO lines have the same numbers related to newly created duplicated order
+
+### Dependencies
+* Bump `java version` from `11` to `17`
## 13.5.0 - Released (Orchid R1 2023)
The focus of this release is to replace PGUtil to use PostgresClient and
diff --git a/pom.xml b/pom.xml
index a73b3086..497cb1ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
org.folio
mod-orders-storage
- 13.6.0-SNAPSHOT
+ 13.7.0-SNAPSHOT
jar
@@ -186,7 +186,7 @@
org.folio
folio-kafka-wrapper
- 3.0.0-SNAPSHOT
+ 3.0.0
io.vertx
From fe6b70a2cd5a7d43277cc8cc85d475a9ae4385df Mon Sep 17 00:00:00 2001
From: Abdulkhakimov <89521577+Abdulkhakimov@users.noreply.github.com>
Date: Fri, 13 Oct 2023 14:17:19 +0500
Subject: [PATCH 2/5] [MODORG-59] - Introduce 'isDonor' indicator for
organizations (#350)
---
ramls/acq-models | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ramls/acq-models b/ramls/acq-models
index 505ff2e9..09808173 160000
--- a/ramls/acq-models
+++ b/ramls/acq-models
@@ -1 +1 @@
-Subproject commit 505ff2e91f7d5f0e1fc164ad959d4af7e8d76900
+Subproject commit 098081739d492c1496800225322f538df21aaf19
From d8db577a67fd11e4660bf574814ed7bf4916fe76 Mon Sep 17 00:00:00 2001
From: Azizbek Khushvakov <113523904+azizbekxm@users.noreply.github.com>
Date: Fri, 20 Oct 2023 13:58:17 +0500
Subject: [PATCH 3/5] [MODORDERS-944/MODORDERS-948/MODFIN-333] - Update
acq-models (#351)
---
ramls/acq-models | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ramls/acq-models b/ramls/acq-models
index 09808173..60f52555 160000
--- a/ramls/acq-models
+++ b/ramls/acq-models
@@ -1 +1 @@
-Subproject commit 098081739d492c1496800225322f538df21aaf19
+Subproject commit 60f525555a9db9942c5b2ce22bed0a8d79cd3a13
From abe566100f9b2f3583b95787546e251b6c857929 Mon Sep 17 00:00:00 2001
From: Azizbek Khushvakov <113523904+azizbekxm@users.noreply.github.com>
Date: Tue, 24 Oct 2023 16:26:01 +0500
Subject: [PATCH 4/5] [MODORDERS - 944] - Added donorOrganizationIds index
(#352)
* [MODORDERS-944/MODORDERS-948/MODFIN-333] - Update acq-models
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Removed ginIndex for donorOrganizationIds
* [MODORDERS-944] - Removed fullTextIndex for donorOrganizationIds
* [MODORDERS-944] - Removed fullTextIndex for donorOrganizationIds
---
src/main/resources/templates/db_scripts/schema.json | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/main/resources/templates/db_scripts/schema.json b/src/main/resources/templates/db_scripts/schema.json
index 5e1f4eb5..d52e844a 100644
--- a/src/main/resources/templates/db_scripts/schema.json
+++ b/src/main/resources/templates/db_scripts/schema.json
@@ -137,6 +137,10 @@
"fieldName": "assignedTo",
"caseSensitive": false
},
+ {
+ "fieldName": "donorOrganizationIds",
+ "caseSensitive": false
+ },
{
"fieldName": "metadata.createdDate",
"caseSensitive": false
From 69a7e3c532460d6cb190e2e495a22db16c702c81 Mon Sep 17 00:00:00 2001
From: Azizbek Khushvakov <113523904+azizbekxm@users.noreply.github.com>
Date: Wed, 25 Oct 2023 18:03:23 +0500
Subject: [PATCH 5/5] [MODORDERS - 944] - Added index for donorOrganizationIds
(#353)
* [MODORDERS-944/MODORDERS-948/MODFIN-333] - Update acq-models
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Removed ginIndex for donorOrganizationIds
* [MODORDERS-944] - Removed fullTextIndex for donorOrganizationIds
* [MODORDERS-944] - Removed fullTextIndex for donorOrganizationIds
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Added index for donorOrganizationIds
* [MODORDERS-944] - Added index for donorOrganizationIds
---
src/main/resources/templates/db_scripts/schema.json | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/main/resources/templates/db_scripts/schema.json b/src/main/resources/templates/db_scripts/schema.json
index d52e844a..200f1d8d 100644
--- a/src/main/resources/templates/db_scripts/schema.json
+++ b/src/main/resources/templates/db_scripts/schema.json
@@ -137,10 +137,6 @@
"fieldName": "assignedTo",
"caseSensitive": false
},
- {
- "fieldName": "donorOrganizationIds",
- "caseSensitive": false
- },
{
"fieldName": "metadata.createdDate",
"caseSensitive": false
@@ -347,6 +343,11 @@
"caseSensitive": false,
"removeAccents": true
},
+ {
+ "fieldName": "donorOrganizationIds",
+ "caseSensitive": false,
+ "removeAccents": true
+ },
{
"fieldName": "title",
"tOps": "DELETE"