From 2c23cb5b0f99d6bee7685073b9922a3e0a754cfb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 09:06:27 +0100 Subject: [PATCH 01/12] build(deps-dev): bump tsd from 0.26.1 to 0.27.0 (#207) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 48d813f..fe7adc1 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "react": "^18.0.0", "react-dom": "^18.0.0", "rollup": "^2.0.2", - "tsd": "^0.26.0" + "tsd": "^0.27.0" }, "homepage": "https://github.com/u-wave/react-youtube#readme", "keywords": [ From c03124cc65096176a7959e5f667b15c8d70538d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Mar 2023 12:28:04 +0100 Subject: [PATCH 02/12] build(deps-dev): bump tsd from 0.27.0 to 0.28.0 (#208) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe7adc1..d5f744b 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "react": "^18.0.0", "react-dom": "^18.0.0", "rollup": "^2.0.2", - "tsd": "^0.27.0" + "tsd": "^0.28.0" }, "homepage": "https://github.com/u-wave/react-youtube#readme", "keywords": [ From 51203e92b51c82a29ca4998e7c6f89edd04725d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Fri, 26 Apr 2024 08:48:08 +0200 Subject: [PATCH 03/12] ci: enable dependabot for actions --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd44b57..f43925b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,7 @@ updates: schedule: interval: weekly open-pull-requests-limit: 10 +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly From 648da9b8d6e775c89f8594e5a4ab9e22a839bc49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Fri, 26 Apr 2024 08:50:57 +0200 Subject: [PATCH 04/12] Allow deprecated react render calls --- example/app.js | 1 + test/util/render.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/example/app.js b/example/app.js index 095898f..0429d91 100644 --- a/example/app.js +++ b/example/app.js @@ -128,4 +128,5 @@ function App() { ); } +// eslint-disable-next-line react/no-deprecated ReactDOM.render(, document.getElementById('example')); diff --git a/test/util/render.js b/test/util/render.js index ea48ee4..a8b8137 100644 --- a/test/util/render.js +++ b/test/util/render.js @@ -36,6 +36,7 @@ const render = (initialProps) => { const div = env.document.createElement('div'); const container = new Promise((resolve) => { + // eslint-disable-next-line react/no-deprecated ReactDOM.render(, div); }); @@ -48,6 +49,7 @@ const render = (initialProps) => { } function unmount() { + // eslint-disable-next-line react/no-deprecated ReactDOM.unmountComponentAtNode(div); } From d7917af73f0dd7d97b93b7261db4aeef07783f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Fri, 26 Apr 2024 08:52:01 +0200 Subject: [PATCH 05/12] ci: update node.js version matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efcea24..63d0d2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: name: Tests strategy: matrix: - node-version: [14.x, 16.x, 17.x] + node-version: [16.x, 18.x, 20.x] react-version: [17.x, 18.x] include: - node-version: 12.x From 240b9f5efd20179603dfd15185549c6abbf07ac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 08:56:37 +0200 Subject: [PATCH 06/12] build(deps): bump crazy-max/ghaction-github-pages from 1 to 4 (#231) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) from 1 to 4. - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Commits](https://github.com/crazy-max/ghaction-github-pages/compare/v1...v4) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d676bd5..61c5d74 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: cp example/bundle.js example/index.html _deploy - name: Publish site if: success() - uses: crazy-max/ghaction-github-pages@v1 + uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: _deploy From d0f56e8c85d50f63a3acc2260560e591849adaeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 08:56:55 +0200 Subject: [PATCH 07/12] build(deps): bump actions/setup-node from 2 to 4 (#230) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée --- .github/workflows/ci.yml | 6 +++--- .github/workflows/deploy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63d0d2c..6dab93c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 - name: Install Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: lts/* - name: Install dependencies @@ -25,7 +25,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 - name: Install Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: lts/* - name: Install dependencies @@ -47,7 +47,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 - name: Install Node.js ${{matrix.node-version}} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{matrix.node-version}} - name: Install dependencies diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 61c5d74..4e0e071 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: '16.x' - name: Install From ef3f27bf038b1048036b934036b968da46284af3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 08:58:44 +0200 Subject: [PATCH 08/12] build(deps): bump actions/checkout from 3 to 4 (#232) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée --- .github/workflows/ci.yml | 6 +++--- .github/workflows/deploy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dab93c..ce8a96f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node.js ${{matrix.node-version}} uses: actions/setup-node@v4 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4e0e071..5fc77dd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,7 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '16.x' From c4ca32fe0dc7c45794fc1c9f9554b4ba63794e7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 09:00:41 +0200 Subject: [PATCH 09/12] build(deps-dev): bump tsd from 0.28.1 to 0.31.0 (#234) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [tsd](https://github.com/tsdjs/tsd) from 0.28.1 to 0.31.0. - [Release notes](https://github.com/tsdjs/tsd/releases) - [Commits](https://github.com/tsdjs/tsd/compare/v0.28.1...v0.31.0) --- updated-dependencies: - dependency-name: tsd dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d5f744b..a51dbd4 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "react": "^18.0.0", "react-dom": "^18.0.0", "rollup": "^2.0.2", - "tsd": "^0.28.0" + "tsd": "^0.31.0" }, "homepage": "https://github.com/u-wave/react-youtube#readme", "keywords": [ From a4ec59e4d3e92e08f4f23924381721a1fbc96ac9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 09:02:59 +0200 Subject: [PATCH 10/12] build(deps): bump @types/youtube from 0.0.47 to 0.0.50 (#239) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [@types/youtube](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/youtube) from 0.0.47 to 0.0.50. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/youtube) --- updated-dependencies: - dependency-name: "@types/youtube" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a51dbd4..179c7b3 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@types/react": "^17.0.0", - "@types/youtube": "0.0.47", + "@types/youtube": "0.0.50", "load-script2": "^1.0.1", "prop-types": "^15.7.2" }, From eee1796436bb5d3465085853b10ae32d495300bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:52:00 +0200 Subject: [PATCH 11/12] build(deps-dev): bump md-insert from 1.0.1 to 2.0.0 (#251) Bumps [md-insert](https://github.com/goto-bus-stop/md-insert) from 1.0.1 to 2.0.0. - [Release notes](https://github.com/goto-bus-stop/md-insert/releases) - [Changelog](https://github.com/goto-bus-stop/md-insert/blob/default/CHANGELOG.md) - [Commits](https://github.com/goto-bus-stop/md-insert/compare/v1.0.1...v2.0.0) --- updated-dependencies: - dependency-name: md-insert dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 179c7b3..b3b28ff 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "eslint-plugin-react": "^7.20.3", "eslint-plugin-react-hooks": "^4.0.5", "expect": "^1.20.2", - "md-insert": "^1.0.1", + "md-insert": "^2.0.0", "min-react-env": "^1.0.1", "mocha": "^10.0.0", "prop-types-table": "^1.0.0", From 46ca09dbcb5689aef71a39c7687460709d532e15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:55:29 +0200 Subject: [PATCH 12/12] build(deps-dev): bump min-react-env from 1.0.1 to 2.0.0 (#252) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * build(deps-dev): bump min-react-env from 1.0.1 to 2.0.0 Bumps [min-react-env](https://github.com/goto-bus-stop/min-react-env) from 1.0.1 to 2.0.0. - [Release notes](https://github.com/goto-bus-stop/min-react-env/releases) - [Changelog](https://github.com/goto-bus-stop/min-react-env/blob/default/CHANGELOG.md) - [Commits](https://github.com/goto-bus-stop/min-react-env/compare/v1.0.1...v2.0.0) --- updated-dependencies: - dependency-name: min-react-env dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * upd --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Renée Kooi --- package.json | 2 +- test/util/render.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b3b28ff..02fd816 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "eslint-plugin-react-hooks": "^4.0.5", "expect": "^1.20.2", "md-insert": "^2.0.0", - "min-react-env": "^1.0.1", + "min-react-env": "^2.0.0", "mocha": "^10.0.0", "prop-types-table": "^1.0.0", "proxyquire": "^2.1.3", diff --git a/test/util/render.js b/test/util/render.js index a8b8137..f13c668 100644 --- a/test/util/render.js +++ b/test/util/render.js @@ -5,6 +5,8 @@ import React from 'react'; import ReactDOM from 'react-dom'; +// Doing this after React is loaded makes React do a bit less DOM work +import 'min-react-env/install'; import env from 'min-react-env'; import createYouTube from './createYouTube';