@autobusal/providers 1.3.8 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/Errors/Message.tsx +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to `@autobusal/providers` are documented here. This project
|
|
|
4
4
|
adheres to [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.3.9] - 2026-07-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- `Errors/Message.tsx`: the crash/404 page's logo `alt` text was hardcoded to
|
|
12
|
+
`"Home"` in every locale, bypassing the `@lang/errors` translation
|
|
13
|
+
dictionary used for the rest of the page. Now reads `translations.home`.
|
|
14
|
+
Requires consuming apps' `src/lang/errors.ts` to define a `home` key per
|
|
15
|
+
locale (added to magus and alvavel alongside this release).
|
|
16
|
+
|
|
7
17
|
## [1.3.8] - 2026-07-29
|
|
8
18
|
|
|
9
19
|
### Added
|
package/Errors/Message.tsx
CHANGED