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 v12.0.4 #2686

Merged
merged 3 commits into from
Dec 3, 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
13 changes: 3 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
# Change history for ui-inventory

## [13.0.0] (IN PROGRESS)
## [12.0.4](https://github.com/folio-org/ui-inventory/tree/v12.0.4) (2024-12-03)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v12.0.3...v12.0.4)

* ECS | Instance details pane does not contain all tenants when user does not have affiliations / permissions in all tenants. Fixes UIIN-3113.
* *BREAKING* Rename quick-marc routes from `bib` to `bibliographic` and `duplicate` to `derive`. Refs UIIN-3120.
* *BREAKING* Provide necessary props for browse lookup facets. Remove the facets state reset functionality. Refs UIIN-3099.
* Add permission for "Share local instance" option on Member tenants. Refs UIIN-3140.
* React v19: refactor away from default props for functional components. Refs UIIN-2890.

## [12.0.4] (IN PROGRESS)

* Display informative error message when editing same instance, holdings, item in two tabs. Fixes UIIN-3127.
* Display user's name instead of "Unknown user" in "Last updated" field in "Settings" for member tenant. Fixes UIIN-3144.
* Update Linked data API URL to use the new API path. Fixes UIIN-3146.

## [12.0.3](https://github.com/folio-org/ui-inventory/tree/v12.0.3) (2024-11-27)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v12.0.2...v12.0.3)
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/inventory",
"version": "12.0.3",
"version": "12.0.4",
"description": "Inventory manager",
"repository": "folio-org/ui-inventory",
"publishConfig": {
Expand Down Expand Up @@ -646,7 +646,8 @@
"ui-inventory.instance.view",
"inventory.instances.item.post",
"inventory-storage.instances.item.post",
"browse.contributors.instances.collection.get"
"browse.contributors.instances.collection.get",
"consortia.inventory.local.sharing-instances.execute"
],
"visible": true
},
Expand Down
2 changes: 1 addition & 1 deletion src/ViewInstance.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class ViewInstance extends React.Component {
},
checkCanBeOpenedInLinkedData: {
type: 'okapi',
path: 'resource/check/:{id}/supported',
path: 'linked-data/inventory-instance/:{id}/import-supported',
accumulate: true,
throwErrors: false,
}
Expand Down
Loading