Releases: poppinss/utils
Releases · poppinss/utils
Fixes broken v6.9.1 release
Fix broken 6.9.0 release
Packages refactoring
Certain utilities have been moved to their own packages and the @poppinss/utils
re-exports them.
Bug Fixes
- broken export (86c3521)
Features
- remove slash package in favor of inbuilt implementation (83fe902)
Full Changelog: v6.8.3...v6.9.0
Fix invalid export path for exceptions submodule
Fix broken submodules path from last release
Export exception and slash method from their own submodules
This release moves the following classes/methods to their own submodules. The existing imports will also continue to work, hence there are no breaking changes.
- import { slash } from '@poppinss/utils'
+ import { slash } from '@poppinss/utils/slash'
- import { Exception, createError } from '@poppinss/utils'
+ import { Exception, createError } from '@poppinss/utils/exception'
- import { RuntimeException, InvalidArgumentsException } from '@poppinss/utils'
+ import { RuntimeException, InvalidArgumentsException } from '@poppinss/utils/exceptions'
Features
What's Changed
- Fix typo in Secret by @marcuspoehls in #45
New Contributors
- @marcuspoehls made their first contribution in #45
Full Changelog: v6.7.3...v6.8.0
Update dependencies
Full Changelog: v6.7.2...v6.7.3
Change Opaque prop declaration and anonymous error naming
What's Changed
- fix: prevent opaque prop suggestion in IDEs by @targos in #40
- fix: assign name to anonymous error created using createError method in 535125f
Full Changelog: v6.7.1...v6.7.2
Fix `lodash` entrypoint for Vite environment
- fix: add
default
conditional export for lodash entrypoint 557dabb
Add Secret utility and rename join method to joinToURL
- Please refer the README to learn more about the
Secret
utility. - The
join
helper was never documented, so I take the lenience to rename it without the breaking change.
Commits
- feat: add Secret utility 7194dd9
- refactor: document and tighten up assert utilities 5e5767c
- refactor: rename join utility to joinToURL 6f3f226
- chore: update dependencies e35104b
Full Changelog: v6.6.0...v6.7.0