Releases: balena-io-modules/ui-shared-components
Releases · balena-io-modules/ui-shared-components
v9.8.0
v9.7.9
v9.7.8
Update dependency virtua to ^0.37.0
Notable changes
- Refactor startIndex/endIndex to findStartIndex()/findEndIndex() by @aeharding in https://github.com/inokawa/virtua/pull/545
onRangeChange
prop was removed to improve future maintainability. UseonScroll
prop andhandle.startIndex
/endIndex
instead. If you have any trouble, please ask me in Discussions.- Remove discouraged playwright APIs by @inokawa in https://github.com/inokawa/virtua/pull/536
- Replace onRangeChange with handle methods by @inokawa in https://github.com/inokawa/virtua/pull/543
inokawa/virtua (virtua)
v0.37.1
What's Changed
- Refactor startIndex/endIndex to findStartIndex()/findEndIndex() by @aeharding in https://github.com/inokawa/virtua/pull/545
Full Changelog: inokawa/virtua@0.37.0...0.37.1
v0.37.0
BREAKING CHANGES
onRangeChange
prop was removed to improve future maintainability. UseonScroll
prop andhandle.startIndex
/endIndex
instead. If you have any trouble, please ask me in Discussions.
What's Changed
- Remove discouraged playwright APIs by @inokawa in https://github.com/inokawa/virtua/pull/536
- Replace onRangeChange with handle methods by @inokawa in https://github.com/inokawa/virtua/pull/543
Full Changelog: inokawa/virtua@0.36.3...0.37.0
List of commits
33e08cb (Address breaking changes, 2024-11-19)
4c062b3 (Update dependency virtua to ^0.37.0, 2024-11-18)
v9.7.7
v9.7.6
v9.7.5
v9.7.4
v9.7.3
Update dependency husky to v9
Notable changes
- Fix issue where example pre-commit file is generated incorrectly by @dexmlee in https://github.com/typicode/husky/pull/1519
- @OlegKipchatov made their first contribution in https://github.com/typicode/husky/pull/1495
- @Byron2016 made their first contribution in https://github.com/typicode/husky/pull/1499
- @dexmlee made their first contribution in https://github.com/typicode/husky/pull/1519
- fixes #1494, support
pre-merge-commit
hook by @RainMeoCat in https://github.com/typicode/husky/pull/1497 - @RainMeoCat made their first contribution in https://github.com/typicode/husky/pull/1497
- Improve deprecation notice
- fix: better handle space in
PATH
- #!/usr/bin/env sh # <- This is deprecated, remove it
- . "$(dirname -- "$0")/_/husky.sh" # <- This is deprecated, remove it
- npx jest
bunx husky init
command- Workaround for some hooks implementation on Windows
#!/usr/bin/env sh
and. "$(dirname -- "$0")/_/husky.sh"
are deprecated.husky
command will automatically remove them, no action required.- If you're having code in
~/.huskyrc
please move it to.config/husky/init.sh
- chore: update
package-lock.json
by @btea in https://github.com/typicode/husky/pull/1383 - fix:
export HUSKY=0
in init (fixes #1393) by @typicode in https://github.com/typicode/husky/pull/1395 - fix: rename index.d.ts to index.d.mts by @mrkjdy in https://github.com/typicode/husky/pull/1379
- refactor: rename files by @typicode in https://github.com/typicode/husky/pull/1378
- docs: update index.md by @khaledYS in https://github.com/typicode/husky/pull/1369
- Fix tab detection on install command by @glensc in https://github.com/typicode/husky/pull/1376
- refactor: reduce file size by @typicode in https://github.com/typicode/husky/pull/1377
- fix: typo and source
~/.huskyrc
correctly (compatibility with v8) - docs: fix example by @typicode in https://github.com/typicode/husky/pull/1363
- docs: add favicon by @rakleed in https://github.com/typicode/husky/pull/1354
- chore: apply editorconfig to code only by @typicode in https://github.com/typicode/husky/pull/1355
- docs: update install script to mjs and fix CI checks by @starnayuta in https://github.com/typicode/husky/pull/1357
- Fix unbound variable by @typicode in https://github.com/typicode/husky/pull/1359
- docs: update path to startup files by @ManuelRauber in https://github.com/typicode/husky/pull/1350
- fix: init error by @typicode in https://github.com/typicode/husky/pull/1353
- fix: init create dir before by @typicode in https://github.com/typicode/husky/pull/1348
- refactor: simplify by @typicode in https://github.com/typicode/husky/pull/1349
- fix: init not working on pnpm #1334 by @rozbo in https://github.com/typicode/husky/pull/1347
- docs: fix link by @typicode in https://github.com/typicode/husky/pull/1340
- chore: fix links in issue template by @julien-f in https://github.com/typicode/husky/pull/1341
- fix: add scripts field if not present by @chalkygames123 in https://github.com/typicode/husky/pull/1338
- docs: changelog link by @typicode in https://github.com/typicode/husky/pull/1343
- fix: insert final newline by @chalkygames123 in https://github.com/typicode/husky/pull/1339
- fix: fix git hooks path on windows by @rozbo in https://github.com/typicode/husky/pull/1346
- fix: exit code by @gergelypap in https://github.com/typicode/husky/pull/1336
- docs: typo by @chalkygames123 in https://github.com/typicode/husky/pull/1337
- Enhanced security with CI and npm
--provenance
for safer publishing. - Added
$XDG_CONFIG_HOME
support. Move~/.huskyrc
to~/.config/husky/init.sh
for centralized configuration. - Fixed permission issue for Windows-created hooks; they no longer need to be executable.
- Removed
husky install
. Usehusky
orhusky some/dir
for the same functionality (deprecation notice to be added). - Modified behavior when
.git
is missing; it now triggers a warning instead of failure. - Replaced
HUSKY_DEBUG=1
withHUSKY=2
for debugging. - Updated the Husky API for module usage.
- Transitioned to
ESM
for module usage. - Dropped support for Node 14 and 16.
- Revamped docs.
- "prepare": "husky install"
- #!/usr/bin/env sh
- . "$(dirname -- "$0")/_/husky.sh"
- const husky = require('husky')
- // ...
typicode/husky (husky)
v9.1.6
What's Changed
- Fix issue where example pre-commit file is generated incorrectly by @dexmlee in https://github.com/typicode/husky/pull/1519
New Contributors
- @OlegKipchatov made their first contribution in https://github.com/typicode/husky/pull/1495
- @Byron2016 made their first contribution in https://github.com/typicode/husky/pull/1499
- @dexmlee made their first contribution in https://github.com/typicode/husky/pull/1519
Full Changelog: typicode/husky@v9.1.5...v9.1.6
v9.1.5
What's Changed
- fixes #1494, support
pre-merge-commit
hook by @RainMeoCat in https://github.com/typicode/husky/pull/1497
New Contributors
- @RainMeoCat made their first contribution in https://github.com/typicode/husky/pull/1497
Full Changelog: typicode/husky@v9.1.4...v9.1.5
v9.1.4
- Improve deprecation notice
v9.1.3
- fix: better handle space in
PATH
v9.1.2
Show a message instead of automatically removing deprecated code.
This only concerns projects that still have the following code in their hooks:
- #!/usr/bin/env sh # <- This is deprecated, remove it
- . "$(dirname -- "$0")/_/husky.sh" # <- This is deprecated...