@autometa/http 1.2.1 → 1.4.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,41 @@
1
1
  # @autometa/http
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7e9d2bc: feat: Table Documents
8
+
9
+ Introduces a new way of handling tables which are horizontal (HTable) or vertical (VTable) which maps
10
+ the headers of a table to an object properties, defined using a class.
11
+
12
+ [docs](https://bendat.github.io/autometa/docs/cucumber/test_runner/datatables#table-documents)
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [7e9d2bc]
17
+ - @autometa/dto-builder@0.13.0
18
+
19
+ ## 1.3.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 82168a2: fix: `onRecievedResponse` hook not running when response failed schema validation
24
+
25
+ - Renamed hooks to `onSend` and `onRecieve`
26
+ - Rewrote HTTP fixture logic to be constructable and derivable.
27
+ - `new HTTP().sharedRoute('v1')` constructs a single instance of HTTP with route `v1`
28
+ - `new HTTP().sharedRoute('v1').route('user') derives a new HTTP fixture which inherits 'v1' and adds 'user' locally.
29
+ - Support for list based params with `paramList` and `sharedParamList`
30
+ - Added default schemas for use with simple response types like null, boolean, number etc
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [d563916]
35
+ - @autometa/dto-builder@0.12.0
36
+ - @autometa/injection@0.1.1
37
+ - @autometa/app@0.3.2
38
+
3
39
  ## 1.2.1
4
40
 
5
41
  ### Patch Changes