Skip to content

Commit 988e0e3

Browse files
committed
chore: version packages
1 parent bdd0556 commit 988e0e3

File tree

16 files changed

+81
-47
lines changed

16 files changed

+81
-47
lines changed

.changeset/blue-glasses-study.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/mighty-apes-jog.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/pink-pants-wonder.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/yellow-bikes-camp.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/app/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @t-req/app
22

3+
## 0.3.11
4+
5+
### Patch Changes
6+
7+
- a7bb6dc: Add `treq import postman <file>` CLI command:
8+
- Import Postman collections into .http files
9+
- Options: output directory, file strategy, conflict policy, variable merge
10+
- Dry-run mode for previewing changes
11+
- Colored diagnostic output
12+
- bdd0556: Expand `RequestDefinition` with optional `description`, `bodyFile`, `formData`, and `directives` fields, making
13+
it structurally compatible with `SerializableRequest`. Implement `writeHttpFile` in CLI command context using
14+
`serializeDocument()`.
15+
- b0150a2: Add source-agnostic import preview/apply server endpoints
16+
17+
- `POST /import/{source}/preview` — convert and preview filesystem changes without writing
18+
- `POST /import/{source}/apply` — convert and apply with conflict resolution, variable merge, staging
19+
- Parameterized `{source}` path validated against importer registry (initially: `postman`)
20+
- `convertOptions` validated per-importer via `optionsSchema`
21+
- Script-scoped tokens blocked (403)
22+
- Error diagnostics gate apply unless `force: true` (422)
23+
- Partial commit failures return 207 with `partialResult`
24+
- SDK regenerated: `TreqClient.importPreview()` and `TreqClient.importApply()`
25+
26+
- Updated dependencies [bdd0556]
27+
- Updated dependencies [b0150a2]
28+
- Updated dependencies [2cd3609]
29+
- @t-req/core@0.2.4
30+
- @t-req/sdk@0.1.2
31+
- @t-req/plugin-base@0.1.1
32+
333
## 0.3.8
434

535
### Patch Changes

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t-req/app",
3-
"version": "0.3.10",
3+
"version": "0.3.11",
44
"description": "CLI for t-req - scaffold, execute, and serve HTTP request projects",
55
"license": "MIT",
66
"repository": {
@@ -69,7 +69,7 @@
6969
"@hono/zod-validator": "^0.7.6",
7070
"@opentui/core": "^0.1.74",
7171
"@opentui/solid": "^0.1.74",
72-
"@t-req/core": "^0.2.3",
72+
"@t-req/core": "^0.2.4",
7373
"@t-req/plugin-base": "workspace:*",
7474
"@t-req/sdk": "workspace:*",
7575
"fuzzysort": "^3.1.0",

packages/core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @t-req/core
22

3+
## 0.2.4
4+
5+
### Patch Changes
6+
7+
- bdd0556: Expand `RequestDefinition` with optional `description`, `bodyFile`, `formData`, and `directives` fields, making
8+
it structurally compatible with `SerializableRequest`. Implement `writeHttpFile` in CLI command context using
9+
`serializeDocument()`.
10+
- 2cd3609: Add deterministic `.http` serialization APIs:
11+
`serializeRequest` and `serializeDocument`, plus `SerializableRequest`/`SerializableDocument` exports.
12+
Includes parser-compatible serializer test coverage.
13+
314
## 0.2.3
415

516
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t-req/core",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "HTTP request parsing, execution, and testing. Define requests in .http files, test them in isolation.",
55
"license": "MIT",
66
"repository": {

packages/plugins/assert/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"prepublishOnly": "bun run build && bun run test"
5454
},
5555
"peerDependencies": {
56-
"@t-req/core": "^0.2.3"
56+
"@t-req/core": "^0.2.4"
5757
},
5858
"dependencies": {
5959
"fast-deep-equal": "^3.1.3",

packages/plugins/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"prepublishOnly": "bun run build && bun run test"
5555
},
5656
"peerDependencies": {
57-
"@t-req/core": "^0.2.3"
57+
"@t-req/core": "^0.2.4"
5858
},
5959
"devDependencies": {
6060
"@t-req/core": "workspace:*",

0 commit comments

Comments
 (0)