Changelog for the varo adaptor
@openfn/language-varo
2.0.0 - 11 August 2025
Major Changes
-
a5cea4e: removed
http
export from@openfn/language-common
Migration Guide
The
http
export has been removed from@openfn/language-common
. If you were using it, you should remove it from your code and create a new step that useshttp
adaptor. See example below.Before
Step 1: Fetch and post data using postgresql adaptor
sql('select * from foo');
http.post('/example', { body: $.data }),Now
Step 1: Fetch data using postgresql adaptor
sql('select * from foo');
Step 2: Post data using http adaptor
post('/example', { body: $.data });
1.1.4 - 14 July 2025
Patch Changes
- Updated dependencies [9b5a4f8]
- @openfn/language-common@3.0.2
1.1.3 - 10 July 2025
Patch Changes
- Updated dependencies [cf9c09f]
- @openfn/language-common@3.0.1
1.1.2 - 10 July 2025
Patch Changes
- Updated dependencies [ea85695]
- Updated dependencies [3fce58f]
- Updated dependencies [19f2d7e]
- Updated dependencies [f26bd2b]
- Updated dependencies [19f2d7e]
- @openfn/language-common@3.0.0
1.1.1 - 20 June 2025
Patch Changes
- Updated dependencies [28c2e8b]
- @openfn/language-common@2.5.0
1.1.0 - 12 May 2025
Minor Changes
- c9453ed: Added streaming RTMD data support.
1.0.3 - 22 April 2025
Patch Changes
- Updated dependencies [99e4b48]
- Updated dependencies [13bf08f]
- @openfn/language-common@2.4.0
1.0.2 - 16 April 2025
Patch Changes
- Updated dependencies [b089c56]
- @openfn/language-common@2.3.3
1.0.1 - 11 April 2025
Patch Changes
- Updated dependencies [d7105c0]
- @openfn/language-common@2.3.2
1.0.0 - 19 March 2025
Initial release. Handles the parsing of Varo Ems-like format and the parsing of FridgeTag format.