Skip to content

Commit ce9bd04

Browse files
chore: Release 11.1.0
Updated CHANGELOG and dependencies, fixed a couple of errant tests ERM-3264
1 parent 83840b3 commit ce9bd04

File tree

4 files changed

+26
-15
lines changed

4 files changed

+26
-15
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Change history for ui-agreements
22

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

519
## 11.0.3 2024-07-05
620
* ERM-3288 Fix permission on /erm/files/{id}/raw in mod-agreements

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"@babel/eslint-parser": "^7.15.0",
2222
"@folio/eslint-config-stripes": "^7.1.0",
2323
"@folio/jest-config-stripes": "^2.0.0",
24-
"@folio/stripes": "^9.1.0",
25-
"@folio/stripes-acq-components": "^5.1.0",
26-
"@folio/stripes-cli": "^3.1.0",
27-
"@folio/stripes-erm-components": "^9.1.0",
28-
"@folio/stripes-erm-testing": "^2.1.0",
24+
"@folio/stripes": "^9.2.0",
25+
"@folio/stripes-acq-components": "^6.0.0",
26+
"@folio/stripes-cli": "^3.2.0",
27+
"@folio/stripes-erm-components": "^9.2.0",
28+
"@folio/stripes-erm-testing": "^2.2.1",
2929
"@formatjs/cli": "^6.1.3",
3030
"classnames": ">=2.2.6",
3131
"core-js": "^3.6.1",
@@ -44,7 +44,7 @@
4444
"rxjs": "^6.6.3"
4545
},
4646
"dependencies": {
47-
"@k-int/stripes-kint-components": "^5.8.0",
47+
"@k-int/stripes-kint-components": "^5.8.3",
4848
"@rehooks/local-storage": "^2.4.4",
4949
"compose-function": "^3.0.3",
5050
"final-form": "^4.18.4",
@@ -59,9 +59,9 @@
5959
"zustand": "^4.1.5"
6060
},
6161
"peerDependencies": {
62-
"@folio/stripes": "^9.1.0",
63-
"@folio/stripes-acq-components": "^5.1.0",
64-
"@folio/stripes-erm-components": "^9.1.0",
62+
"@folio/stripes": "^9.2.0",
63+
"@folio/stripes-acq-components": "^6.0.0",
64+
"@folio/stripes-erm-components": "^9.2.0",
6565
"react": "^18.2.0",
6666
"react-dom": "^18.2.0",
6767
"react-intl": "^6.4.4",

src/components/AgreementContentFilter/AgreementContentFilter.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ describe('AgreementContentFilter', () => {
4040
});
4141

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

4846
test('renders the And/Or dropdown', async () => {

src/components/AgreementSections/Lines/Lines.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

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

4040
test('View in agreement lines search button exists', async () => {
41-
screen.debug();
4241
await waitFor(async () => {
4342
await Button('View in agreement lines search').exists();
4443
});

0 commit comments

Comments
 (0)