David Luecke
David Luecke
You should be able to increase the available heap size for Node globally by setting the following environment variable ```sh export NODE_OPTIONS=--max_old_space_size=4096 ``` The problem is probably that it's trying...
Ah, same problem we had with `.patch` where it now uses [a list of original ids](https://github.com/feathersjs/feathers/blob/fe072a26b64eaab1d659bc94ba98a404de663e1f/packages/mongodb/src/adapter.ts#L341) instead. Since `update` doesn't support multiple updates, should it just remove the query? ```ts...
The authentication call will also return the safe external representation of the user object. I just tested it with a newly generated application and for me it is returning the...
This seems really strange but I could indeed not get the chat working with this setting either. Since this behaviour does not seem to be documented anywhere, it seems like...
Unfortunately the default method list is currently not being inferred. They will throw a `NotImplemented` error if you try to call them though. Ideally the client inference needs to be...
Oh yes, I was able to confirm this but apparently didn't reply here. If we can have tests for the proposed fix it probably makes sense to include it.
While this is the default in newer versions of Webpack you may have to include the Feathers modules to be transpiled. ```js { test: /\.jsx?$/, exclude: /node_modules(\/|\\)(?!(@feathersjs|debug))/, loader: 'babel-loader' }...
I'm letting @marshallswain have a look at this since he did a lot of that work before. Any idea what's going on with the tests?
I meant that the MongoDB tests are not passing in CI: https://github.com/feathersjs/feathers/actions/runs/8850748298/job/24305731299?pr=3366#step:8:1588 Is there a way to make this more backwards compatible? Otherwise this'd have to wait for v6 -...
Good point. I believe to make this work, `adapter.store` should become `adapter.Model` and yes, we'd definitely want to test this in the common test suite. We also started a new...