diff --git a/README.md b/README.md index 1f865404..e2b37733 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,12 @@ on how to do that, including how to develop and test locally and the versioning ## Release Notes +### 10.0.1 +*Released*: 20 August 2026 +(Earliest compatible LabKey version: 26.6.0) +- Disable caching for the ClientLibsCompress task again. +- Upgrade to Gradle 9.7.1 + ### 10.0.0 *Released*: 17 August 2026 (Earliest compatible LabKey version: 26.6.0) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index b1b8ef56..eddabd2e 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 69dd0d04..ad7845be 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/src/main/groovy/org/labkey/gradle/task/ClientLibsCompress.groovy b/src/main/groovy/org/labkey/gradle/task/ClientLibsCompress.groovy index 036e5aa7..70255ef1 100644 --- a/src/main/groovy/org/labkey/gradle/task/ClientLibsCompress.groovy +++ b/src/main/groovy/org/labkey/gradle/task/ClientLibsCompress.groovy @@ -56,8 +56,9 @@ import java.util.zip.GZIPOutputStream /** * Class for compressing javascript and css files */ - -@CacheableTask +// TODO When caching is enabled, the moduleEditor[prod] suite fails to find the Ext libraries. +// No luck yet finding what inputs or outputs are not well configured. +@DisableCachingByDefault(because="Needs troubleshooting") abstract class ClientLibsCompress extends DefaultTask { public static final String LIB_XML_EXTENSION = ".lib.xml"