From f58703329764c83cdfe8993d24432dac8081fd13 Mon Sep 17 00:00:00 2001 From: Tag Spilman Date: Wed, 20 May 2026 16:00:05 -0600 Subject: [PATCH 1/3] IC-8774: Fix CodaClient#getRegistrationForLabel(String) --- .../com/iland/coda/footprint/CodaClient.java | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/iland/coda/footprint/CodaClient.java b/src/main/java/com/iland/coda/footprint/CodaClient.java index 8b856fc..ed157d9 100644 --- a/src/main/java/com/iland/coda/footprint/CodaClient.java +++ b/src/main/java/com/iland/coda/footprint/CodaClient.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2022, iland Internet Solutions, Corp + * Copyright (c) 2013 - 2026, 11:11 Systems Inc. * - * This software is licensed under the Terms and Conditions contained within the - * "LICENSE.txt" file that accompanied this software. Any inquiries concerning - * the scope or enforceability of the license should be addressed to: + * This software is licensed under the Terms and Conditions contained within the + * "LICENSE.txt" file that accompanied this software. Any inquiries concerning + * the scope or enforceability of the license should be addressed to: * - * iland Internet Solutions, Corp - * 1235 North Loop West, Suite 800 - * Houston, TX 77008 - * USA + * 11:11 Systems + * 1235 North Loop West, Suite 800 + * Houston, TX 77008 + * USA * - * http://www.iland.com + * https://1111systems.com/ */ package com.iland.coda.footprint; @@ -55,8 +55,6 @@ /** * {@link CodaClient}. - * - * @author Tag Spilman */ public interface CodaClient { @@ -167,6 +165,10 @@ default Optional getRegistrationForLabel( .min(Comparator.comparing(RegistrationLight::getId)) .orElseThrow())); + if (registrationByLabel.containsKey(label)) { + return Optional.of(label).map(registrationByLabel::get); + } + final int length64 = 64; final String label64 = label.substring(0, Math.min(label.length(), length64)); From 35b670b89028ac1971393c1b8008b8c301b3e92b Mon Sep 17 00:00:00 2001 From: Tag Spilman Date: Wed, 20 May 2026 16:02:55 -0600 Subject: [PATCH 2/3] [maven-release-plugin] prepare release 7.18.19.o --- pom.xml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 6ed8bc9..9eb817b 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,4 @@ - + com.iland.common.pom parent-pom @@ -10,7 +8,7 @@ 4.0.0 net.codacloud footprint - 7.18.20.n-SNAPSHOT + 7.18.19.o jar CODA Footprint @@ -43,7 +41,7 @@ scm:git:https://github.com/ilanddev/coda-sdk.git https://github.com/ilanddev/coda-sdk.git - 7.18.19.n + 7.18.19.o From 7c1152f744319db4b35fd6a3ef3f8ad6ccf34991 Mon Sep 17 00:00:00 2001 From: Tag Spilman Date: Wed, 20 May 2026 16:02:59 -0600 Subject: [PATCH 3/3] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9eb817b..31dce4c 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 4.0.0 net.codacloud footprint - 7.18.19.o + 7.18.19.p-SNAPSHOT jar CODA Footprint @@ -41,7 +41,7 @@ scm:git:https://github.com/ilanddev/coda-sdk.git https://github.com/ilanddev/coda-sdk.git - 7.18.19.o + 7.18.19.n