Skip to content

Commit 5743fa5

Browse files
Merge pull request #584 from folio-org/tmp-release-17.4.5
Release 17.4.5
2 parents 4dc5700 + fa47126 commit 5743fa5

5 files changed

Lines changed: 26 additions & 5 deletions

File tree

.github/workflows/maven.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Maven central workflow
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
maven:
13+
uses: folio-org/.github/.github/workflows/maven.yml@v1
14+
# Only handle push events from the main branch or tags, to decrease PR noise
15+
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
16+
secrets: inherit
17+
with:
18+
docker-health-command: 'wget --no-verbose --tries=1 --spider http://localhost:8081/admin/health || exit 1'
File renamed without changes.

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 17.4.5 2026-07-28
2+
* Fix intermittent issue with closed requests cannot be viewed (CIRCSTORE-660)
3+
14
## 17.4.4 2026-06-09
25
* Flush and close Kafka producer (CIRCSTORE-654)
36

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<artifactId>mod-circulation-storage</artifactId>
44
<groupId>org.folio</groupId>
5-
<version>17.4.5-SNAPSHOT</version>
5+
<version>17.4.6-SNAPSHOT</version>
66
<licenses>
77
<license>
88
<name>Apache License 2.0</name>

src/main/resources/templates/db_scripts/schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,25 +183,25 @@
183183
"ginIndex": [
184184
{
185185
"fieldName": "item.barcode",
186-
"tOps": "DELETE",
186+
"tOps": "ADD",
187187
"caseSensitive": false,
188188
"removeAccents": true
189189
},
190190
{
191191
"fieldName": "instanceId",
192-
"tOps": "DELETE",
192+
"tOps": "ADD",
193193
"caseSensitive": false,
194194
"removeAccents": true
195195
},
196196
{
197197
"fieldName": "instance.title",
198-
"tOps": "DELETE",
198+
"tOps": "ADD",
199199
"caseSensitive": false,
200200
"removeAccents": true
201201
},
202202
{
203203
"fieldName": "requester.barcode",
204-
"tOps": "DELETE",
204+
"tOps": "ADD",
205205
"caseSensitive": false,
206206
"removeAccents": true
207207
},

0 commit comments

Comments
 (0)