From 18c42cc57599c85833894bafc4ed5b8c633a71b4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 23 Dec 2023 14:53:58 +0000 Subject: [PATCH 1/2] fix: upgrade ch.qos.logback:logback-classic from 1.3.14 to 1.4.14 Snyk has created this PR to upgrade ch.qos.logback:logback-classic from 1.3.14 to 1.4.14. See this package in Maven Repository: https://mvnrepository.com/artifact/ch.qos.logback/logback-classic/ See this project in Snyk: https://app.snyk.io/org/lmajano/project/ed714d62-4103-4efd-88bd-f6059d7861ed?utm_source=github&utm_medium=referral&page=upgrade-pr --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e117ac7e..2cdd461e 100644 --- a/pom.xml +++ b/pom.xml @@ -351,7 +351,7 @@ lucee-core-version: ${minLuceeVersion} ch.qos.logback logback-classic - 1.3.14 + 1.4.14 From 7483289268c5ff51d4ba2e232529fa95137f4332 Mon Sep 17 00:00:00 2001 From: lmajano Date: Sat, 23 Dec 2023 14:54:33 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20Apply=20cfformat?= =?UTF-8?q?=20changes=20-=20[ci=20skip]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/specs/builtins/EntityLoadByExampleTest.cfc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/specs/builtins/EntityLoadByExampleTest.cfc b/tests/specs/builtins/EntityLoadByExampleTest.cfc index a88fb67f..219067ac 100644 --- a/tests/specs/builtins/EntityLoadByExampleTest.cfc +++ b/tests/specs/builtins/EntityLoadByExampleTest.cfc @@ -6,14 +6,16 @@ component extends="testbox.system.BaseSpec" { entitySave( variables.testDealer ); ormFlush(); - queryExecute( " + queryExecute( + " INSERT INTO `Auto`( id, make, model, dealerID, inserted ) VALUES ( '#createUUID()#', 'Ford', 'Fusion', '#variables.testDealer.getId()#', true ), ( '#createUUID()#', 'Ford', 'Focus', '#variables.testDealer.getId()#', true ), ( '#createUUID()#', 'Ford', 'Mustang', null, true ), ( '#createUUID()#', 'Ford', 'F-150', null, true ) - " ); + " + ); } public void function run(){