Stephen Blackstone

Results 12 issues of Stephen Blackstone

Dynamically importing the individual parsers as needed confuses ESBuild and it won't include them in the package. This was an issue in particular trying to deploy with CDK's NodejsFunction implementation..

It was completely unclear to me how to propagate the parsed token back to the echo context so that it can be used in the handlers. This small PR updates...

## GORM Playground Link https://github.com/go-gorm/playground/pull/679 ``` type MultiTable struct { Field1 string `gorm:"primarykey"` Field2 string `gorm:"primarykey"` Field3 string `gorm:"primarykey"` } func TestGORM(t *testing.T) { if err := DB.AutoMigrate(&MultiTable{}); err !=...

type:with reproduction steps

Using Go 1.20 It seems like its looking for an exact match to a sample file, but the output has changed slightly... ![image](https://github.com/hooklift/gowsdl/assets/131382/64ca9395-d3c7-464a-95c3-81c9a54e47c2) It's not clear to me what this...

Custom validations will fail if they take a parameter and end in "on" Suppose you create a function - _password_confirmation(.orig_password_field)_ This would become: _data-validate="validate(password_confirmation(.orig_password_field))"_ Look at the function "extractEvents" -...

The file is called in the code and causes an error to be thrown but the file does not exist in the codebase... Perhaps authPath should default to false until...

Using the mass update feature as currently documented does not work in PHP 5.3.. PHP 5.3 deprecated call-time pass by reference.. As documented: Blarg::table()->update(array(...), array(...)) will throw an error that...

I've got a program I'm developing that uses background process that loads rails (delayed_job & clockwork). Having these two processes up plus a rails console causes 3 sets of fsevent_watchers...

## Explain your user case and expected results This test case highlights MSSQL failing to delete when using composite primary keys..

## Describe the feature Merge (upsert) queries currently require all of the columns in `clause.Conflict.Columns` to be primary keys, otherwise it silently falls back to a regular insert. A table...