Skip to content

Commit

Permalink
chore: Release 8.1.0
Browse files Browse the repository at this point in the history
Added to changelog section, linting and gitignore tweaks

ERM-2002
  • Loading branch information
EthanFreestone committed Mar 3, 2022
1 parent 770281a commit b32152c
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

yarn.lock

# Runtime data
pids
*.pid
Expand Down
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
# Change history for ui-licenses

## 8.1.0 IN PROGRESS
## 8.1.0 2022-03-03
* ERM-1982 Licenses: Organization interface credentials malfunction
* ERM-1945 Add AppSettings panel to Licenses
* ERM-1898 Upgrade `@folio/react-intl-safe-html` for compatibility with `@folio/stripes` `v7`.
* ERM-1758 Licenses: Apply keyboard shortcuts modal guidelines
* ERM-1745 Add Organisations to Licenses simple search widget definition
* ERM-1628 Expand emptyAccordion.* {type} for correct translations
* FAT-82
* ERM-1508 PickListValueSettings
* ERM-1506 withFileHandlers
* ERM-1505 ViewLicenseRoute
* ERM-1504 ViewAmendmentRoute
* ERM-1503 NoteViewRoute
* ERM-1496 CreateAmendmentRoute
* ERM-1344 formSections
* ERM-1454 LicenseFormOrganizations
* ERM-1453 LicenseFormInternalContacts
* ERM-1452 LicenseFormInfo
* ERM-1451 FormTerms
* ERM-1450 FormSupplementaryDocs
* ERM-1449 FormCoreDocs
* ERM-1448 AmendmentFormInfo
* ERM-1301 NoPermissions
* ERM-1300 LicenseForm
* ERM-1293 Amendment

* Upgrade `@folio/react-intl-safe-html` for compatibility with `@folio/stripes` `v7`. ERM-1898

## 8.0.0 2021-10-07
* Fixed bug with error on saving license if a change is made to the visibility (internal) flag of a primary property without populating it. ERM-1770
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"@bigtest/interactor": "^0.9.3",
"@bigtest/mocha": "^0.5.2",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^6.0.0",
"@folio/stripes": "^7.0.0",
"@folio/stripes-cli": "^2.3.0",
"@folio/stripes-testing": "^4.0.0",
"@folio/eslint-config-stripes": "^6.1.0",
"@folio/stripes": "^7.1.0",
"@folio/stripes-cli": "^2.5.0",
"@folio/stripes-testing": "^4.2.0",
"@formatjs/cli": "^4.2.29",
"@testing-library/dom": "^7.26.6",
"@testing-library/jest-dom": "^5.11.5",
Expand Down Expand Up @@ -63,9 +63,9 @@
},
"dependencies": {
"@folio/react-intl-safe-html": "^3.1.0",
"@folio/stripes-erm-components": "^6.0.0",
"@folio/stripes-erm-components": "^6.1.0",
"@k-int/stripes-kint-components": "^1.7.0",
"@folio/stripes-testing": "^4.0.0",
"@folio/stripes-testing": "^4.2.0",
"@rehooks/local-storage": "2.4.0",
"@testing-library/react": "^12.1.2",
"compose-function": "^3.0.3",
Expand All @@ -79,7 +79,7 @@
"react-router-prop-types": "^1.0.4"
},
"peerDependencies": {
"@folio/stripes": "^7.0.0",
"@folio/stripes": "^7.1.0",
"moment": "^2.22.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/ViewAmendmentRoute/ViewAmendmentRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ViewAmendmentRoute extends React.Component {
}).isRequired,
resources: PropTypes.shape({
license: PropTypes.object,
linkedAgreements: PropTypes.array,
linkedAgreements: PropTypes.arrayOf(PropTypes.object),
terms: PropTypes.object,
}).isRequired,
stripes: PropTypes.shape({
Expand Down
4 changes: 2 additions & 2 deletions test/bigtest/tests/pick-list-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe('Pick list', () => {
this.server.create('pickList', refDataCategories[3]);
}

/* describe('Pick lists', () => {
describe.skip('Pick lists', () => {
setupApplication();
const interactor = new PickListInteractor();

Expand Down Expand Up @@ -170,5 +170,5 @@ describe('Pick list', () => {
});
});
});
}); */
});
});

0 comments on commit b32152c

Please sign in to comment.