Skip to content

Commit

Permalink
chore: Release 11.1.0
Browse files Browse the repository at this point in the history
Updated CHANGELOG and dependencies, fixed a couple of errant tests

ERM-3264
  • Loading branch information
EthanFreestone committed Oct 31, 2024
1 parent 83840b3 commit ce9bd04
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Change history for ui-agreements

## 11.1.0 In progress
## 11.1.0 2024-10-31
* ERM-3375 Update module license and guidance for ui-agreements
* ERM-3365 UI Agreements does not display monograph information if TitleInstance.Type.label is changed
* ERM-3362 Error on viewing ERM basket
* ERM-3350 Review and cleanup Module Descriptor for ui-agreements
* ERM-3332 Add documents filter to agreement line search
* ERM-3331 Add documents to agreement lines
* ERM-3297 Block save on invalid date in agreement edit
* ERM-3277 Add Material Type filter (Print/Electronic) to Title search
* ERM-3276 Agreements: Can't save page size = 100 in display settings
* ERM-3240 Inline MCL Prev/Next pagination can try to access non-existant pages when syncToLocation != true
* ERM-3231 React v19: refactor ui-agreements away from default props for functional components
* ERM-3183 Create agreement line form does not clear on "Save and create another"
* ERM-3165 Replace moment with dayjs across app suite
* ERM-3135 Sort by Name column does not work in Agreement line search and sort

## 11.0.3 2024-07-05
* ERM-3288 Fix permission on /erm/files/{id}/raw in mod-agreements
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"@babel/eslint-parser": "^7.15.0",
"@folio/eslint-config-stripes": "^7.1.0",
"@folio/jest-config-stripes": "^2.0.0",
"@folio/stripes": "^9.1.0",
"@folio/stripes-acq-components": "^5.1.0",
"@folio/stripes-cli": "^3.1.0",
"@folio/stripes-erm-components": "^9.1.0",
"@folio/stripes-erm-testing": "^2.1.0",
"@folio/stripes": "^9.2.0",
"@folio/stripes-acq-components": "^6.0.0",
"@folio/stripes-cli": "^3.2.0",
"@folio/stripes-erm-components": "^9.2.0",
"@folio/stripes-erm-testing": "^2.2.1",
"@formatjs/cli": "^6.1.3",
"classnames": ">=2.2.6",
"core-js": "^3.6.1",
Expand All @@ -44,7 +44,7 @@
"rxjs": "^6.6.3"
},
"dependencies": {
"@k-int/stripes-kint-components": "^5.8.0",
"@k-int/stripes-kint-components": "^5.8.3",
"@rehooks/local-storage": "^2.4.4",
"compose-function": "^3.0.3",
"final-form": "^4.18.4",
Expand All @@ -59,9 +59,9 @@
"zustand": "^4.1.5"
},
"peerDependencies": {
"@folio/stripes": "^9.1.0",
"@folio/stripes-acq-components": "^5.1.0",
"@folio/stripes-erm-components": "^9.1.0",
"@folio/stripes": "^9.2.0",
"@folio/stripes-acq-components": "^6.0.0",
"@folio/stripes-erm-components": "^9.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ describe('AgreementContentFilter', () => {
});

test('renders the Content field', async () => {
await MultiSelect({
id: 'agreementContent[0]-content-multi-select',
}).exists();
await MultiSelect().exists();
});

test('renders the And/Or dropdown', async () => {
Expand Down
3 changes: 1 addition & 2 deletions src/components/AgreementSections/Lines/Lines.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import { screen, waitFor } from '@folio/jest-config-stripes/testing-library/react';
import { waitFor } from '@folio/jest-config-stripes/testing-library/react';
import { Accordion, Button, MultiColumnList, renderWithIntl } from '@folio/stripes-erm-testing';
import { MemoryRouter } from 'react-router-dom';
import translationsProperties from '../../../../test/helpers';
Expand Down Expand Up @@ -38,7 +38,6 @@ describe('Lines', () => {
});

test('View in agreement lines search button exists', async () => {
screen.debug();
await waitFor(async () => {
await Button('View in agreement lines search').exists();
});
Expand Down

0 comments on commit ce9bd04

Please sign in to comment.