formatjs_cli_v0.1.12
- macOS Apple Silicon:
formatjs_cli-darwin-arm64 - Linux x86_64:
formatjs_cli-linux-x64
# macOS (Apple Silicon)
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.12/formatjs_cli-darwin-arm64
chmod +x formatjs_cli-darwin-arm64
sudo mv formatjs_cli-darwin-arm64 /usr/local/bin/formatjs
# Linux
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.12/formatjs_cli-linux-x64
chmod +x formatjs_cli-linux-x64
sudo mv formatjs_cli-linux-x64 /usr/local/bin/formatjs
Verify the checksums:
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.12/checksums.txt
shasum -a 256 -c checksums.txt
formatjs_cli_v0.1.11
- macOS Apple Silicon:
formatjs_cli-darwin-arm64 - Linux x86_64:
formatjs_cli-linux-x64
# macOS (Apple Silicon)
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.11/formatjs_cli-darwin-arm64
chmod +x formatjs_cli-darwin-arm64
sudo mv formatjs_cli-darwin-arm64 /usr/local/bin/formatjs
# Linux
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.11/formatjs_cli-linux-x64
chmod +x formatjs_cli-linux-x64
sudo mv formatjs_cli-linux-x64 /usr/local/bin/formatjs
Verify the checksums:
curl -LO https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.11/checksums.txt
shasum -a 256 -c checksums.txt
1.9.5
See Changelog:
1.9.5 (2026-01-29)
- Beams: Fix beams not fully covering stem of last note (~1 px missing) (#1593) (a03ce79)
- DrawFromMeasure: Fix some clef changes not respected when starting to render from a later measure instead of first (#1079) (e.g. option drawFromMeasureNumber: 9) (d62b2c5)
- Transposing: Fix transposition from complex key signatures like c# major with >6 sharps/flats leading to unexpected key signature (1b2aece)
- Transposing: Prefer sharps for transposing to sharp key signature and vice versa for flats (#1345). Prefer given accidental if it doesn't conflict with new keysignature (partly revert behavior change in recent fix for #1639) (69506f8)
- Transposing: Transposing back and forth doesn't change accidentals anymore (#1639, #1383) (transposing back to original key signature keeps original accidentals) (39796fe)
@heroui/user@2.2.25
- Updated dependencies [
5ec842b]:- @heroui/avatar@2.2.25
@heroui/use-image@2.1.14
-
#6041
5ec842bThanks @brianatdetections! - Fix race condition in use-image hook that caused cached images to remain invisible (stuck at opacity-0) on Firefox and Safari.Root Cause: Event handlers (
onload/onerror) were attached AFTER setting the imagesrc. For cached images, the browser firesonloadsynchronously whensrcis set, causing the event to be missed. This is particularly prevalent in Firefox and Safari due to their JavaScript execution timing characteristics.Solution:
- Attach
onload/onerrorhandlers BEFORE settingsrc - Check both
naturalWidthANDnaturalHeight(per CodeRabbit review feedback on #4523) - Handle synchronous error callbacks for failed cached images
- Include
ignoreFallbackin useCallback dependencies to prevent stale closures when prop changes dynamically - Add comprehensive test coverage including synchronous callback scenarios and dynamic
ignoreFallbackchanges
Fixes #4534, #2259
- Attach
@heroui/theme@2.4.26
-
#6157
5549167Thanks @wingkwong! - remove flat dependencies (#6148) -
#6034
1f08506Thanks @atishkr25! - improve pagination with large page counts (#4853, #5860)