Releases: asd-xiv/blocks
Releases · asd-xiv/blocks
v6.0.0
v5.0.0
5.0.0 (2022-05-19)
⚠ BREAKING CHANGES
-
@asd14/blocks is now ESM only and requires node
^14.13.1 || >=16.0.0
-
feat: update package to ESM
-
@asd14/blocks is now ESM only and requires node
^14.13.1 || >=16.0.0
-
chore: format
-
chore: fix CHANGELOG.md typo
Co-authored-by: David Gil dgilperez@gmail.com
- fix: remove prepare step from package.json to avoid messing up with the consuming repo's environment
Co-authored-by: David Gil dgilperez@gmail.com
Features
v4.1.1
v4.1.0
v4.0.0
4.0.0 (2021-01-19)
Bug Fixes
- Errors - AuthorizationError and AuthenticationError have the same signature as InputError and NotFoundError. (325602f)
BREAKING CHANGES
- Sync all errors to the same signature:
// old
throw new NotFoundError(message, details)
throw new InputError(message, details)
throw new AuthorizationError({message, details})
throw new AuthenticationError({message, details})
// new
throw new NotFoundError(message, details)
throw new InputError(message, details)
throw new AuthorizationError(message, details)
throw new AuthenticationError(message, details)