From 6718c08cf5ace13365da2ce4c1509e4817eb34bc Mon Sep 17 00:00:00 2001 From: Christoph Date: Sun, 20 Dec 2020 18:23:32 +0100 Subject: [PATCH 01/12] Remove field check for journal abbrev in entry editor (#7208) * Remove journal abbrev deteted in entry editor Fixes #3925 * add changelog --- CHANGELOG.md | 1 + src/main/java/org/jabref/logic/integrity/FieldCheckers.java | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16a227eec57..5ac0262ca58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,6 +84,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve ### Removed - We removed the menu entry "Manage external file types" because it's already in 'Preferences' dialog [#6991](https://github.com/JabRef/jabref/issues/6991) +- We removed the integrity check "Abbreviation detected" for the field journal/journaltitle in the entry editor [#3925](https://github.com/JabRef/jabref/issues/3925) ## [5.1] – 2020-08-30 diff --git a/src/main/java/org/jabref/logic/integrity/FieldCheckers.java b/src/main/java/org/jabref/logic/integrity/FieldCheckers.java index e2b27412010..379973fb98e 100644 --- a/src/main/java/org/jabref/logic/integrity/FieldCheckers.java +++ b/src/main/java/org/jabref/logic/integrity/FieldCheckers.java @@ -27,9 +27,6 @@ public FieldCheckers(BibDatabaseContext databaseContext, FilePreferences filePre private static Multimap getAllMap(BibDatabaseContext databaseContext, FilePreferences filePreferences, JournalAbbreviationRepository abbreviationRepository, boolean allowIntegerEdition) { ArrayListMultimap fieldCheckers = ArrayListMultimap.create(50, 10); - for (Field field : FieldFactory.getJournalNameFields()) { - fieldCheckers.put(field, new AbbreviationChecker(abbreviationRepository)); - } for (Field field : FieldFactory.getBookNameFields()) { fieldCheckers.put(field, new AbbreviationChecker(abbreviationRepository)); } From 84c8504dbcc1163d10414da0ffa34ae96732dbb7 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Sun, 20 Dec 2020 23:03:14 +0100 Subject: [PATCH 02/12] Add missing author --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 8b812382d74..2ae2ec19c9c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -38,6 +38,7 @@ Anita Armbruster Antonio Ribeiro Arno Blouin Arthur Fröhlich +AtrusRiven Atul Kaushik August Janse Ayachi Nene From c2eba2bf0be23fe302a4e3602e8e901acbb3a1bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 08:47:33 +0100 Subject: [PATCH 03/12] Bump org.beryx.jlink from 2.22.3 to 2.23.0 (#7212) Bumps org.beryx.jlink from 2.22.3 to 2.23.0. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7cda604786b..c3b6c6c5932 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ plugins { id 'com.github.ben-manes.versions' version '0.36.0' id 'org.javamodularity.moduleplugin' version '1.7.0' id 'org.openjfx.javafxplugin' version '0.0.9' - id 'org.beryx.jlink' version '2.22.3' + id 'org.beryx.jlink' version '2.23.0' // nicer test outputs during running and completion // Homepage: https://github.com/radarsh/gradle-test-logger-plugin id 'com.adarshr.test-logger' version '2.1.1' From 2b410859e7bf54d167279067541b512da62967d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:15:45 +0100 Subject: [PATCH 04/12] Bump archunit-junit5-engine from 0.14.1 to 0.15.0 (#7215) Bumps [archunit-junit5-engine](https://github.com/TNG/ArchUnit) from 0.14.1 to 0.15.0. - [Release notes](https://github.com/TNG/ArchUnit/releases) - [Commits](https://github.com/TNG/ArchUnit/compare/v0.14.1...v0.15.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c3b6c6c5932..c6330419f37 100644 --- a/build.gradle +++ b/build.gradle @@ -201,7 +201,7 @@ dependencies { testImplementation 'org.mockito:mockito-core:3.6.28' testImplementation 'org.xmlunit:xmlunit-core:2.8.1' testImplementation 'org.xmlunit:xmlunit-matchers:2.8.1' - testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.14.1' + testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.15.0' testImplementation 'com.tngtech.archunit:archunit-junit5-api:0.14.1' testImplementation "org.testfx:testfx-core:4.0.17-alpha-SNAPSHOT" testImplementation "org.testfx:testfx-junit5:4.0.17-alpha-SNAPSHOT" From abe42f081f05cfb6ca470fc1399a62f172daa3ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:16:09 +0100 Subject: [PATCH 05/12] Bump byte-buddy-parent from 1.10.18 to 1.10.19 (#7216) Bumps [byte-buddy-parent](https://github.com/raphw/byte-buddy) from 1.10.18 to 1.10.19. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.10.18...byte-buddy-1.10.19) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c6330419f37..7a4391dd43f 100644 --- a/build.gradle +++ b/build.gradle @@ -195,7 +195,7 @@ dependencies { testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.7.0' testImplementation 'org.junit.platform:junit-platform-launcher:1.7.0' - testImplementation 'net.bytebuddy:byte-buddy-parent:1.10.18' + testImplementation 'net.bytebuddy:byte-buddy-parent:1.10.19' testRuntime group: 'org.apache.logging.log4j', name: 'log4j-core', version: '3.0.0-SNAPSHOT' testRuntime group: 'org.apache.logging.log4j', name: 'log4j-jul', version: '3.0.0-SNAPSHOT' testImplementation 'org.mockito:mockito-core:3.6.28' From 4c3d8750962afef76c56e9b4ce1256a1a61ecb8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:16:23 +0100 Subject: [PATCH 06/12] Bump classgraph from 4.8.94 to 4.8.97 (#7211) Bumps [classgraph](https://github.com/classgraph/classgraph) from 4.8.94 to 4.8.97. - [Release notes](https://github.com/classgraph/classgraph/releases) - [Commits](https://github.com/classgraph/classgraph/compare/classgraph-4.8.94...classgraph-4.8.97) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7a4391dd43f..3aa50367c6c 100644 --- a/build.gradle +++ b/build.gradle @@ -190,7 +190,7 @@ dependencies { implementation 'com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:0.62.2' implementation 'com.vladsch.flexmark:flexmark-ext-gfm-tasklist:0.62.2' - testImplementation 'io.github.classgraph:classgraph:4.8.94' + testImplementation 'io.github.classgraph:classgraph:4.8.97' testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0' testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.7.0' testImplementation 'org.junit.platform:junit-platform-launcher:1.7.0' From 2b7b0daeaa23af15397e0b23fc11d4c7aff40444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:18:41 +0100 Subject: [PATCH 07/12] Bump xmpbox from 2.0.21 to 2.0.22 (#7217) Bumps xmpbox from 2.0.21 to 2.0.22. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3aa50367c6c..6155c2b4845 100644 --- a/build.gradle +++ b/build.gradle @@ -102,7 +102,7 @@ dependencies { implementation 'org.apache.pdfbox:pdfbox:2.0.21' implementation 'org.apache.pdfbox:fontbox:2.0.21' - implementation 'org.apache.pdfbox:xmpbox:2.0.21' + implementation 'org.apache.pdfbox:xmpbox:2.0.22' implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.8' implementation 'com.h2database:h2-mvstore:1.4.200' From 439a8f8f1478a0cfa5907403acae1992ed0933ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:19:21 +0100 Subject: [PATCH 08/12] Bump guava from 30.0-jre to 30.1-jre (#7218) Bumps [guava](https://github.com/google/guava) from 30.0-jre to 30.1-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 6155c2b4845..048a2dbbfa6 100644 --- a/build.gradle +++ b/build.gradle @@ -141,7 +141,7 @@ dependencies { exclude module: 'oraclepki' } - implementation ('com.google.guava:guava:30.0-jre') { + implementation ('com.google.guava:guava:30.1-jre') { // TODO: Remove this as soon as https://github.com/google/guava/issues/2960 is fixed exclude module: "jsr305" } From fd60d8394352f2cbfc9de2e70e3525d8bac1780e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:19:46 +0100 Subject: [PATCH 09/12] Bump unoloader from 7.0.3 to 7.0.4 (#7214) Bumps unoloader from 7.0.3 to 7.0.4. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 048a2dbbfa6..55732cd0b34 100644 --- a/build.gradle +++ b/build.gradle @@ -115,7 +115,7 @@ dependencies { implementation 'commons-cli:commons-cli:1.4' implementation 'org.libreoffice:libreoffice:7.0.3' - implementation 'org.libreoffice:unoloader:7.0.3' + implementation 'org.libreoffice:unoloader:7.0.4' implementation 'io.github.java-diff-utils:java-diff-utils:4.9' implementation 'info.debatty:java-string-similarity:2.0.0' From 914964f7e770f79af5261a79c6beb33c8d8ce26e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:26:11 +0100 Subject: [PATCH 10/12] Bump archunit-junit5-api from 0.14.1 to 0.15.0 (#7220) Bumps [archunit-junit5-api](https://github.com/TNG/ArchUnit) from 0.14.1 to 0.15.0. - [Release notes](https://github.com/TNG/ArchUnit/releases) - [Commits](https://github.com/TNG/ArchUnit/compare/v0.14.1...v0.15.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 55732cd0b34..ac82f94c44e 100644 --- a/build.gradle +++ b/build.gradle @@ -202,7 +202,7 @@ dependencies { testImplementation 'org.xmlunit:xmlunit-core:2.8.1' testImplementation 'org.xmlunit:xmlunit-matchers:2.8.1' testRuntime 'com.tngtech.archunit:archunit-junit5-engine:0.15.0' - testImplementation 'com.tngtech.archunit:archunit-junit5-api:0.14.1' + testImplementation 'com.tngtech.archunit:archunit-junit5-api:0.15.0' testImplementation "org.testfx:testfx-core:4.0.17-alpha-SNAPSHOT" testImplementation "org.testfx:testfx-junit5:4.0.17-alpha-SNAPSHOT" testImplementation "org.hamcrest:hamcrest-library:2.2" From 7271f25da698530cd0c7b5908b36a84cdc3e26cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:37:50 +0100 Subject: [PATCH 11/12] Bump fontbox from 2.0.21 to 2.0.22 (#7219) Bumps fontbox from 2.0.21 to 2.0.22. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ac82f94c44e..0aae29a9f12 100644 --- a/build.gradle +++ b/build.gradle @@ -101,7 +101,7 @@ dependencies { implementation fileTree(dir: 'lib', includes: ['*.jar']) implementation 'org.apache.pdfbox:pdfbox:2.0.21' - implementation 'org.apache.pdfbox:fontbox:2.0.21' + implementation 'org.apache.pdfbox:fontbox:2.0.22' implementation 'org.apache.pdfbox:xmpbox:2.0.22' implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.8' From f0ce88a8763542d040011fdbf86f22739526cf19 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 11:40:29 +0100 Subject: [PATCH 12/12] Bump pdfbox from 2.0.21 to 2.0.22 (#7213) Bumps pdfbox from 2.0.21 to 2.0.22. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0aae29a9f12..33165385d93 100644 --- a/build.gradle +++ b/build.gradle @@ -100,7 +100,7 @@ dependencies { // Include all jar-files in the 'lib' folder as dependencies implementation fileTree(dir: 'lib', includes: ['*.jar']) - implementation 'org.apache.pdfbox:pdfbox:2.0.21' + implementation 'org.apache.pdfbox:pdfbox:2.0.22' implementation 'org.apache.pdfbox:fontbox:2.0.22' implementation 'org.apache.pdfbox:xmpbox:2.0.22'