Matt Dziuban
Matt Dziuban
**ATTENTION!** If you don't follow this template then your issue will be immediately closed. ## Description of the problem On some subreddits I've found that the page will jump up...
I just found that defining a case class and an implicit `EncodeJson` for it causes a null pointer exception when trying to encode an instance of the case class using...
This updates the standard formats to use `implicit def` instead of `implicit object` to allow users to override them when extending `DefaultYamlProtocol`. Trying to override them currently causes the error:...
I'm seeing behavior when using the `-w` flag where the browser reloads twice due to the output CSS file being written, then the source map being written. If I disable...
The `Coercible` instances currently generated by the `@newtype` macro are always publicly available in implicit scope. I think this makes sense when defining a newtype as a `case class` since...
`Regex.replace/4`, `Regex.match?/2`, and `String.replace/4` throw the following error in the browser: ``` TypeError: Cannot read property 'run' of undefined ``` while trying to call ``` ElixirScript.Core.re.run ``` See here for...
## steps This requires a multi-project build that has set `Global / onChangedBuildSource := ReloadOnSourceChanges`. You can use this repository to reproduce the issue: https://github.com/mrdziuban/sbt-multi-command-reload 1. Run `sbt` to load...
I'm experiencing a memory leak on the latest v3.2.7 when using an effect type that includes `WriterT`. I've put together a repository to reproduce the issue and to demonstrate that...
Accumulated `cats.data.WriterT` data not preserved from function passed to `fs2.io.readOutputStream`
When using `fs2.io.readOutputStream` in combination with an effect type that uses `cats.data.WriterT`, any data accumulated in the function passed to `fs2.io.readOutputStream` is not preserved. For example, I would expect the...
I was working on upgrading an application to 2.x and was was caught off guard by the number of new Cloudwatch metrics created. I believe the root cause is that...