Samuel Knowlton

Results 23 issues of Samuel Knowlton

OpenJDK 8u181, Alpine Linux in Docker, Lucee 5.3.2.38-SNAPSHOT, lucee-spreadsheet 2.0.2. Any call to `newStreamingXlsx()` or new() with `streamingXml=true` returns an NPE on this line in Spreadsheet.cfc: `arguments.workbook.createSheet( JavaCast( "String", arguments.sheetName...

OpenJDK 8u181, Alpine Linux in Docker, Lucee 5.3.2.38-SNAPSHOT, lucee-spreadsheet 2.0.2. We have a working xlsx file generated from: `spreadsheet.addRows(workbook = sheet, data = dataQuery );` If we change it to:...

We use Stripe invoices a lot and had requested a feature that would allow us to revise an invoice after it's been finalized but before it's been paid. They've added...

- [x] I have read [CONTRIBUTING](https://github.com/Quick/Quick/blob/main/CONTRIBUTING.md) and have done my best to follow them. ### What did you do? The following Quick scope is producing an erroneous table prefix for...

The following Quick scope is producing an erroneous table prefix for the 'where in' clause. ``` function scopeNotInCloneQueue( query, required string seasonUID ) { return query.whereNotIn( "registrationID", function( sQ )...

When hydrating an entity from a cache, we stash a couple values in a non-persistent struct on the top level of the entity. This throws an error in 4.2.3 in...

We had an entity with the following scope in Quick 4: ``` q.whereHas( "child", ( q ) => q.whereIn( "familyID", ( q ) => { q.from( "family_parents" ) .where( "clientID",...

type: bug

https://wirebox.ortusbooks.com/advanced-topics/wirebox-object-populator/populatefromstruct Whether or not we add these to `.fill()` or add a new method, it'd be nice to support `include` and `exclude`, `ignoreEmpty`, `nullEmptyInclude` and `nullEmptyExclude`. `composeRelationships` is a bit...

difficulty: medium
contributions: up for grabs
type: improvement

We have an entity called `qEventSignup` that represents either a player (child) or a user (adult) signing up for some event. Event signups are attached to 'question answers' -- items...

contributions: up for grabs
difficulty: complex
type: bug

If we define a property as non-persistent and then try to create an entity with `.create()` that sets that property, Quick will throw an error that it doesn't exist. Any...