@t4h.framework/dev 0.0.0-experimental-20260902164013 → 0.0.0-experimental-20260904010801

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 +6 -1
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,11 +1,16 @@
1
1
  # @t4h.framework/dev
2
2
 
3
- ## 0.0.0-experimental-20260902164013
3
+ ## 0.0.0-experimental-20260904010801
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [#145](https://github.com/tech4humans-brasil/framework/pull/145) [`09724c3`](https://github.com/tech4humans-brasil/framework/commit/09724c3f0bb573d55b94495835362e7b66bc570e) Thanks [@gusteycamargo](https://github.com/gusteycamargo)! - Replaces the interactive REPL of `framework dev` with an HTTP dev server: Hono routes workflow (`POST /projects/:projectId/workflows/:workflowId/runs` answers `201 { id }`, `PATCH .../runs/:runId/activities/:activityId` advances a pending async activity), mandatory workflow authorization resolved from the app/workflow `Authorization` manifest, `/_dev` routes for tooling (manifest, runs, waiting activities, env, SSE events) and Vite in middleware mode for a UI. Workflow runs now live in an in-memory SQLite database inside the app process, the ORM dev claim stores its rows in `db.sqlite` instead of rewriting `db.json` on every change, child workflows run in parallel, and `framework dev` gains `--port` (`PORT`) and `--host`. `DevServer` and `isWorkflowWaiting` are gone; use `Server`.
8
8
 
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`5f2f124`](https://github.com/tech4humans-brasil/framework/commit/5f2f124c418166a308a5c336c06f90949e4e5e1b)]:
12
+ - @t4h.framework/oidc@0.0.0-experimental-20260904010801
13
+
9
14
  ## 0.14.2
10
15
 
11
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t4h.framework/dev",
3
- "version": "0.0.0-experimental-20260902164013",
3
+ "version": "0.0.0-experimental-20260904010801",
4
4
  "description": "Dev server for the T4H Framework",
5
5
  "homepage": "https://github.com/tech4humans-brasil/framework/tree/main/packages/dev",
6
6
  "bugs": "https://github.com/tech4humans-brasil/framework/issues",
@@ -48,7 +48,7 @@
48
48
  "@t4h.framework/hmac": "^0.1.0",
49
49
  "@t4h.framework/http": "^0.4.3",
50
50
  "@t4h.framework/jwks": "^0.4.0",
51
- "@t4h.framework/oidc": "^0.4.0",
51
+ "@t4h.framework/oidc": "^0.0.0-experimental-20260904010801",
52
52
  "@t4h.framework/orm": "^0.6.1",
53
53
  "@t4h.framework/runtime-claims": "^0.1.0",
54
54
  "@t4h.framework/sftp": "^0.6.0",
@@ -70,11 +70,11 @@
70
70
  "@types/dot-object": "^2.1.6",
71
71
  "@types/json-schema": "^7.0.15",
72
72
  "@types/mime-types": "^3",
73
- "@types/node": "^26.4.0",
73
+ "@types/node": "^25.3.5",
74
74
  "@types/nodemailer": "^7.0.11",
75
75
  "json-schema-typed": "^8.0.2",
76
76
  "typescript": "^5.9.3",
77
- "vitest": "^4.1.11"
77
+ "vitest": "^4.0.18"
78
78
  },
79
79
  "peerDependencies": {
80
80
  "@t4h.framework/core": "^0.9.1"