@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 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
@@ -40,7 +40,7 @@ const Message = ({ type }: Props): JSX.Element => {
40
40
  }
41
41
  } }
42
42
  >
43
- <img src={ `${ data.url }/logo-${ theme }.svg` } alt="Home" />
43
+ <img src={ `${ data.url }/logo-${ theme }.svg` } alt={ translations.home } />
44
44
  </Logo>
45
45
 
46
46
  <Description>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts"