Releases: belgattitude/httpx
Releases · belgattitude/httpx
@httpx/[email protected]
Patch Changes
- #475
5cbc564
Thanks @belgattitude! - Fix release
@httpx/[email protected]
Minor Changes
- #471
cf186a4
Thanks @belgattitude! - Initial and experimental json-api helpers
@httpx/[email protected]
Patch Changes
-
#467
99d6881
Thanks @belgattitude! - Add syncpack to align package.json fields -
#465
245ed6b
Thanks @belgattitude! - Dev dependencies updated to latest
@httpx/[email protected]
Minor Changes
-
#468
e78d112
Thanks @belgattitude! - Add @httpx/dsn-parser packageMoving @soluble/cache-interop to the
@httpx org.
@httpx/[email protected]
Patch Changes
42cdf63
Thanks @belgattitude! - Minor perf by extracting regexp into an hoisted var
@httpx/[email protected]
Minor Changes
-
#402
6b945d3
Thanks @belgattitude! - Add field error validation support for 422 HttpUnprocessableEntityExample:
import { HttpUnprocessableEntity } from '@httpx/exception'; const e422 = new HttpUnprocessableEntity({ errors: [ { message: 'Invalid email', path: 'email', code: 'invalid_email', }, { message: 'Invalid address', path: ['addresses', 0, 'line1'], code: 'empty_string', }, ], }); console.log(e422.errors);
Patch Changes
- #404
f4c2780
Thanks @belgattitude! - Fix cyclic type import and use latest rollup to build
@httpx/[email protected]
Patch Changes
- #309
67321bc
Thanks @belgattitude! - Fix missing serializer export for commonjs (esm worked)
@httpx/[email protected]
Patch Changes
- #143
7ccae63
Thanks @belgattitude! - No changes, just the build with latest rollup/babel
@httpx/[email protected]
Minor Changes
-
#31
167c216
Thanks @belgattitude! - Support ValidationError in HttpBadRequestIn some circumstances you might find useful to append the validation errors to
HttpBadRequest
. Here's a quick example:const e400 = new HttpBadRequest({ errors: [ { message: 'Invalid email', path: 'email', code: 'invalid_email', }, { message: 'Invalid address', path: ['addresses', 0, 'line1'], code: 'empty_string', }, ], }); console.log(e400.errors);
@httpx/[email protected]
Patch Changes
- #28
3ddb181
Thanks @belgattitude! - Increase legacy browsers usage (+ include latest babel upstream fixes)