Skip to content

Commit

Permalink
Merge pull request #10 from tdilauro/merge-from-simplified
Browse files Browse the repository at this point in the history
* Updated opds-web-client to 0.6.3 to fix a List Manager bug.

* Updated node-sass and sass-loader dependency versions to reduce the number of high risk vulnerabilities.

* Updated CustomListEditor so that the "Save this list" button is disabled if either title or entries are absent, and enabled if both are present.

* Updated the book cover editor so that the current cover URL pulls through not as a value in the input (as described in v0.5.3), but as a description beneath the input.

* Added a value attribute to the book cover URL's EditableInput in BookCoverEditor so that the existing URL pulls through for the user to start.

* Prepended all deprecated React lifecycle methods (componentWillMount and componentWillReceiveProps) with UNSAFE_.
  • Loading branch information
tdilauro authored Sep 27, 2021
2 parents e8aeb89 + 7320a99 commit 7e99304
Show file tree
Hide file tree
Showing 278 changed files with 11,271 additions and 9,841 deletions.
9 changes: 8 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@
"@typescript-eslint/no-explicit-any": 0,
"no-useless-escape": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"react/prop-types": 0
"react/prop-types": 0,
"@typescript-eslint/camelcase": 0,
"react/no-string-refs": 0,
"jsx-a11y/label-has-associated-control": 0,
"react/no-find-dom-node": 0,
"jsx-a11y/label-has-for": 0,
"react/no-unescaped-entities": 0,
"@typescript-eslint/no-inferrable-types": 0
},
"settings": {
"react": {
Expand Down
38 changes: 37 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,43 @@
## Changelog

#### (Prerelease) Updated
### September 17, 2021

#### Updated

- Updated node-sass and sass-loader dependency versions to reduce the number of high risk vulnerabilities.

### v0.5.5

#### Updated

- Updated `CustomListEditor` so that the "Save this list" button is disabled if either title or entries are absent, and enabled if both are present.
- Updated the book cover editor so that the current cover URL pulls through not as a value in the input (as described in v0.5.3), but as a description beneath the input.

### v0.5.4

#### Updated

- Updated the version of opds-web-client after successfully testing the version below.

### v0.5.4-test

#### Updated

- Updated the version of opds-web-client in order to test a fix for bugs affecting the List Manager.

### v0.5.3

#### Updated

- Added a value attribute to the book cover URL's `EditableInput` in `BookCoverEditor` so that the existing URL pulls through for the user to start.
- Addressed linter errors throughout repo and used prettier to format code consistently.
- Prepended all deprecated React lifecycle methods (componentWillMount and componentWillReceiveProps) with UNSAFE\_.

### v0.5.2

#### Updated

- Updated CI from Travis to GitHub Actions.
- Updated the README.
- Added a Github pull request template.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Like the codebase, all the unit tests are written in Typescript. Tests are writt

To run the tests, perform `npm test`.

We use Travis CI for continuous integration. Any pull requests submitted must have tests and those tests must pass on Travis CI.
We use GitHub Actions for continuous integration. Any pull requests submitted must have tests and those tests must pass on GitHub Actions.

### Nightwatch

Expand All @@ -83,7 +83,7 @@ To set up credentials and run the tests, check out the [README](/tests/README.md
## License

```
Copyright © 2015 The New York Public Library, Astor, Lenox, and Tilden Foundations
Copyright © 2021 The New York Public Library, Astor, Lenox, and Tilden Foundations
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 7e99304

Please sign in to comment.