@ti-engine/web-framework 1.24.1 → 1.24.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  This document will contain the list of changes made to the framework. The format is based on the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification.
4
4
 
5
+ ## Version 1.24.2
6
+
7
+ Dependency maintenance only — no framework code changed.
8
+
9
+ * chore(deps): update `@alpinejs/csp` from `^3.15.12` to `^3.16.1`, and refresh the vendored
10
+ `bin/static/scripts/lib/alpinejs-csp.min.js` to the matching build. The vendored file is what the browser actually
11
+ loads, so it has to move with the dependency or the two silently disagree; it is byte-identical to
12
+ `node_modules/@alpinejs/csp/dist/cdn.min.js` at 3.16.1
13
+ * chore(deps): update `openid-client` from `^6.8.4` to `^6.8.5`
14
+ * chore(deps): update `@types/express-session` from `^1.18.2` to `^1.19.0` (type declarations only — no runtime code)
15
+
5
16
  ## Version 1.24.1
6
17
 
7
18
  License change only — no functional code changed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ti-engine/web-framework",
3
- "version": "1.24.1",
3
+ "version": "1.24.2",
4
4
  "description": "A web-framework based on the ti-engine. It provides a customizable ready-to-use web-server microservice and a set of tools for creating web applications. NOTICE: This is still a work in progress and the full architecture, design, and functionality are not available!",
5
5
  "keywords": [
6
6
  "ti-engine",
@@ -112,10 +112,10 @@
112
112
  "#web-server-config": "./bin/web-server.json"
113
113
  },
114
114
  "dependencies": {
115
- "@alpinejs/csp": "^3.15.12",
115
+ "@alpinejs/csp": "^3.16.1",
116
116
  "@ti-engine/core": "*",
117
117
  "@types/express": "^5.0.6",
118
- "@types/express-session": "^1.18.2",
118
+ "@types/express-session": "^1.19.0",
119
119
  "@types/node": "^26.2.0",
120
120
  "ajv": "^8.20.0",
121
121
  "cookie-parser": "^1.4.7",
@@ -124,7 +124,7 @@
124
124
  "helmet": "^8.3.0",
125
125
  "htmx.org": "^2.0.10",
126
126
  "lodash": "^4.18.1",
127
- "openid-client": "^6.8.4"
127
+ "openid-client": "^6.8.5"
128
128
  },
129
129
  "devDependencies": {
130
130
  "typescript": "^7.0.2"