From 5e16cca01d0a2f513c1ca82a389e8aba773628b9 Mon Sep 17 00:00:00 2001 From: Daniel Palafox Date: Wed, 8 May 2024 15:27:08 -0600 Subject: [PATCH 1/3] fix: Return attempted resolution as false if resolver is disabled (#7029) Co-authored-by: Daniel Palafox --- .../core/utils/v3/identifiers/resolvers/ISBNOCLCResolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orcid-core/src/main/java/org/orcid/core/utils/v3/identifiers/resolvers/ISBNOCLCResolver.java b/orcid-core/src/main/java/org/orcid/core/utils/v3/identifiers/resolvers/ISBNOCLCResolver.java index ed8304c303e..62339c63de9 100644 --- a/orcid-core/src/main/java/org/orcid/core/utils/v3/identifiers/resolvers/ISBNOCLCResolver.java +++ b/orcid-core/src/main/java/org/orcid/core/utils/v3/identifiers/resolvers/ISBNOCLCResolver.java @@ -46,7 +46,7 @@ public PIDResolutionResult resolve(String apiTypeName, String value) { if (disableIsbnResolution) { // If it is a valid format, but the resolver is disabled, // return just the valid format - return new PIDResolutionResult(false, true, true, null); + return new PIDResolutionResult(false, false, true, null); } else if (cache.isHttp303(normUrl)) { return new PIDResolutionResult(true, true, true, normUrl); } else { From cdda8191c58aca6deeeb502a30d04e09063dd82e Mon Sep 17 00:00:00 2001 From: github actions Date: Wed, 8 May 2024 21:43:10 +0000 Subject: [PATCH 2/3] v2.57.15 changelog update --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d968659f4..f310df6b917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v2.57.15 - 2024-05-08 + +[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.14...v2.57.15) + +### Fix + +- Return attempted resolution as false if resolver is disabled (#7029) + ## 2.58.2 - 2024-04-28 [Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.14...2.58.2) From e19a89a24b63d82380f5b33f1ccedf2a701db213 Mon Sep 17 00:00:00 2001 From: github actions Date: Thu, 9 May 2024 01:42:04 +0000 Subject: [PATCH 3/3] v2.59.0 changelog update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f310df6b917..3b6e447372b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.59.0 - 2024-05-09 + +[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.15...v2.59.0) + ## v2.57.15 - 2024-05-08 [Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.14...v2.57.15)