From d13b935183328cf87b62a00496cc91848b927ec7 Mon Sep 17 00:00:00 2001 From: Lucee Docs GitHub Action Date: Mon, 27 Jan 2025 15:10:07 +0000 Subject: [PATCH 1/6] Update recipes index and README --- docs/recipes/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/index.json b/docs/recipes/index.json index a51043eb7..f4882a062 100644 --- a/docs/recipes/index.json +++ b/docs/recipes/index.json @@ -750,7 +750,7 @@ "file": "maven.md", "title": "Maven (Lucee 6.2)", "path": "/docs/recipes/maven.md", - "hash": "2a607eda8b76d28a2194af17f4d0c975", + "hash": "f82ac1a73a5969250e79771b610bddd0", "keywords": [ "Maven", "Java", From bf01e72a48cdd5d836a85a5dead801cb37e39f9b Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Wed, 29 Jan 2025 13:59:06 +0100 Subject: [PATCH 2/6] cross ref --- .../01.functions/imagegetexifmetadata/function.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/03.reference/01.functions/imagegetexifmetadata/function.md b/docs/03.reference/01.functions/imagegetexifmetadata/function.md index b2b58ec1a..b84d85697 100644 --- a/docs/03.reference/01.functions/imagegetexifmetadata/function.md +++ b/docs/03.reference/01.functions/imagegetexifmetadata/function.md @@ -2,8 +2,9 @@ title: ImageGetEXIFMetadata id: function-imagegetexifmetadata related: +- function-imagegetexiftag categories: - - image +- image --- -Retrieves the Exchangeable Image File Format (EXIF) headers in an image as a CFML structure. \ No newline at end of file +Retrieves the Exchangeable Image File Format (EXIF) headers in an image as a CFML structure. From 60b81dfa21419e99a4dcc4b0fc759a1fe563f003 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 4 Feb 2025 17:35:45 +0100 Subject: [PATCH 3/6] Update _usageNotes.md --- docs/03.reference/02.tags/queryparam/_usageNotes.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/03.reference/02.tags/queryparam/_usageNotes.md b/docs/03.reference/02.tags/queryparam/_usageNotes.md index 573f54ef9..45f7ceb12 100644 --- a/docs/03.reference/02.tags/queryparam/_usageNotes.md +++ b/docs/03.reference/02.tags/queryparam/_usageNotes.md @@ -1 +1,8 @@ -Prior to Lucee 6, empty values would be auto cast to nulls, Since Lucee 6 only strings behave this way [LDEV-4410](https://luceeserver.atlassian.net/browse/LDEV-4410) \ No newline at end of file +Prior to Lucee 6, empty values would be auto cast to nulls, since Lucee 6 only strings behave this way [LDEV-4410](https://luceeserver.atlassian.net/browse/LDEV-4410) + +In Lucee 6, this is no longer the default behavior and throws an exception, which matches ACF. + +You can re-enable the old behavior by setting this environment variable or system property to `true`. + +**Environment Variable:** `LUCEE_QUERY_ALLOWEMPTYASNULL=TRUE` +**System Property:** `-Dlucee.query.allowemptyasnull="true"` From a940b02a371347f2faee8fe6f18538efccaab917 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 4 Feb 2025 17:36:38 +0100 Subject: [PATCH 4/6] use 6.2.0.313-RC --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35911ba53..a470e41b8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,7 +39,7 @@ jobs: with: webroot: ${{ github.workspace }} execute: /build-all.cfm - luceeVersion: 6.2.0.298-RC + luceeVersion: 6.2.0.313-RC # redis, chart, lucene, form. ajax, chart, argon2, websocket, ec2, json extensions: 60772C12-F179-D555-8E2CD2B4F7428718;version=3.0.0.54-SNAPSHOT,D46B46A9-A0E3-44E1-D972A04AC3A8DC10,EFDEB172-F52E-4D84-9CD1A1F561B3DFC8,FAD67145-E3AE-30F8-1C11A6CCF544F0B7,6E2CB28F-98FB-4B51-B6BE6C64ADF35473,DF28D0A4-6748-44B9-A2FDC12E4E2E4D38,7891D723-8F78-45F5-B7E333A22F8467CA,07082C66-510A-4F0B-B5E63814E2FDF7BE,261114AC-7372-4CA8-BA7090895E01682D,A03F4335-BDEF-44DE-946FB16C47802F96 - name: Upload Artifact From 6fcb81d1052677b1ca94bbc76b3c1edc9a5d44fa Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 4 Feb 2025 17:45:21 +0100 Subject: [PATCH 5/6] Update _usageNotes.md --- docs/03.reference/02.tags/queryparam/_usageNotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/03.reference/02.tags/queryparam/_usageNotes.md b/docs/03.reference/02.tags/queryparam/_usageNotes.md index 45f7ceb12..d2ce8ba5e 100644 --- a/docs/03.reference/02.tags/queryparam/_usageNotes.md +++ b/docs/03.reference/02.tags/queryparam/_usageNotes.md @@ -1,4 +1,4 @@ -Prior to Lucee 6, empty values would be auto cast to nulls, since Lucee 6 only strings behave this way [LDEV-4410](https://luceeserver.atlassian.net/browse/LDEV-4410) +Prior to Lucee 6, an empty value would be auto cast to null, since Lucee 6 only strings are handled this way [LDEV-4410](https://luceeserver.atlassian.net/browse/LDEV-4410) In Lucee 6, this is no longer the default behavior and throws an exception, which matches ACF. From 9ee6dea984317c2c2b4a766abbd259afc6e6372c Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Thu, 6 Feb 2025 13:24:12 +0100 Subject: [PATCH 6/6] cross ref --- docs/03.reference/01.functions/directoryinfo/function.md | 5 ++++- .../03.reference/01.functions/imageclearrect/function.md | 9 +++++++-- .../01.functions/imagegetiptcmetadata/function.md | 2 ++ .../01.functions/imagesetbackgroundcolor/function.md | 5 ++--- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/docs/03.reference/01.functions/directoryinfo/function.md b/docs/03.reference/01.functions/directoryinfo/function.md index 80c4b8eb6..116bd9405 100644 --- a/docs/03.reference/01.functions/directoryinfo/function.md +++ b/docs/03.reference/01.functions/directoryinfo/function.md @@ -2,7 +2,10 @@ title: DirectoryInfo id: function-directoryinfo related: +- function-fileinfo +- function-getfileinfo categories: +- files --- -returns detailed info about the given directory. \ No newline at end of file +returns detailed info about the given directory. diff --git a/docs/03.reference/01.functions/imageclearrect/function.md b/docs/03.reference/01.functions/imageclearrect/function.md index fa5e6d534..98ab3ec36 100644 --- a/docs/03.reference/01.functions/imageclearrect/function.md +++ b/docs/03.reference/01.functions/imageclearrect/function.md @@ -2,8 +2,13 @@ title: ImageClearRect id: function-imageclearrect related: +- function-imagesetbackgroundcolor categories: - - image +- image --- -Clears the specified rectangle by filling it with the background color of the current drawing surface. \ No newline at end of file +Clears the specified rectangle by filling it with the background color of the current drawing surface. + +The color is set via [[function-imagesetbackgroundcolor]] + + diff --git a/docs/03.reference/01.functions/imagegetiptcmetadata/function.md b/docs/03.reference/01.functions/imagegetiptcmetadata/function.md index 99da8cb56..235ff12ee 100644 --- a/docs/03.reference/01.functions/imagegetiptcmetadata/function.md +++ b/docs/03.reference/01.functions/imagegetiptcmetadata/function.md @@ -1,6 +1,8 @@ --- title: ImageGetIptcMetadata id: function-imagegetiptcmetadata +related: +- function-imagegetiptctag categories: - image --- diff --git a/docs/03.reference/01.functions/imagesetbackgroundcolor/function.md b/docs/03.reference/01.functions/imagesetbackgroundcolor/function.md index dee2b4ebf..6c5a2e799 100644 --- a/docs/03.reference/01.functions/imagesetbackgroundcolor/function.md +++ b/docs/03.reference/01.functions/imagesetbackgroundcolor/function.md @@ -1,13 +1,12 @@ --- title: ImageSetBackgroundColor id: function-imagesetbackgroundcolor -related: categories: - - image +- image --- Sets the background color for the image. The background color is used for clearing a region. -Setting the background color only affects the subsequent ImageClearRect calls \ No newline at end of file +Setting the background color only affects the subsequent [[function-ImageClearRect]] calls