reqcord 0.2.0 → 0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e075e88e6b448b287ccc4b845cf82b0e18d4d7b9778a8e82d1c09f798d2b1f8
4
- data.tar.gz: 6a395b1ab6f789b184a72c63b14f9873f2465e891f96ade6c91b19cc102211a5
3
+ metadata.gz: b3ae152eca3f96656a35a94f78644254082c66a96838e948d4f8e38a27a876fa
4
+ data.tar.gz: b761ce17b9b67d2df73ec54416413a721798a2b74e041482f52227964cdc26c4
5
5
  SHA512:
6
- metadata.gz: f5c43bee1cdcbe7d6d6b3de653027a5704995bd9ddd602e879c6905e0a1fdb27ca1936d55ad11be42b1d1969c925ceaf519e5c193f7d86c787b0d8f6f02eba28
7
- data.tar.gz: f80362f26eddd01297d81f62080e0b93ae50742d49c1616ec92b940550a5a7b3e63e33d69b427cd9e8c7a3091c78c3cffaaae58fc15db13ec0cdc8a18ce01299
6
+ metadata.gz: 1b2e655adb41847e1509c7888f2329c323a6dcbcdf1a4273fc92bb80c22a4f2f3450e9f86a0aae1bec65f69c4c78f61dfe8f959db5af08def61ee4516d01825d
7
+ data.tar.gz: 6eb8f73ac77c942a82be407d32579b311ce62d007842381fbf447f1d4e884980845ecddccbc509c595dad5ba07fc14644d24aa3423d49634ef3868f6ba313bd3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,34 @@
1
1
  # Changelog
2
2
 
3
- ## [0.2.0] - Unreleased
3
+ ## [0.3.0] - Unreleased
4
+
5
+ ### Added
6
+
7
+ * Multipart uploads are documented. A `Rack::Test::UploadedFile` in a test's
8
+ params becomes a `file` field (shown by name, `label.png`), `--form
9
+ image=@label.png;type=image/png` in cURL, a `formdata` file part in Postman
10
+ and `type: string, format: binary` under `multipart/form-data` in OpenAPI.
11
+ The bytes never reach the dataset.
12
+ * `bin/rails reqcord:check` (`Reqcord::Check`): regenerates into a scratch
13
+ directory and compares with the committed output, file by file; exits 1
14
+ with a git-status style list when the docs are behind the tests — the CI
15
+ guard for documentation drift.
16
+
17
+ ### Changed
18
+
19
+ * Output is deterministic. Captured exchanges are ordered by test file, line
20
+ and name before the dataset is built, so "the first example" no longer
21
+ depends on the test run order, and `dataset.json` no longer carries a
22
+ `generated_at` timestamp. Regenerating without a code change produces no
23
+ diff.
24
+
25
+ ### Fixed
26
+
27
+ * `routes.prefix` matches whole path segments: `/api` no longer swallows
28
+ `/api-docs` (which made a mounted `Reqcord::Web` show up as a skipped
29
+ route).
30
+
31
+ ## [0.2.0] - 2026-09-16
4
32
 
5
33
  ### Added
6
34