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

MODINVSTOR-1161 SourceId is allowed to be deleted for Holdings record #1024

Merged
merged 14 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## v27.2.0 In progress
### Breaking changes
* Description ([ISSUE\_NUMBER](https://folio-org.atlassian.net/browse/ISSUE_NUMBER))
* Required sourceId field in holdings record ([MODINVSTOR-1161](https://folio-org.atlassian.net/browse/MODINVSTOR-1161))

### New APIs versions
* Provides `API_NAME vX.Y`
* Requires `API_NAME vX.Y`

### Features
* Implement domain event production for location create/update/delete ([MODINVSTOR-1181](https://issues.folio.org/browse/MODINVSTOR-1181))
* Make holdings sourceId field required to restrict updating holdings with null or deleted sourceId field ([MODINVSTOR-1161](https://folio-org.atlassian.net/browse/MODINVSTOR-1161))
* Make holdings' sourceId field required to restrict updating holdings without sourceId field ([MODINVSTOR-1161](https://folio-org.atlassian.net/browse/MODINVSTOR-1161))
viacheslavpoliakov marked this conversation as resolved.
Show resolved Hide resolved

### Bug fixes
* Unintended update of instance records \_version (optimistic locking) whenever any of its holdings or items are created, updated or deleted. ([MODINVSTOR-1186](https://folio-org.atlassian.net/browse/MODINVSTOR-1186))
Expand All @@ -22,6 +22,9 @@
### Dependencies
* Bump `LIB_NAME` from `OLD_VERSION` to `NEW_VERSION`
* Bump `domain-models-runtime` from `35.2.0` to `35.2.2`
* Bump `holdings-storage` from `6.0` to `7.0`
* Bump `holdings-storage-batch-sync` from `1.1` to `2.0`
* Bump `holdings-storage-batch-sync-unsafe` from `1.0` to `2.0`
* Add `LIB_NAME` `2.7.4`
* Remove `LIB_NAME`

Expand Down
6 changes: 3 additions & 3 deletions descriptors/ModuleDescriptor-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
},
{
"id": "holdings-storage",
"version": "6.0",
"version": "7.0",
"handlers": [
{
"methods": ["GET"],
Expand Down Expand Up @@ -112,7 +112,7 @@
},
{
"id": "holdings-storage-batch-sync",
"version": "1.1",
"version": "2.0",
"handlers": [
{
"methods": ["POST"],
Expand All @@ -127,7 +127,7 @@
},
{
"id": "holdings-storage-batch-sync-unsafe",
"version": "1.0",
"version": "2.0",
"handlers": [
{
"methods": ["POST"],
Expand Down
Loading