From 9602bb29870d3c3dde84d95edab56ed904cabc63 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sun, 22 Nov 2020 14:36:22 +0100 Subject: [PATCH] updated dependencies --- pom.xml | 18 +++++++++--------- .../resources/templates/helpers/header.ftl | 2 +- .../resources/templates/helpers/scripts.ftl | 4 ++-- .../resources/templates/reports/reports.ftl | 2 +- .../integration/DateRepairTest.java | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 64934d1a3..fa143cb5b 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,7 @@ <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>2.2.5.RELEASE</version> + <version>2.2.11.RELEASE</version> <relativePath/> </parent> @@ -56,17 +56,17 @@ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>11</java.version> - <jlibs.version>2.0.6</jlibs.version> - <versionizer.version>1.2.1</versionizer.version> - <webjars-locator.version>0.39</webjars-locator.version> - <jquery.version>3.4.1</jquery.version> + <jlibs.version>3.2.0</jlibs.version> + <versionizer.version>3.0.1</versionizer.version> + <webjars-locator.version>0.40</webjars-locator.version> + <jquery.version>3.5.1</jquery.version> <materializecss.version>1.0.0</materializecss.version> - <fontawesome.version>5.12.0</fontawesome.version> - <sortablejs.version>1.8.3</sortablejs.version> - <mousetrap.version>1.6.1</mousetrap.version> + <fontawesome.version>5.15.1</fontawesome.version> + <sortablejs.version>1.10.2</sortablejs.version> + <mousetrap.version>1.6.5</mousetrap.version> <codemirror.version>5.50.0</codemirror.version> <selenium.version>3.141.59</selenium.version> - <assertj-core.version>3.15.0</assertj-core.version> + <assertj-core.version>3.17.1</assertj-core.version> <app.versionDate>${maven.build.timestamp}</app.versionDate> <maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format> diff --git a/src/main/resources/templates/helpers/header.ftl b/src/main/resources/templates/helpers/header.ftl index 32f53897f..c9f77b6cd 100644 --- a/src/main/resources/templates/helpers/header.ftl +++ b/src/main/resources/templates/helpers/header.ftl @@ -11,7 +11,7 @@ <#import "/spring.ftl" as s> <title>${title}</title> <meta charset="UTF-8"/> - <link rel="stylesheet" href="<@s.url '/webjars/font-awesome/5.12.0/css/all.min.css'/>"> + <link rel="stylesheet" href="<@s.url '/webjars/font-awesome/5.15.1/css/all.min.css'/>"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" href="<@s.url "/webjars/materializecss/1.0.0/css/materialize.min.css"/>"> <@style "style"/> diff --git a/src/main/resources/templates/helpers/scripts.ftl b/src/main/resources/templates/helpers/scripts.ftl index 072702884..eb063fabd 100644 --- a/src/main/resources/templates/helpers/scripts.ftl +++ b/src/main/resources/templates/helpers/scripts.ftl @@ -1,8 +1,8 @@ <#macro scripts> <#import "/spring.ftl" as s> -<script src="<@s.url '/webjars/jquery/3.4.1/jquery.min.js'/>"></script> +<script src="<@s.url '/webjars/jquery/3.5.1/jquery.min.js'/>"></script> <script src="<@s.url '/webjars/materializecss/1.0.0/js/materialize.min.js'/>"></script> -<script src="<@s.url '/webjars/mousetrap/1.6.1/mousetrap.js'/>"></script> +<script src="<@s.url '/webjars/mousetrap/1.6.5/mousetrap.js'/>"></script> <script> rootURL = "<@s.url ''/>" </script> diff --git a/src/main/resources/templates/reports/reports.ftl b/src/main/resources/templates/reports/reports.ftl index 314acf1ce..56081a90e 100644 --- a/src/main/resources/templates/reports/reports.ftl +++ b/src/main/resources/templates/reports/reports.ftl @@ -111,7 +111,7 @@ <!-- Scripts--> <#import "../helpers/scripts.ftl" as scripts> <@scripts.scripts/> - <script src="<@s.url '/webjars/sortablejs/1.8.3/Sortable.min.js'/>"></script> + <script src="<@s.url '/webjars/sortablejs/1.10.2/Sortable.min.js'/>"></script> <script src="<@s.url '/js/reports.js'/>"></script> <script src="<@s.url '/js/globalDatePicker.js'/>"></script> <script src="<@s.url '/js/filter.js'/>"></script> diff --git a/src/test/java/de/deadlocker8/budgetmaster/integration/DateRepairTest.java b/src/test/java/de/deadlocker8/budgetmaster/integration/DateRepairTest.java index 7a8ae0e54..828541c04 100644 --- a/src/test/java/de/deadlocker8/budgetmaster/integration/DateRepairTest.java +++ b/src/test/java/de/deadlocker8/budgetmaster/integration/DateRepairTest.java @@ -62,7 +62,7 @@ public class DateRepairTest assertThat(transactions.stream() .map(t -> t.getTags().stream() .map(Tag::getName).toArray(String[]::new)) - .toArray(String[][]::new)) + .collect(Collectors.toList())) .containsOnly(new String[]{"0815", "abc"}, new String[0]); } -- GitLab