Changelog for the kobotoolbox adaptor
@openfn/language-kobotoolbox
4.2.8 - 28 November 2025
Patch Changes
- Updated dependencies [cfc66df]
- @openfn/language-common@3.2.1
4.2.7 - 12 November 2025
Patch Changes
- Updated dependencies [4d7a833]
- @openfn/language-common@3.2.0
4.2.6 - 04 November 2025
Patch Changes
- Updated dependencies
- @openfn/language-common@3.1.2
4.2.5
Patch Changes
- Updated dependencies [408a3a2]
- @openfn/language-common@3.1.1
4.2.4 - 18 September 2025
Patch Changes
- Updated dependencies [e2bc436]
- @openfn/language-common@3.1.0
4.2.3 - 01 September 2025
Patch Changes
- df258c5: Update
http.requestoption docs to usedatainstead ofbodyin requests - Updated dependencies [1d60531]
- @openfn/language-common@3.0.3
4.2.2 - 14 July 2025
Patch Changes
- Updated dependencies [9b5a4f8]
- @openfn/language-common@3.0.2
4.2.1 - 10 July 2025
Patch Changes
- Updated dependencies [cf9c09f]
- @openfn/language-common@3.0.1
4.2.0 - 10 July 2025
Minor Changes
- 19f2d7e: Exported
as()function from common.
Patch Changes
- Updated dependencies [ea85695]
- Updated dependencies [3fce58f]
- Updated dependencies [19f2d7e]
- Updated dependencies [f26bd2b]
- Updated dependencies [19f2d7e]
- @openfn/language-common@3.0.0
4.1.1 - 20 June 2025
Patch Changes
- Updated dependencies [28c2e8b]
- @openfn/language-common@2.5.0
4.1.0 - 06 June 2025
Minor Changes
- 2123876: Add support for
sortandstartoption ingetSubmissionsfunction
4.0.0 - 30 May 2025
Major Changes
-
fe5b899: Add automatic pagination to
getSubmissions().getSubmissions()will now download all submissions, up to the requested limit, over multiple requests. Note that by default, a maximum of 30,000 items will be downloaded (pass a higher number ofInfinityto download more).Changes
-
Updated
getSubmissionpagination behavior:- Removed
paginateoption - Added new pagination options:
limit: Controls number of results returnedpageSize: Number of items per page
- Removed
-
Remove export of
httpmethods from@openfn/language-common -
Add support for
maxRedirectionsoption inHTTPRequestOptions
Migration Guide
-
Pagination Changes:
- Replace
paginate: true/falsewithlimitandpageSizeoptions - Default limit is
30000unless otherwise specified
// Fetch submissions with default limit (30000)
getSubmission('form-id');
// Fetch all submissions (no limit)
getSubmission('form-id', { limit: Infinity });
// Fetch submissions with max results
getSubmission('form-id', { limit: 500 }); // Returns up to 500 submissions - Replace
-
HTTP Changes:
- Support for
maxRedirectionsoption inHTTPRequestOptions// Auto follow redirects
http.get('assets/aXecHjmbATuF6iGFmvBLBX/data', { maxRedirections: 5 });
-