From 17572786b6f5bf16db801202f0e0df9590e4e22b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Mar 2021 03:00:57 +0000 Subject: [PATCH 1/2] Bump webpack from 5.26.2 to 5.26.3 Bumps [webpack](https://github.com/webpack/webpack) from 5.26.2 to 5.26.3. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.26.2...v5.26.3) Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index fc531fba8..a122a42f3 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "stylelint-scss": "^3.19.0", "stylelint-webpack-plugin": "^2.1.1", "url-loader": "^4.1.1", - "webpack": "^5.26.2", + "webpack": "^5.26.3", "webpack-cli": "^4.5.0", "webpack-dev-server": "^3.11.2", "webpack-manifest-plugin": "^3.1.0", diff --git a/yarn.lock b/yarn.lock index 66a249e9c..3b1779982 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6994,10 +6994,10 @@ webpack-sources@^2.1.1, webpack-sources@^2.2.0: source-list-map "^2.0.1" source-map "^0.6.1" -webpack@^5.26.2: - version "5.26.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.26.2.tgz#b61c018c9abdb7c67b08e2783ba46fe8723f59e8" - integrity sha512-h07tAPeQceEO3Idrevqv4ECcpMH8Zp0aUUJ+IytujWTVf6TF5PI3rKVw0Z+7rNjU4qJuEx18BykFxgRvR9VgEQ== +webpack@^5.26.3: + version "5.26.3" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.26.3.tgz#bafd439abac08fbb82657ec855d038743b725ab8" + integrity sha512-z/F2lt2N1fZqaud1B4SzjL3OW03eULThbBXQ2OX4LSrZX4N9k1A5d0Rje3zS2g887DTWyAV0KGqEf64ois2dhg== dependencies: "@types/eslint-scope" "^3.7.0" "@types/estree" "^0.0.46" From 7ca833bccb0f6e7a2c6577ac4ca5cf06d2eea8fb Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Thu, 18 Mar 2021 11:44:57 +0100 Subject: [PATCH 2/2] Fix tests --- .../ImportBundle/Controller/ElcuratorControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Wallabag/ImportBundle/Controller/ElcuratorControllerTest.php b/tests/Wallabag/ImportBundle/Controller/ElcuratorControllerTest.php index 085d65389..abcff5e4f 100644 --- a/tests/Wallabag/ImportBundle/Controller/ElcuratorControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/ElcuratorControllerTest.php @@ -121,7 +121,7 @@ class ElcuratorControllerTest extends WallabagCoreTestCase $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); - $this->assertSame('Qualité de code - Intégration de php-git-hooks dans Symfony2 - Choosit - Experts en transformation digitale', $content->getTitle()); + $this->assertStringContainsString('Qualité de code - Intégration de php-git-hooks dans Symfony2', $content->getTitle()); $this->assertSame('2015-09-09', $content->getCreatedAt()->format('Y-m-d')); $this->assertTrue($content->isStarred(), 'Entry is starred');