@flancer32/teq-web 0.8.0 → 0.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
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.0] - 2026-03-25 - Release preparation for minor version bump
4
+
5
+ ### Changed
6
+ - Updated package version metadata to `0.9.0`.
7
+
3
8
  ## [0.8.0] - 2026-03-17 - Flat runtime configuration and server startup alignment
4
9
 
5
10
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flancer32/teq-web",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Server-side web request coordination infrastructure for TeqFW modular monolith applications.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -41,7 +41,7 @@
41
41
  ]
42
42
  },
43
43
  "dependencies": {
44
- "@teqfw/di": "^2.1.0"
44
+ "@teqfw/di": "^2.3.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^25.4.0",
@@ -1,7 +1,7 @@
1
1
  // @ts-check
2
2
 
3
3
  export const __deps__ = Object.freeze({
4
- path: 'node_path',
4
+ path: 'node:path',
5
5
  });
6
6
 
7
7
  export default class Fl32_Web_Back_Handler_Static_A_Config {
@@ -1,8 +1,8 @@
1
1
  // @ts-check
2
2
 
3
3
  export const __deps__ = Object.freeze({
4
- fs: 'node_fs',
5
- path: 'node_path',
4
+ fs: 'node:fs',
5
+ path: 'node:path',
6
6
  });
7
7
 
8
8
  export default class Fl32_Web_Back_Handler_Static_A_Fallback {
@@ -1,9 +1,9 @@
1
1
  // @ts-check
2
2
 
3
3
  export const __deps__ = Object.freeze({
4
- fs: 'node_fs',
5
- http2: 'node_http2',
6
- path: 'node_path',
4
+ fs: 'node:fs',
5
+ http2: 'node:http2',
6
+ path: 'node:path',
7
7
  logger: 'Fl32_Web_Back_Logger$',
8
8
  helpMime: 'Fl32_Web_Back_Helper_Mime$',
9
9
  resolver: 'Fl32_Web_Back_Handler_Static_A_Resolver$',
@@ -5,7 +5,7 @@
5
5
  * a relative URL to an absolute filesystem path under a given root.
6
6
  */
7
7
  export const __deps__ = Object.freeze({
8
- path: 'node_path',
8
+ path: 'node:path',
9
9
  });
10
10
 
11
11
  export default class Fl32_Web_Back_Handler_Static_A_Resolver {
@@ -2,7 +2,7 @@
2
2
 
3
3
  /* eslint-disable jsdoc/require-param-description,jsdoc/check-param-names */
4
4
  export const __deps__ = Object.freeze({
5
- http2: 'node_http2',
5
+ http2: 'node:http2',
6
6
  });
7
7
 
8
8
  export default class Fl32_Web_Back_Helper_Respond {
@@ -5,8 +5,8 @@
5
5
  * Handles incoming requests and delegates them to the Pipeline Engine.
6
6
  */
7
7
  export const __deps__ = Object.freeze({
8
- http: 'node_http',
9
- http2: 'node_http2',
8
+ http: 'node:http',
9
+ http2: 'node:http2',
10
10
  config: 'Fl32_Web_Back_Config_Runtime$',
11
11
  logger: 'Fl32_Web_Back_Logger$',
12
12
  pipelineEngine: 'Fl32_Web_Back_PipelineEngine$',