@qwickapps/server 1.8.2 → 1.9.0
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 +14 -0
- package/README.md +4 -4
- package/dist-ui/assets/{index-Cez_jyhl.js → index-DnEQCOGR.js} +51 -51
- package/dist-ui/assets/{index-Cez_jyhl.js.map → index-DnEQCOGR.js.map} +1 -1
- package/dist-ui/index.html +1 -1
- package/package.json +26 -24
- package/src/plugins/auth/adapters/supertokens-adapter.ts +9 -13
- package/src/plugins/auth/auth-plugin.ts +6 -5
- package/src/plugins/auth/env-config.ts +1 -0
- package/src/plugins/auth/types.ts +2 -0
- package/src/plugins/maintenance/seed-executor.ts +5 -4
- package/src/plugins/maintenance-plugin.ts +27 -3
- package/ui/src/dashboard/widgets/AuthStatusWidget.tsx +3 -8
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to @qwickapps/server will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.9.0] - 2026-02-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Auth Plugin API Base Path**: Auth plugin now respects `SUPERTOKENS_API_BASE_PATH` env var for router registration, allowing custom auth endpoint paths
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Auth Status Widget**: Fixed "Unable to load auth status" on `/cpanel` dashboard. Now uses `api.getAuthConfigStatus()` which constructs the correct URL through the manifest client.
|
|
17
|
+
- **Auth Plugin**: Fixed "API request failed: 500" on `/cpanel/auth`. SuperTokens init middleware now calls `next()` on failure so auth-checking middleware decides whether to block based on `authRequired` config.
|
|
18
|
+
- **Maintenance Plugin - Database Reset**: Fixed "Failed to reset database". Restored dynamic DB role derivation from the database connection URL.
|
|
19
|
+
- **Maintenance Plugin - Seed Execution**: Fixed "Execution failed" in Docker production. Restored correct executor selection: `.mjs` files use `node`, only `.ts`/`.mts` files use `tsx`.
|
|
20
|
+
- **Maintenance Plugin - Seed Execution**: Fixed UI stuck in "Running..." state after seed failure. Restored SSE `exit` event emission in error handler.
|
|
21
|
+
|
|
8
22
|
## [1.8.2] - 2026-02-17
|
|
9
23
|
|
|
10
24
|
### Fixed
|
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@ A flexible, pluggable control panel framework for QwickApps services. Provides a
|
|
|
12
12
|
- **Frontend App Support**: Handle root path with redirect, static files, or landing page
|
|
13
13
|
- **Theming**: Customizable branding and styling
|
|
14
14
|
|
|
15
|
-
## What's New in v1.
|
|
15
|
+
## What's New in v1.9.0
|
|
16
16
|
|
|
17
|
-
- **
|
|
18
|
-
- **
|
|
19
|
-
- **
|
|
17
|
+
- **Custom Auth Path**: Auth plugin now supports `SUPERTOKENS_API_BASE_PATH` for custom auth endpoint routing
|
|
18
|
+
- **Dashboard Fix**: Fixed "Unable to load auth status" on the control panel dashboard
|
|
19
|
+
- **Seed Reliability**: Fixed seed execution failures in Docker production and stuck UI state after errors
|
|
20
20
|
|
|
21
21
|
See [CHANGELOG.md](./CHANGELOG.md) for full release history.
|
|
22
22
|
|