Mark Lilback

Results 7 comments of Mark Lilback

I also agree this needs to change. The [v3 documentation](https://v3.vuejs.org/guide/migration/v-model.html#_3-x-syntax) says: > In 3.x v-model on the custom component is an equivalent of passing a modelValue prop and emitting an...

To test the error handling code at 206-207 the test needs to close the connection. Then it crashes in the deinit because that tries to close it, too. This will...

PQfinish is documented as freeing the memory and "must not be used again". That means there is no way to query if the connection is open without a crash. So...

reset() and close() were marked as throws because they called validateConnection(). The connection status isn't checked after the call to PQreset(). Therefore, an error is thrown if the connection is...

Here are a couple of possible fixes: https://github.com/PowerShell/PowerShell/issues/5062 Either add a homebrew environment variable, or move the location of `brew update`. Seems like an issue with a recent brew upgrade.

can someone merge this if it all good?

I've written my own Vue 3 component for displaying images in a Quasar app. It should provide guidance for anyone else who needs to use ImageKit.io with Vue 3. Written...