Derek Wickern
Derek Wickern
### Versions used Akka version: 2.6.17 Alpakka version: 3.0.4 ### Relevant logs I've seen this error occasionally in logs. It seems to happen during shutdown. ``` java.lang.IllegalStateException: not yet initialized:...
Currently only `mockCreate` and `mockUpdate` support `match()`. This PR adds `match()` for the other kinds of mock requests. Request bodies can get complex so it's nice to have a callback...
When there are multiple mocks for the same request, we should prioritize the newer one. For example, you might set up some mocks for all tests in `beforeEach`, and then...
Given a one-line HOCON config file with an `include` (and no newline): ``` include "application" ``` Adding a value with the `ConfigDocument` API will produce an invalid config file: ```...
If there's a WiX project in the solution, opening the Target Framework Migrator fails with this error: ``` --------------------------- Microsoft Visual Studio --------------------------- InvalidParameter Parameter name: index --------------------------- OK ---------------------------...
An attempt at E-D 2.8 compatibility using record-data and public APIs. Fragments are stored internally as RecordData: ```ts type Fragment = RecordData | null; type FragmentArray = RecordData[] | null;...
After upgrading from 3.2.0-beta.1 to 3.2.0-beta.2 I've got some issues related to serializing fragments: ``` Error: Assertion Failed: You need to pass a model name to the store's serializerFor method...
This change associates source files with URLs so that IntelliJ can find your sources. - only supports "classic" structure (no pods) - supports in-repo addons - probably can't debug addons...
Ember-cli detects addons based on the keywords field in package.json ([source](https://github.com/ember-cli/ember-cli/blob/a4734540b3889c7f6ef304fe6a81dd356f77bfe4/lib/models/addon-discovery.js#L198)): ``` "keywords": [ "ember-addon" ], ``` We currently look for a `.ember-cli` file in the directory but not all...
A small correction to #20: ```js const a = Foo.extend({ queryParams: { ... } }) ``` need to be transformed to ```js class A extends Foo { queryParams = [{...