@aexol/spectral 0.9.38 → 0.9.40
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 +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,42 @@ All notable changes to `@aexol/spectral` are documented here. Format follows
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.9.40] - 2026-06-22
|
|
9
|
+
|
|
10
|
+
## [0.9.39] - 2026-06-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed packaged desktop login/splash pages failing to load because
|
|
15
|
+
`getLoginPath` and `getSplashPath` resolved against `Resources/assets`
|
|
16
|
+
instead of the assets bundled inside `app.asar`. Both pages now use a
|
|
17
|
+
path relative to `__dirname`.
|
|
18
|
+
- Fixed a race where successfully closing the login window after API-key or
|
|
19
|
+
OAuth sign-in could trigger the "Login window was closed before completing
|
|
20
|
+
sign-in" error. The closed-event handler is now detached before the window
|
|
21
|
+
is closed on a successful login.
|
|
22
|
+
|
|
23
|
+
## [0.9.38] - 2026-06-22
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Desktop Electron app now shows a built-in sign-in window when no Spectral
|
|
28
|
+
credentials are found. New users can authenticate with a team API key or
|
|
29
|
+
via browser OAuth, so `spectral serve` can register the machine on first
|
|
30
|
+
launch instead of failing with "Not logged in".
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
|
|
34
|
+
- Fixed the packaged desktop login/splash pages failing to load because
|
|
35
|
+
`getLoginPath` and `getSplashPath` resolved against `Resources/assets`
|
|
36
|
+
instead of the assets bundled inside `app.asar`. Both pages now use a
|
|
37
|
+
path relative to `__dirname`, so the login window appears in the packaged
|
|
38
|
+
app on macOS, Windows, and Linux.
|
|
39
|
+
- Fixed a race where successfully closing the login window after API-key or
|
|
40
|
+
OAuth sign-in could trigger the "Login window was closed before completing
|
|
41
|
+
sign-in" error. The closed-event handler is now detached before the window
|
|
42
|
+
is closed on a successful login.
|
|
43
|
+
|
|
8
44
|
## [0.9.37] - 2026-06-22
|
|
9
45
|
|
|
10
46
|
### Fixed
|