Adam Hellberg

Results 24 issues of Adam Hellberg

### Steps to reproduce Have a model that uses a UUID in the paths and as its param (but still has an integer `id` as its primary key). In `routes.rb`:...

Something I've always missed in the built-in regex engine of .NET is the ability to do case transformations in the replacement string. [PCRE2 supports this](https://www.regular-expressions.info/pcre2.html#subext) by supplying an extra option...

enhancement

According to the output of `moonc -h`, supplying the option `-` (and no other option) is supposed to read from stdin and output to stdout, but this doesn't seem to...

A breaking change in the signature of `Query.AsInsert` was introduced in version 2.2.3. Signature that existed in v2.2.0: https://github.com/sqlkata/querybuilder/blob/v2.2.0/QueryBuilder/Query.Insert.cs#L43 ```csharp public Query AsInsert(IReadOnlyDictionary data, bool returnId = false) ``` How...

It doesn't seem possible to have a `SUM` in a `SELECT` column list together with other columns (unless you hardcode it with `SelectRaw`), is this correct? Consider this query: ```sql...

**Describe the bug** For some AddOns, it seems nolib detection is not working properly. This leads to WoWUp offering the nolib-version of an AddOn for download, which will likely lead...

It seems when using the retry functionality with retry delays over one minute, there is an extremely high loss rate of messages (and from what I've seen in my limited...

See also: https://github.com/RicoSuter/NSwag/issues/1541#issuecomment-691913792 Currently, the generated C# clients support the `JsonExtensionData` attribute, but in the TypeScript clients it's simply ignored. We discovered this when troubleshooting why data was missing in...

Installing dotstow with pip works fine on Python 3.6.8, but seems to break on Python 3.7.3. See [the log from running `pip install dotstow`](https://gist.github.com/Sharparam/ebf1dcc2a29c48749d97f0a3c2fdf04c). ## System details Python 3.7.3 installed...

When applying the Newtonsoft.Json `StringEnumConverter` globally in an ASP.NET Core 3.1 application by doing the following: ```cs services.AddControllers().AddNewtonsoftJson(options => options.SerializerSettings.Converters.Add(new StringEnumConverter())); ``` NSwag no longer generates the enum members as...

type: bug
help wanted