jclausen
10/03/2022, 4:36 PMThis release adds full compatibility for Elasticsearch v8.x as well as maintaining support for Elasticsearch versions 6 and 7.https://www.ortussolutions.com/blog/cbelasticsearch-233-released
chris_hopkins
10/04/2022, 2:36 PMelpete
10/04/2022, 4:25 PMelpete
10/04/2022, 4:25 PMelpete
10/04/2022, 4:26 PMelpete
10/04/2022, 4:48 PMwil-shiftinsert
10/06/2022, 8:45 AMelpete
10/06/2022, 3:47 PMelpete
10/06/2022, 3:47 PMelpete
10/06/2022, 3:47 PMbdw429s
10/07/2022, 5:58 PMCavan Vannice
10/07/2022, 6:10 PMisNumeric()
to determine what type the value isDavid Rogers
10/10/2022, 8:36 PMRyan Albrecht
10/11/2022, 7:26 PMretrieveQuery
method but now longer has any effect.
var prefix = getInstance('IpPrefix').find(1);
var ipAddresses = prefix
.ipAddresses() //relationship instance
.orderBy('id', 'asc')
.retrieveQuery()
.get();
Could the quick experts weigh in? @elpete @sknowltonjas
10/11/2022, 7:48 PMOokma-Kyi
10/11/2022, 8:45 PMvar result = validateModel(
target = rc,
constraints = {
...
"password" : {
"required" : true,
"regex" : "/(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*\W)/",
"size": "6..255"
},
"passwordConfirmation" : { "required" : true, "sameAs" : "password" }
}
);
However no matter what I put in it gives the validator error: The 'password' value does not match the regular expression: /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*\W)/
. I tried testing my regex using a regex tester https://www.regextester.com/ and used the string Ok12345!
and verified it was correct.
Any ideas?Cavan Vannice
10/11/2022, 8:47 PMortussolutions/commandbox:adobe2021
I am unable to use cfpm to install any packages. I am getting the error
CommandBox> cfpm install mail
run /bin/bash "/usr/local/lib/serverHome/WEB-INF/cfusion/bin/cfpm.sh" install mail
One or more packages require the server to be at update 5. Since the server is at update 4, you must install the update 5 of the server. After upgrading the server update, the packages can be installed.Peter Amiri
10/11/2022, 9:15 PMnolanerck
10/11/2022, 10:28 PMrichard.herbert
10/12/2022, 6:09 PMRyan Albrecht
10/12/2022, 9:27 PM// this does work
var entity = getInstance('Device').where('id',4);
// this does NOT work
var entity = getInstance('Device')
local.entity.where('id',4);
//get the result
var result = entity.get();
writeDump(var=result, top=2);
Daniel Mejia
10/12/2022, 9:34 PMRyan Albrecht
10/14/2022, 3:41 PMBOX_INSTALL: 'true'
environment variables is true
plutus_web | key [MULTICONTEXT] doesn't exist
plutus_web |
plutus_web |
plutus_web | /usr/local/lib/CommandBox/cfml/modules/commandbox-cfconfig/models/Util.cfc: line 70
plutus_web | 68:
plutus_web | 69: // Crappy workaround for CommandBox bug where this logic is being done on the fly, but not saved back into the serverInfo struct!
plutus_web | 70: if( serverInfo.multiContext && not serverInfo.webConfigDir contains '{web-root-directory}' && not serverInfo.webConfigDir contains '{web-context-hash}' ) {
plutus_web | 71: serverInfo.webConfigDir &= '-{web-context-hash}'
plutus_web | 72: }
plutus_web | called from /usr/local/lib/CommandBox/cfml/modules/commandbox-cfconfig/interceptors/ConfigLoader.cfc: line 398
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/wirebox/system/core/events/EventPool.cfc: line 118
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/wirebox/system/core/events/EventPool.cfc: line 96
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/wirebox/system/core/events/EventPoolManager.cfc: line 59
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/services/InterceptorService.cfc: line 57
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/services/ServerService.cfc: line 980
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/modules_app/server-commands/commands/server/start.cfc: line 173
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/services/CommandService.cfc: line 345
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/services/CommandService.cfc: line 158
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/Shell.cfc: line 768
plutus_web | called from /usr/local/lib/CommandBox/cfml/system/Bootstrap.cfm: line 119
Ryan Albrecht
10/14/2022, 3:42 PMjakobward
10/14/2022, 4:46 PMJordan Clark
10/17/2022, 7:49 PM