Brad Overton

Results 39 issues of Brad Overton

I know this library is a little undermaintained at the moment, and I hate to add another item to the pile. I've had a lot of issues with Pretender.js recently,...

I'd like to use string ids across the board, as that's what my JSONAPI does and it's also what ember-data generally expects. EDFG seems to always use number ids by...

Just updating the dependencies of this addon to help out other repos that depend on this addon Note that ember-cli-babel 7; * drops support for Node 4. * drops support...

Initial discussion was here; https://github.com/emberjs/data/pull/8664 > we should align the config to the others so that we don't have to make folks do this. For all the other configs we...

:label: bug
good-first-issue
lts-4-12
v4-to-v5

Building an application with ember-data 5 and this addon results in this warning; ``` WARNING in ../rewritten-packages/active-model-adapter.621d47ca/active-model-adapter.js 172:21-38 export 'errorsHashToArray' (imported as 'errorsHashToArray') was not found in '@ember-data/adapter/error' (possible exports:...

Hello! I am looking at implementing this addon in my application for some selections in dropdowns. I think it would be beneficial to this addon to provide the trigger component...

I have a `~/.aws/config` file like this; ``` [profile default] sso_start_url = https://example.com/start sso_region = ap-southeast-2 sso_account_id = 123456789 sso_role_name = developer-access region = ap-southeast-2 output = json [profile app-test]...

This is more an advisory to others in case it affects them. I was confused why one of my tests was failing under 4.1.3 (it had no release notes to...

Follows on from this other issue, but it's closed since the author figured out a workaround - but I do think this addon should export types for helpers. https://github.com/machty/ember-concurrency/issues/530 With...

I'm trying to build a typed task that returns the same type that it was performed with For example; ```ts const abc: number = await someTask.perform(1) const def: string =...