feathers icon indicating copy to clipboard operation
feathers copied to clipboard

The API and real-time application framework

Results 246 feathers issues
Sort by recently updated
recently updated
newest added

The docs describe in [this section](https://feathersjs.com/api/express.html#params-query) how to set a custom query parser. It is however not possible, this was [reported before](https://github.com/feathersjs/feathers/issues/2629) and fixed, but unfortunately the fix was reverted...

### Steps to reproduce 1. Generate a basic app with local authentication. 1. Create a user. 1. Hit /authentication with proper credentials 1. Receive response that includes hashed password. ```json...

### Summary I started this refactor a while ago and had to pause it after the scope blew out. I thought I might put up a PR to get feedback...

For most DB adapters, we have to do an initial lookup before doing the actual patch/update database method. For more context see this issue: #3363. But, we could skip this...

The `update` method is currently breaking when using data that affects the query. For example, ```js const dave = await app.service('people').create({ name: 'Dave' }) // Now mutate AND query the...

### Steps to reproduce Hi, Create a service (with knex postgre on my side). Most on my CRUDS methods should not be accessible from external (for this I set the...

### Steps to reproduce PS: Quasar dev (i.e for web no issues) create a quasar project , to connect to a feathers service using quasar mode add capacitor quasar dev...

### Steps to reproduce Set module as NodeNext in client.ts: import authenticationClient from '@feathersjs/authentication-client'; client.configure(authenticationClient()); ### Expected behavior no error ### Actual behavior Type 'typeof import("xxx/node_modules/@feathersjs/authentication-client/lib/index")' has no call signatures....

### Issue In V5, setting up a socket.io client with an ackTimeout: ``` const socket = io( 'http://api.feathersjs.com', { ackTimeout: 5000 } ) app.configure(socketio(socket)) ``` changes socket.io client's ack callback...

### Steps to reproduce In a fresh copy of [feathers-chat](https://github.com/feathersjs/feathers-chat), paste the following snippet at the end of the [`app.ts`](https://github.com/feathersjs/feathers-chat/blob/b99214a17cca3f9386b3b336238bc057ae03fab7/feathers-chat-ts/src/app.ts#L56) file: ```ts (async () => { const query: any =...