@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 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.8.1
15
+ ## What's New in v1.9.0
16
16
 
17
- - **Enhanced Security**: Database reset endpoint now uses domain-based authorization instead of environment variables
18
- - **Production Safety**: Improved validation prevents accidental database resets in production environments
19
- - **Reliable Controls**: More robust domain checking for development and staging workflows
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