From d0f5c6e75a13136f51f06c8cfbb3155f0bb5d0bd Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 28 Apr 2021 22:13:33 +0000 Subject: [PATCH 01/17] Upgrade to GitHub-native Dependabot --- .github/dependabot.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..02b526f30 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,37 @@ +version: 2 +updates: +- package-ecosystem: npm + directory: "/" + schedule: + interval: daily + time: "04:00" + open-pull-requests-limit: 10 + reviewers: + - dunky11 + ignore: + - dependency-name: "@date-io/date-fns" + versions: + - ">= 2.3.a, < 2.4" + - dependency-name: "@date-io/date-fns" + versions: + - ">= 2.4.a, < 2.5" + - dependency-name: "@date-io/date-fns" + versions: + - ">= 2.a, < 3" + - dependency-name: workbox-strategies + versions: + - 6.1.5 + - dependency-name: "@testing-library/react" + versions: + - 11.2.6 + - dependency-name: "@testing-library/user-event" + versions: + - 12.6.3 + - 12.7.2 + - 13.0.10 + - 13.0.13 + - 13.0.6 + - 13.0.7 + - dependency-name: workbox-google-analytics + versions: + - 6.1.1 From 17f8717331bdd95a43b29aeec6ab4e2e298ee6d6 Mon Sep 17 00:00:00 2001 From: dunky11 Date: Mon, 3 May 2021 17:36:43 +0200 Subject: [PATCH 02/17] Fixed back button not going back in history --- src/logged_in/components/Routing.js | 2 ++ src/logged_out/components/Routing.js | 2 ++ src/shared/functions/useLocationBlocker.js | 28 ++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 src/shared/functions/useLocationBlocker.js diff --git a/src/logged_in/components/Routing.js b/src/logged_in/components/Routing.js index 519b964d3..c3abb89d7 100644 --- a/src/logged_in/components/Routing.js +++ b/src/logged_in/components/Routing.js @@ -6,6 +6,7 @@ import Dashboard from "./dashboard/Dashboard"; import Posts from "./posts/Posts"; import Subscription from "./subscription/Subscription"; import PropsRoute from "../../shared/components/PropsRoute"; +import useLocationBlocker from "../../shared/functions/useLocationBlocker"; const styles = (theme) => ({ wrapper: { @@ -64,6 +65,7 @@ function Routing(props) { selectSubscription, openAddBalanceDialog, } = props; + useLocationBlocker(); return (
diff --git a/src/logged_out/components/Routing.js b/src/logged_out/components/Routing.js index 5c26807ca..d34eff47d 100644 --- a/src/logged_out/components/Routing.js +++ b/src/logged_out/components/Routing.js @@ -5,9 +5,11 @@ import PropsRoute from "../../shared/components/PropsRoute"; import Home from "./home/Home"; import Blog from "./blog/Blog"; import BlogPost from "./blog/BlogPost"; +import useLocationBlocker from "../../shared/functions/useLocationBlocker"; function Routing(props) { const { blogPosts, selectBlog, selectHome } = props; + useLocationBlocker(); return ( {blogPosts.map((post) => ( diff --git a/src/shared/functions/useLocationBlocker.js b/src/shared/functions/useLocationBlocker.js new file mode 100644 index 000000000..44db63445 --- /dev/null +++ b/src/shared/functions/useLocationBlocker.js @@ -0,0 +1,28 @@ +import { useHistory } from "react-router-dom"; +import { useEffect } from "react"; + + +const useLocationBlocker = () => { + /** + * Prevents react-router from pushing the same + * page to the history twice which leads to + * multiple clicks on the back icon of the browser + * being necessary to go back into the history. + */ + const history = useHistory(); + useEffect( + () => + history.block( + (location, action) => + action !== "PUSH" || + getLocationId(location) !== getLocationId(history.location) + ), + [] // eslint-disable-line react-hooks/exhaustive-deps + ); +} + +const getLocationId = ({ pathname, search, hash }) => { + return pathname + (search ? "?" + search : "") + (hash ? "#" + hash : ""); +} + +export default useLocationBlocker; \ No newline at end of file From 92defe7f9682b1b97dfe81540173a0d5c8dddace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20von=20K=C3=A4nel?= <35628149+dunky11@users.noreply.github.com> Date: Wed, 5 May 2021 22:29:32 +0200 Subject: [PATCH 03/17] Remove Dependabot badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 7e17da746..cb73ec7b1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ Remains of a SaaS business I once tried to build. Now transformed into a templat [**Check out the demo**](https://reactsaastemplate.com) ![Node.js CI](https://github.com/dunky11/react-saas-template/workflows/Node.js%20CI/badge.svg) -[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=dunky11/react-saas-template)](https://dependabot.com) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [](https://reactsaastemplate.com "Go to demo website") From 5f829263c9fe4c9b74bfaab53fcb5bf7638de209 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 May 2021 04:18:11 +0000 Subject: [PATCH 04/17] Bump date-fns from 2.21.1 to 2.21.2 Bumps [date-fns](https://github.com/date-fns/date-fns) from 2.21.1 to 2.21.2. - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v2.21.1...v2.21.2) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9b618f31a..b4ba03dd2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5550,9 +5550,9 @@ } }, "date-fns": { - "version": "2.21.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.21.1.tgz", - "integrity": "sha512-m1WR0xGiC6j6jNFAyW4Nvh4WxAi4JF4w9jRJwSI8nBmNcyZXPcP9VUQG+6gHQXAmqaGEKDKhOqAtENDC941UkA==" + "version": "2.21.2", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.21.2.tgz", + "integrity": "sha512-FMkG7pIPx64mGIpS2LOb3Wp3O606H/hatoiz7G0oiYWai1izdM4tF1dd7QABv2NogkIDI4wxsfLLFQSuVvDHgA==" }, "debug": { "version": "4.3.1", diff --git a/package.json b/package.json index fb0c1f4ae..99915d25d 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "@stripe/stripe-js": "^1.14.0", "aos": "^2.3.4", "classnames": "^2.3.1", - "date-fns": "^2.21.1", + "date-fns": "^2.21.2", "emoji-mart": "^3.0.1", "js-cookie": "^2.2.0", "prop-types": "^15.7.2", From 703c3f494c544d1167d7cf7cdceede8bf095aa3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 May 2021 04:18:41 +0000 Subject: [PATCH 05/17] Bump date-fns from 2.21.2 to 2.21.3 Bumps [date-fns](https://github.com/date-fns/date-fns) from 2.21.2 to 2.21.3. - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/commits) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index b4ba03dd2..b61ef3431 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5550,9 +5550,9 @@ } }, "date-fns": { - "version": "2.21.2", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.21.2.tgz", - "integrity": "sha512-FMkG7pIPx64mGIpS2LOb3Wp3O606H/hatoiz7G0oiYWai1izdM4tF1dd7QABv2NogkIDI4wxsfLLFQSuVvDHgA==" + "version": "2.21.3", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.21.3.tgz", + "integrity": "sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==" }, "debug": { "version": "4.3.1", diff --git a/package.json b/package.json index 99915d25d..c74f7711a 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "@stripe/stripe-js": "^1.14.0", "aos": "^2.3.4", "classnames": "^2.3.1", - "date-fns": "^2.21.2", + "date-fns": "^2.21.3", "emoji-mart": "^3.0.1", "js-cookie": "^2.2.0", "prop-types": "^15.7.2", From 1f3ca4d5545f92011c2b68b9f729828b6a648353 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 May 2021 04:27:59 +0000 Subject: [PATCH 06/17] Bump @testing-library/user-event from 13.1.8 to 13.1.9 Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.1.8 to 13.1.9. - [Release notes](https://github.com/testing-library/user-event/releases) - [Changelog](https://github.com/testing-library/user-event/blob/master/CHANGELOG.md) - [Commits](https://github.com/testing-library/user-event/compare/v13.1.8...v13.1.9) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index b61ef3431..36c611d1e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2680,9 +2680,9 @@ } }, "@testing-library/user-event": { - "version": "13.1.8", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.1.8.tgz", - "integrity": "sha512-M04HgOlJvxILf5xyrkJaEQfFOtcvhy3usLldQIEg9zgFIYQofSmFGVfFlS7BWowqlBGLrItwGMlPXCoBgoHSiw==", + "version": "13.1.9", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.1.9.tgz", + "integrity": "sha512-NZr0zL2TMOs2qk+dNlqrAdbaRW5dAmYwd1yuQ4r7HpkVEOj0MWuUjDWwKhcLd/atdBy8ZSMHSKp+kXSQe47ezg==", "dev": true, "requires": { "@babel/runtime": "^7.12.5" diff --git a/package.json b/package.json index c74f7711a..737df0821 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "devDependencies": { "@testing-library/jest-dom": "^5.12.0", "@testing-library/react": "^11.2.6", - "@testing-library/user-event": "^13.1.8" + "@testing-library/user-event": "^13.1.9" }, "scripts": { "start": "react-scripts start", From c557aeae8d8c683f5ba4f2d09e6f69a5663ef807 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 May 2021 04:29:55 +0000 Subject: [PATCH 07/17] Bump @testing-library/react from 11.2.6 to 11.2.7 Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.6 to 11.2.7. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.6...v11.2.7) Signed-off-by: dependabot[bot] --- package-lock.json | 30 +++++++++++++++--------------- package.json | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index 36c611d1e..058b8a782 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2458,9 +2458,9 @@ } }, "@testing-library/dom": { - "version": "7.30.3", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.30.3.tgz", - "integrity": "sha512-7JhIg2MW6WPwyikH2iL3o7z+FTVgSOd2jqCwTAHqK7Qal2gRRYiUQyURAxtbK9VXm/UTyG9bRihv8C5Tznr2zw==", + "version": "7.31.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.0.tgz", + "integrity": "sha512-0X7ACg4YvTRDFMIuTOEj6B4NpN7i3F/4j5igOcTI5NC5J+N4TribNdErCHOZF1LBWhhcyfwxelVwvoYNMUXTOA==", "dev": true, "requires": { "@babel/code-frame": "^7.10.4", @@ -2474,9 +2474,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.13.10", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", - "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", + "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" @@ -2505,9 +2505,9 @@ } }, "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -2659,9 +2659,9 @@ } }, "@testing-library/react": { - "version": "11.2.6", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.6.tgz", - "integrity": "sha512-TXMCg0jT8xmuU8BkKMtp8l7Z50Ykew5WNX8UoIKTaLFwKkP2+1YDhOLA2Ga3wY4x29jyntk7EWfum0kjlYiSjQ==", + "version": "11.2.7", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz", + "integrity": "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==", "dev": true, "requires": { "@babel/runtime": "^7.12.5", @@ -2669,9 +2669,9 @@ }, "dependencies": { "@babel/runtime": { - "version": "7.13.10", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", - "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", + "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" diff --git a/package.json b/package.json index 737df0821..6c7e2a9ee 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ }, "devDependencies": { "@testing-library/jest-dom": "^5.12.0", - "@testing-library/react": "^11.2.6", + "@testing-library/react": "^11.2.7", "@testing-library/user-event": "^13.1.9" }, "scripts": { From cf5b1b33f4281013eb01c715ca8e97fb133241fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 May 2021 04:29:21 +0000 Subject: [PATCH 08/17] Bump @stripe/react-stripe-js from 1.4.0 to 1.4.1 Bumps [@stripe/react-stripe-js](https://github.com/stripe/react-stripe-js) from 1.4.0 to 1.4.1. - [Release notes](https://github.com/stripe/react-stripe-js/releases) - [Changelog](https://github.com/stripe/react-stripe-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/stripe/react-stripe-js/compare/v1.4.0...v1.4.1) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 058b8a782..d453572f1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2327,9 +2327,9 @@ } }, "@stripe/react-stripe-js": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@stripe/react-stripe-js/-/react-stripe-js-1.4.0.tgz", - "integrity": "sha512-Pz5QmG8PgJ3pi8gOWxlngk+ns63p2L1Ds192fn55ykZNRKfGz3G6sfssUVThHn/NAt2Hp1eCEsy/hvlKnXJI6g==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@stripe/react-stripe-js/-/react-stripe-js-1.4.1.tgz", + "integrity": "sha512-FjcVrhf72+9fUL3Lz3xi02ni9tzH1A1x6elXlr6tvBDgSD55oPJuodoP8eC7xTnBIKq0olF5uJvgtkJyDCdzjA==", "requires": { "prop-types": "^15.7.2" } diff --git a/package.json b/package.json index 6c7e2a9ee..75f3b4d0d 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "@material-ui/icons": "^4.11.2", "@material-ui/pickers": "^3.3.10", "@material-ui/system": "^4.11.3", - "@stripe/react-stripe-js": "^1.4.0", + "@stripe/react-stripe-js": "^1.4.1", "@stripe/stripe-js": "^1.14.0", "aos": "^2.3.4", "classnames": "^2.3.1", From bb75d0da151e067a2043775df22c25d51a10aed8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 May 2021 13:29:30 +0000 Subject: [PATCH 09/17] Bump @stripe/stripe-js from 1.14.0 to 1.15.0 Bumps [@stripe/stripe-js](https://github.com/stripe/stripe-js) from 1.14.0 to 1.15.0. - [Release notes](https://github.com/stripe/stripe-js/releases) - [Commits](https://github.com/stripe/stripe-js/compare/v1.14.0...v1.15.0) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d453572f1..c81803633 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2335,9 +2335,9 @@ } }, "@stripe/stripe-js": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.14.0.tgz", - "integrity": "sha512-Zw4EI+ph8RPxRpIX2uwKKDIbe7WM2OarasPjIPRulU1UCj8lRFqWWW/fTj79lZtnX3FNZkiTRM13UG1UZF7yjQ==" + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.15.0.tgz", + "integrity": "sha512-KQsNPc+uVQkc8dewwz1A6uHOWeU2cWoZyNIbsx5mtmperr5TPxw4u8M20WOa22n6zmIOh/zLdzEe8DYK/0IjBw==" }, "@surma/rollup-plugin-off-main-thread": { "version": "1.4.2", diff --git a/package.json b/package.json index 75f3b4d0d..fd15dd217 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "@material-ui/pickers": "^3.3.10", "@material-ui/system": "^4.11.3", "@stripe/react-stripe-js": "^1.4.1", - "@stripe/stripe-js": "^1.14.0", + "@stripe/stripe-js": "^1.15.0", "aos": "^2.3.4", "classnames": "^2.3.1", "date-fns": "^2.21.3", From cfec3659e2958ed2b0b3466da997f23da4dfd881 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 May 2021 04:21:18 +0000 Subject: [PATCH 10/17] Bump date-fns from 2.21.3 to 2.22.1 Bumps [date-fns](https://github.com/date-fns/date-fns) from 2.21.3 to 2.22.1. - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v2.21.3...v2.22.1) Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index c81803633..f8b76b1e9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5550,9 +5550,9 @@ } }, "date-fns": { - "version": "2.21.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.21.3.tgz", - "integrity": "sha512-HeYdzCaFflc1i4tGbj7JKMjM4cKGYoyxwcIIkHzNgCkX8xXDNJDZXgDDVchIWpN4eQc3lH37WarduXFZJOtxfw==" + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.22.1.tgz", + "integrity": "sha512-yUFPQjrxEmIsMqlHhAhmxkuH769baF21Kk+nZwZGyrMoyLA+LugaQtC0+Tqf9CBUUULWwUJt6Q5ySI3LJDDCGg==" }, "debug": { "version": "4.3.1", diff --git a/package.json b/package.json index fd15dd217..92f699f15 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "@stripe/stripe-js": "^1.15.0", "aos": "^2.3.4", "classnames": "^2.3.1", - "date-fns": "^2.21.3", + "date-fns": "^2.22.1", "emoji-mart": "^3.0.1", "js-cookie": "^2.2.0", "prop-types": "^15.7.2", From 260b37eabab80ae05a82a13072378926aa5a4dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20von=20K=C3=A4nel?= <35628149+dunky11@users.noreply.github.com> Date: Thu, 3 Jun 2021 19:00:50 +0200 Subject: [PATCH 11/17] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb73ec7b1..e9f0cc246 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ You can go into [src/theme.js](/src/theme.js) and change the primary and seconda ## Deployment -If you are happy with the state of your website you can run: +If you are satisfied with the state of your website you can run: ``` npm run build From ab2f20f6322dacc1cda408585faf10f808638b04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20von=20K=C3=A4nel?= <35628149+dunky11@users.noreply.github.com> Date: Thu, 3 Jun 2021 19:01:04 +0200 Subject: [PATCH 12/17] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9f0cc246..e3bd9abd4 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Your browser should now open and show the app. Otherwise open http://localhost:3 If you are new to React, you should watch a [basic React tutorial](https://www.youtube.com/results?search_query=react+tutorial) first. -If you already know React, then most of the information you need is in the [Material-UI documentation](https://material-ui.com/getting-started/usage/). +If you know React, then most of the information you need is in the [Material-UI documentation](https://material-ui.com/getting-started/usage/). You can go into [src/theme.js](/src/theme.js) and change the primary and secondary color codes at the top of the script to the values you like and some magic will happen. From 9f37cce59bf859433c4e37d3d53f97e071bec104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Jun 2021 04:29:15 +0000 Subject: [PATCH 13/17] Bump @testing-library/jest-dom from 5.12.0 to 5.13.0 Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.12.0 to 5.13.0. - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v5.12.0...v5.13.0) --- updated-dependencies: - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index f8b76b1e9..bb09af5da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2565,9 +2565,9 @@ } }, "@testing-library/jest-dom": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.12.0.tgz", - "integrity": "sha512-N9Y82b2Z3j6wzIoAqajlKVF1Zt7sOH0pPee0sUHXHc5cv2Fdn23r+vpWm0MBBoGJtPOly5+Bdx1lnc3CD+A+ow==", + "version": "5.13.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.13.0.tgz", + "integrity": "sha512-+jXXTn8GjRnZkJfzG/tqK/2Q7dGlBInR412WE7Aml7CT3wdSpx5dMQC0HOwVQoZ3cNTmQUy8fCVGUV/Zhoyvcw==", "dev": true, "requires": { "@babel/runtime": "^7.9.2", @@ -2831,9 +2831,9 @@ } }, "@types/jest": { - "version": "26.0.22", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.22.tgz", - "integrity": "sha512-eeWwWjlqxvBxc4oQdkueW5OF/gtfSceKk4OnOAGlUSwS/liBRtZppbJuz1YkgbrbfGOoeBHun9fOvXnjNwrSOw==", + "version": "26.0.23", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.23.tgz", + "integrity": "sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA==", "dev": true, "requires": { "jest-diff": "^26.0.0", diff --git a/package.json b/package.json index 92f699f15..abafa5b95 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "workbox-streams": "^6.1.5" }, "devDependencies": { - "@testing-library/jest-dom": "^5.12.0", + "@testing-library/jest-dom": "^5.13.0", "@testing-library/react": "^11.2.7", "@testing-library/user-event": "^13.1.9" }, From 2bb4f295df3e0fe44e9d8f8ceac940280143e5c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Jun 2021 04:30:12 +0000 Subject: [PATCH 14/17] Bump @testing-library/jest-dom from 5.13.0 to 5.14.1 Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.13.0 to 5.14.1. - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v5.13.0...v5.14.1) --- updated-dependencies: - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 19 +++++++++++++------ package.json | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index bb09af5da..c539b7dac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2565,9 +2565,9 @@ } }, "@testing-library/jest-dom": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.13.0.tgz", - "integrity": "sha512-+jXXTn8GjRnZkJfzG/tqK/2Q7dGlBInR412WE7Aml7CT3wdSpx5dMQC0HOwVQoZ3cNTmQUy8fCVGUV/Zhoyvcw==", + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.14.1.tgz", + "integrity": "sha512-dfB7HVIgTNCxH22M1+KU6viG5of2ldoA5ly8Ar8xkezKHKXjRvznCdbMbqjYGgO2xjRbwnR+rR8MLUIqF3kKbQ==", "dev": true, "requires": { "@babel/runtime": "^7.9.2", @@ -2576,6 +2576,7 @@ "chalk": "^3.0.0", "css": "^3.0.0", "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", "lodash": "^4.17.15", "redent": "^3.0.0" }, @@ -2625,6 +2626,12 @@ "source-map-resolve": "^0.6.0" } }, + "dom-accessibility-api": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz", + "integrity": "sha512-DplGLZd8L1lN64jlT27N9TVSESFR5STaEJvX+thCby7fuCHonfPpAlodYc3vuUYbDuDec5w8AMP7oCM5TWFsqw==", + "dev": true + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2939,9 +2946,9 @@ "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" }, "@types/testing-library__jest-dom": { - "version": "5.9.5", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz", - "integrity": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.0.tgz", + "integrity": "sha512-l2P2GO+hFF4Liye+fAajT1qBqvZOiL79YMpEvgGs1xTK7hECxBI8Wz4J7ntACJNiJ9r0vXQqYovroXRLPDja6A==", "dev": true, "requires": { "@types/jest": "*" diff --git a/package.json b/package.json index abafa5b95..cdadc8e69 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "workbox-streams": "^6.1.5" }, "devDependencies": { - "@testing-library/jest-dom": "^5.13.0", + "@testing-library/jest-dom": "^5.14.1", "@testing-library/react": "^11.2.7", "@testing-library/user-event": "^13.1.9" }, From f3929587bd8ca601829362fa208bf01b8d4475ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 04:24:52 +0000 Subject: [PATCH 15/17] Bump @stripe/stripe-js from 1.15.0 to 1.15.1 Bumps [@stripe/stripe-js](https://github.com/stripe/stripe-js) from 1.15.0 to 1.15.1. - [Release notes](https://github.com/stripe/stripe-js/releases) - [Commits](https://github.com/stripe/stripe-js/compare/v1.15.0...v1.15.1) --- updated-dependencies: - dependency-name: "@stripe/stripe-js" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index c539b7dac..6a5240182 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2335,9 +2335,9 @@ } }, "@stripe/stripe-js": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.15.0.tgz", - "integrity": "sha512-KQsNPc+uVQkc8dewwz1A6uHOWeU2cWoZyNIbsx5mtmperr5TPxw4u8M20WOa22n6zmIOh/zLdzEe8DYK/0IjBw==" + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.15.1.tgz", + "integrity": "sha512-yJiDGutlwu25iajCy51VRJeoH3UMs+s5qVIDGfmPUuFpZ+F6AJ9g9EFrsBNvHxAGBahQFMLlBdzlCVydhGp6tg==" }, "@surma/rollup-plugin-off-main-thread": { "version": "1.4.2", diff --git a/package.json b/package.json index cdadc8e69..067c20ac1 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "@material-ui/pickers": "^3.3.10", "@material-ui/system": "^4.11.3", "@stripe/react-stripe-js": "^1.4.1", - "@stripe/stripe-js": "^1.15.0", + "@stripe/stripe-js": "^1.15.1", "aos": "^2.3.4", "classnames": "^2.3.1", "date-fns": "^2.22.1", From 390abb143f34c651fd1c5cf99f9b4d5cd7402c58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Jun 2021 04:25:41 +0000 Subject: [PATCH 16/17] Bump @testing-library/react from 11.2.7 to 12.0.0 Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.7 to 12.0.0. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.7...v12.0.0) --- updated-dependencies: - dependency-name: "@testing-library/react" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 71 +++++++++++++++++++++++++++++------------------ package.json | 2 +- 2 files changed, 45 insertions(+), 28 deletions(-) diff --git a/package-lock.json b/package-lock.json index c539b7dac..417bbe13e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2458,9 +2458,9 @@ } }, "@testing-library/dom": { - "version": "7.31.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.0.tgz", - "integrity": "sha512-0X7ACg4YvTRDFMIuTOEj6B4NpN7i3F/4j5igOcTI5NC5J+N4TribNdErCHOZF1LBWhhcyfwxelVwvoYNMUXTOA==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.0.0.tgz", + "integrity": "sha512-Ym375MTOpfszlagRnTMO+FOfTt6gRrWiDOWmEnWLu9OvwCPOWtK6i5pBHmZ07wUJiQ7wWz0t8+ZBK2wFo2tlew==", "dev": true, "requires": { "@babel/code-frame": "^7.10.4", @@ -2468,33 +2468,42 @@ "@types/aria-query": "^4.2.0", "aria-query": "^4.2.2", "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.4", + "dom-accessibility-api": "^0.5.6", "lz-string": "^1.4.4", - "pretty-format": "^26.6.2" + "pretty-format": "^27.0.2" }, "dependencies": { "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" } }, "@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "version": "27.0.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.0.2.tgz", + "integrity": "sha512-XpjCtJ/99HB4PmyJ2vgmN7vT+JLP7RW1FBT9RgnMFS4Dt7cvIyBee8O3/j98aUZ34ZpenPZFqmaaObWSeL65dg==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^15.0.0", + "@types/yargs": "^16.0.0", "chalk": "^4.0.0" } }, + "@types/yargs": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.3.tgz", + "integrity": "sha512-YlFfTGS+zqCgXuXNV26rOIeETOkXnGQXP/pjjL9P0gO/EP9jTmc7pUBhx+jVEIxpq41RX33GQ7N3DzOSfZoglQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -2536,15 +2545,23 @@ "dev": true }, "pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "version": "27.0.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.0.2.tgz", + "integrity": "sha512-mXKbbBPnYTG7Yra9qFBtqj+IXcsvxsvOBco3QHxtxTl+hHKq6QdzMZ+q0CtL4ORHZgwGImRr2XZUX2EWzORxig==", "dev": true, "requires": { - "@jest/types": "^26.6.2", + "@jest/types": "^27.0.2", "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", + "ansi-styles": "^5.0.0", "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } } }, "react-is": { @@ -2666,19 +2683,19 @@ } }, "@testing-library/react": { - "version": "11.2.7", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz", - "integrity": "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.0.0.tgz", + "integrity": "sha512-sh3jhFgEshFyJ/0IxGltRhwZv2kFKfJ3fN1vTZ6hhMXzz9ZbbcTgmDYM4e+zJv+oiVKKEWZPyqPAh4MQBI65gA==", "dev": true, "requires": { "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^7.28.1" + "@testing-library/dom": "^8.0.0" }, "dependencies": { "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", "dev": true, "requires": { "regenerator-runtime": "^0.13.4" @@ -5846,9 +5863,9 @@ } }, "dom-accessibility-api": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz", - "integrity": "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz", + "integrity": "sha512-DplGLZd8L1lN64jlT27N9TVSESFR5STaEJvX+thCby7fuCHonfPpAlodYc3vuUYbDuDec5w8AMP7oCM5TWFsqw==", "dev": true }, "dom-converter": { diff --git a/package.json b/package.json index cdadc8e69..80fe1691e 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ }, "devDependencies": { "@testing-library/jest-dom": "^5.14.1", - "@testing-library/react": "^11.2.7", + "@testing-library/react": "^12.0.0", "@testing-library/user-event": "^13.1.9" }, "scripts": { From 1ffd0ca9d3146e7078f768b93a993d9dd17d19d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Jun 2021 04:21:00 +0000 Subject: [PATCH 17/17] Bump react-cropper from 2.1.7 to 2.1.8 Bumps [react-cropper](https://github.com/react-cropper/react-cropper) from 2.1.7 to 2.1.8. - [Release notes](https://github.com/react-cropper/react-cropper/releases) - [Commits](https://github.com/react-cropper/react-cropper/compare/v2.1.7...v2.1.8) --- updated-dependencies: - dependency-name: react-cropper dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index c539b7dac..2881cd58f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5088,9 +5088,9 @@ } }, "cropperjs": { - "version": "1.5.11", - "resolved": "https://registry.npmjs.org/cropperjs/-/cropperjs-1.5.11.tgz", - "integrity": "sha512-SJUeBBhtNBnnn+UrLKluhFRIXLJn7XFPv8QN1j49X5t+BIMwkgvDev541f96bmu8Xe0TgCx3gON22KmY/VddaA==" + "version": "1.5.12", + "resolved": "https://registry.npmjs.org/cropperjs/-/cropperjs-1.5.12.tgz", + "integrity": "sha512-re7UdjE5UnwdrovyhNzZ6gathI4Rs3KGCBSc8HCIjUo5hO42CtzyblmWLj6QWVw7huHyDMfpKxhiO2II77nhDw==" }, "cross-spawn": { "version": "6.0.5", @@ -14034,11 +14034,11 @@ } }, "react-cropper": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/react-cropper/-/react-cropper-2.1.7.tgz", - "integrity": "sha512-dGp2l2wSh4KubWx3PQZIP27fV4shPYjIvm972IqJZdzi/fpDsB6s3GKEH54mk0gy18+80d3WnlgAP2xJ/o8+yw==", + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/react-cropper/-/react-cropper-2.1.8.tgz", + "integrity": "sha512-QEj6CE9et/gMRqpaKMgZQdBgtzLjjq+zj1pmHwtoWG6GqscDl4QpTwoEElWN2pieYxkwFaZa0lPiD2b9nwqLKQ==", "requires": { - "cropperjs": "^1.5.11" + "cropperjs": "^1.5.12" } }, "react-dev-utils": { diff --git a/package.json b/package.json index cdadc8e69..437d9714f 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "js-cookie": "^2.2.0", "prop-types": "^15.7.2", "react": "^17.0.2", - "react-cropper": "^2.1.7", + "react-cropper": "^2.1.8", "react-dom": "^17.0.2", "react-dropzone": "^11.3.2", "react-router": "^5.2.0",