Skip to content

Commit 90b02a7

Browse files
committed
Merge branch '7.1' into 7.2
# Conflicts: # core/src/main/java/lucee/runtime/config/ConfigImpl.java # core/src/main/java/lucee/runtime/config/DeployHandler.java # core/src/main/java/lucee/runtime/extension/RHExtension.java # loader/build.xml # loader/pom.xml
2 parents 7ae5e65 + ace7329 commit 90b02a7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
LUCEE_BUILD_JAVA_VERSION:
1010
required: true
1111
type: string
12-
default: '21'
12+
default: '25'
1313
push:
1414
branches:
1515
- '**' # thus ignoring tagging
@@ -19,7 +19,7 @@ on:
1919
LUCEE_BUILD_JAVA_VERSION:
2020
required: true
2121
type: string
22-
default: '21'
22+
default: '25'
2323
LUCEE_TEST_JAVA_VERSION:
2424
description: Optional Java Test version, default is the build java version
2525
required: false
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
env:
3636
DO_DEPLOY: "${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/7.1') }}"
37-
LUCEE_BUILD_JAVA_VERSION: 21
37+
LUCEE_BUILD_JAVA_VERSION: 25
3838
LUCEE_TEST_JAVA_VERSION: ''
3939
services:
4040
ldap:

core/src/main/java/lucee/runtime/debug/DebuggerListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ default boolean onException(PageContext pc, Throwable exception, boolean caught)
7575

7676
/**
7777
* Called when output is written to System.out or System.err.
78-
* Only called when DEBUGGER_ENABLED and a DebuggerPrintStream is installed.
78+
* Only called when a DebuggerPrintStream is installed.
7979
*
8080
* @param text The text that was written
8181
* @param isStdErr true if written to stderr, false if stdout

core/src/main/java/lucee/runtime/debug/DebuggerPrintStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* PrintStream wrapper that tees output to the DebuggerListener.
7-
* Installed on System.out/err when DEBUGGER_ENABLED is true.
7+
* Installed on System.out/err when DEBUGGER_SECRET is set.
88
* Always passes through to the original stream; only notifies listener when active.
99
*/
1010
public class DebuggerPrintStream extends PrintStream {

core/src/main/java/lucee/runtime/extension/RHExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1843,7 +1843,7 @@ else if ("maven".equalsIgnoreCase(name) || "mvn".equalsIgnoreCase(name)) {
18431843

18441844
// source
18451845
else if ("path".equalsIgnoreCase(name) || "url".equalsIgnoreCase(name) || "resource".equalsIgnoreCase(name)) {
1846-
res = ResourceUtil.toResourceExisting(config, entry.getValue().trim(), null);
1846+
res = ResourceUtil.toResourceExisting(config, ConfigUtil.replaceConfigPlaceHolder(config, entry.getValue().trim()), null);
18471847
if (res != null && res.isFile()) {
18481848
ed.setSource(config, res);
18491849
if (ed.getId() == null) {

core/src/main/java/resource/fld/core-base.fld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6787,7 +6787,7 @@ When used, the function automatically validates that the secret exists and throw
67876787
<function>
67886788
<name>GetSystemMetrics</name>
67896789
<class>lucee.runtime.functions.system.GetSystemInfo</class>
6790-
<status>hidden</status>
6790+
<introduced>5.2.5.7</introduced>
67916791
<description></description>
67926792
<return>
67936793
<type>struct</type>

loader/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project default="core" basedir="." name="Lucee"
33
xmlns:resolver="antlib:org.apache.maven.resolver.ant">
44

5-
<property name="version" value="7.2.0.16-ALPHA"/>
5+
<property name="version" value="7.2.0.17-ALPHA"/>
66

77
<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
88
<classpath>

loader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>org.lucee</groupId>
55
<artifactId>lucee</artifactId>
6-
<version>7.2.0.16-ALPHA</version>
6+
<version>7.2.0.17-ALPHA</version>
77
<packaging>jar</packaging>
88

99
<name>Lucee Loader Build</name>

0 commit comments

Comments
 (0)