From a0b473cde90cc4fa91fe8503364bd59c7a4a65eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jun 2021 08:56:16 +0000 Subject: [PATCH 01/10] Bump highcharts from 8.1.1 to 9.0.0 Bumps [highcharts](https://github.com/highcharts/highcharts-dist) from 8.1.1 to 9.0.0. - [Release notes](https://github.com/highcharts/highcharts-dist/releases) - [Commits](https://github.com/highcharts/highcharts-dist/compare/v8.1.1...v9.0.0) 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 c9aa65e27..263362691 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "debounce": "^1.2.0", "dom4": "^2.1.5", "email-butler": "^1.0.13", - "highcharts": "^8.1.1", + "highcharts": "^9.0.0", "intersection-observer": "^0.12.0", "is-hotkey": "^0.2.0", "mapbox-gl": "^1.3.0", diff --git a/yarn.lock b/yarn.lock index 171f3b1ab..efa031308 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6339,10 +6339,10 @@ hex-color-regex@^1.1.0: resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== -highcharts@^8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/highcharts/-/highcharts-8.1.1.tgz#7dc011e260289ab64d775807df0d13b85ed88338" - integrity sha512-DSkI+fAqkqYDslOVLcEk8DX7W9itRIwzsdS0uVEOnVf0LF1hSKZtDINHP7ze/uBN9NdWQV9HydtiPTrkLx0lXg== +highcharts@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/highcharts/-/highcharts-9.0.0.tgz#2e5d382481f71c50ac7f086e7bdead394fab71d4" + integrity sha512-MJCtidFytGSQvsV3OEM+vFTLpjUcp7jmFpLn8h3oL4WKp0gxUOQg6Nw00sqMWGdiadst0gOZO4804zynTcYjZQ== highlight-words-core@1.2.2: version "1.2.2" From 188b89a3c815e02730c9d73e55f064fd0802369f Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Tue, 1 Jun 2021 11:29:57 +0200 Subject: [PATCH 02/10] manager: fix polymorphic route exception when viewing user emails Since the last Rails update, arguments to polymorphic routes must be symbols, otherwise an exception is raised. --- app/views/manager/users/emails.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/manager/users/emails.html.erb b/app/views/manager/users/emails.html.erb index b6ef69f21..1b9991d72 100644 --- a/app/views/manager/users/emails.html.erb +++ b/app/views/manager/users/emails.html.erb @@ -93,7 +93,7 @@ https://www.demarches-simplifiees.fr/users/password/new Bien cordialement <% else %> -

Ce compte n’est pas activé. Vous pouvez lui <%= link_to('renvoyer l’email de confirmation', [:resend_confirmation_instructions, namespace, 'user'], method: :post, class: 'button') %>, puis un email.

+

Ce compte n’est pas activé. Vous pouvez lui <%= link_to('renvoyer l’email de confirmation', [:resend_confirmation_instructions, namespace, :user], method: :post, class: 'button') %>, puis un email.