feathers
feathers copied to clipboard
The API and real-time application framework
### Steps to reproduce 1. I did set jwt expire time very shortly for testing token refreshing. set 5seconds. config/default.json 2. after 5seconds. feathers debug printed "Removing authentication information and...
Update copyright date to 2024 ### Summary (If you have not already please refer to the contributing guideline as [described here](https://github.com/feathersjs/feathers/blob/dove/.github/contributing.md#pull-requests)) - [ ] Tell us about the problem your...
### Steps to reproduce I simply use the create command. (Installing the `5.0.27` version) - `npm create feathers@latest myApp` **Options choose in the creation:** - Typescript - KoaJS - HTTP...
See: https://github.com/feathersjs/feathers/issues/3492 This PR is a WIP and a proof of concept. I have added a new `_resolve` method and added a test to compare the speed of this method...
I was clicking around the repo today and noticed this issue: https://github.com/feathersjs/feathers/pull/3487. It reminded me that awhile back I completed an issue for yup.js that I believe resolvers could also...
- export every function directly - improve 'some' & 'every' for early exit - use 'Object.values' for 'values' instead of 'Object.keys.map' (2x perf) - isObject: first check for null -...
In `@feathers/knex`, when inserting data, use the `client.driverName` property to identify the clients that can return fields when inserting instead of the client config as a string. ### Problem The...
### Steps to reproduce (First please check that this issue is not already solved as [described here](https://github.com/feathersjs/feathers/blob/dove/.github/contributing.md#report-a-bug) - if it is a general question or suggestion please start a [Discussion](https://github.com/feathersjs/feathers/discussions))...
### Summary - [X] Tell us about the problem your pull request is solving. - When the query contains `DISTINCT` or `GROUP BY`, incorrect `total` is being returned. This PR...
Hi, I am trying to use FeathersJS with Postgres. My goal is to get feathers.js to work with postgres timestamptz. I want feathers.js to return postgres timestamptz columns as javascript...