Will Hughes
Will Hughes
As far as I can tell (please correct me if I'm wrong), the library at present does not support setting a value for ManyToManyFields on models. Ideally, I would like...
It would be great if `rancher-letsencrypt` could read 'secret' config options like API keys from values passed by the Rancher secrets mechanism. Perhaps update `getEnvOption` so it: - Check if...
When generating Dart code, flatc normalizes most properties to "lower camel case" style, except inside structs. This means that schemas like this: ``` struct Settings { foo_bar : uint8; }...
Hi, We have just encountered an issue where `BinaryField` fields on models may have their contents truncated to 8000 bytes when using the newest `pyodbc` (4.0.22). This doesn't happen with...
The logic in the constructor for `Flow` checks if the requested scope is supported, but the `break` statement means it will stop processing after the first match. This means the...
`Flow.authorizationCodeWithPKCE` does not allow users to set the claims they wish to request from the IDP, so it defaults to `openid profile email`. This PR allows users to specify which...
Hi, In 3c3c1f2b3f5376c7a46cdb2aa8b63d6efe53a4b6 you disable building for Pi 3 boards. I'm interesting in getting this working, do you remember what the issue was? Thanks
Fixes #8052 The Flatbuffers IDL allows for enums to have values called `value`, `values`, `minValue` or `maxValue`, but if these names are used for values in an enum, the generated...
At present, the `check_for_sudo` function checks for the presence of an environment variable to see if the command was run with sudo, and therefore has the correct permissions to interact...
Fixes https://github.com/google/flatbuffers/issues/7609 Fixes https://github.com/google/flatbuffers/issues/8379 This PR builds on the work from https://github.com/google/flatbuffers/pull/8259 to: * Add a simple test to catch regressions in this area * Fix an issue where include...