Skip to main content

Changelog for the dhis2 adaptor

@openfn/language-dhis2

6.3.3 - 16 April 2025

Patch Changes

6.3.2 - 11 April 2025

Patch Changes

6.3.1 - 14 March 2025

Patch Changes

6.3.0 - 30 January 2025

Minor Changes

  • Added a 'findAttributeValueById' function; GHS points out that this is more durable than the display names used by 'findAttributeValue'

6.2.0 - 28 January 2025

Minor Changes

  • 0156632: Add asBase64 option in dhis2 get() function

6.1.0 - 16 January 2025

Minor Changes

  • c19d561: Added support for personal access tokens in dhis2

Patch Changes

  • Updated dependencies [b3d7f59]
  • Updated dependencies [2d709ff]
  • Updated dependencies [41e8cc3]

6.0.3 - 16 January 2025

Patch Changes

6.0.2 - 09 January 2025

Patch Changes

6.0.1 - 04 December 2024

Patch Changes

  • ab94b7c: Fix links in docs examples

6.0.0 - 28 November 2024

Major Changes

  • b44a3b1: Migrates the adaptor to the new Tracker API (v36+) for trackedEntities, enrollments, events and relationships. Note that trackedEntities is no longer used.

    This release is designed for compatibility with DHIS2 v42, which drops support for a number of endpoints.

    The create, update, upsert and destroy functions will automatically map affected resources to the new tracker API endpoint.

    If you have an existing workflow which uses these functions with trackedEntities, enrollments, events or relationships, the data and options you pass may be incompatible with the new tracker API. You should review your code carefully against the DHIS2 Tracker Migration Guide to see what's changed.

    For example, if you used to do:

    create('trackedEntityInstances', {
    /*...*/
    });

    You should now do:

    create('trackedEntities', {
    /*...*/
    });

    The payloads have also changed shape, so for example if you used to:

    create('events', {
    trackedEntityInstance: 'eBAyeGv0exc',
    eventDate: '2024-01-01',
    /* ... */
    });

    You should now do:

    create('events', {
    trackedEntity: 'eBAyeGv0exc',
    occurredAt: '2024-01-01',
    /* ... */
    });

    The HTTP APIs get(), patch(), and post() do not automatically map to the new tracker: they continue to call the URL you provide with the data you send. You can use this to continue to call the old tracker API directly.

Minor Changes

  • d30f39f: Added new post() operation

5.0.8 - 26 November 2024

Patch Changes

  • 94be282: Fix an issue where the path argument of update does not accept a function value

5.0.7 - 08 November 2024

Patch Changes

  • 6cb5377: Removed support for DHIS2 v42

5.0.6 - 28 October 2024

Patch Changes

5.0.5 - 18 October 2024

Patch Changes

5.0.4 - 15 October 2024

Patch Changes

5.0.3 - 09 October 2024

Patch Changes

  • 3fd13c2: Update axios to 1.7.7

5.0.2 - 24 September 2024

Patch Changes

5.0.1 - 16 August 2024

Patch Changes

5.0.0 - 01 August 2024

Major Changes

  • Export new common http helpers (http namespace)

4.2.1

Patch Changes

4.2.0 - 19 June 2024

Minor Changes

  • 5fb82f07: Export group operation from common

Patch Changes

4.1.0 - 13 June 2024

Minor Changes

  • 73433c20: Add fnIf operation

Patch Changes

4.0.5 - 14 May 2024

Patch Changes

  • Fix attribute metadata

4.0.4 - 08 May 2024

Patch Changes

4.0.3 - 24 October 2023

Patch Changes

  • 222184d: remove Class Log and replaced

    • Log.success with console.log
    • Log.warn with console.warn
    • Log.error with console.error

4.0.2 - 21 July 2023

Patch Changes

  • 1bd612e: improve error logs response

4.0.1 - 19 June 2023

Patch Changes

4.0.0

Major Changes

  • 2c1d603: Remove parameter reassignment to ensure proper functioning inside an each block; add eslint

    The packages receiving a major bump here exposed functions that didn't work as expected inside each blocks. Users were previously wrapping these functions inside their own custom fn blocks, and this change will ensure that they can be used inside a standard each.

    See https://github.com/OpenFn/adaptors/issues/275 for more details.

Patch Changes

3.2.12 - 31 May 2023

Patch Changes

  • 57742d1: improve logs output

3.2.11 - 31 March 2023

Patch Changes

  • 705caab: Remove tools as devdependencies

3.2.10 - 31 March 2023

Patch Changes

  • 929bca6: Use metadata helper function from common
  • Updated dependencies [929bca6]

3.2.9 - 30 March 2023

Patch Changes

3.2.8 - 24 March 2023

Patch Changes

  • Fix metadata function export

3.2.7 - 10 March 2023

Patch Changes

  • c09b821: Add @magic annotations

3.2.6 - 16 February 2023

Patch Changes

  • df6098d: replace sample state with configuration

3.2.5 - 15 February 2023

Patch Changes

  • f2aed32: add examples

3.2.4 - 13 January 2023

Patch Changes

  • 6d8de03: change @constructor to @function and remove /*_ @module Adaptor _/

3.2.3 - 11 November 2022

Patch Changes

3.2.2 - 04 November 2022

Patch Changes

  • 9a2755e: Update dependency on language-common
  • 8566b26: Fix typings
  • b3d45ff: Fix CJS export of npm package.
  • ecf5d30: remove sinon since it was not being used
  • Updated dependencies [8566b26]
  • Updated dependencies [b3d45ff]
  • Updated dependencies [b5eb665]
  • Updated dependencies [ecf5d30]

3.2.1 - 21 October 2022

Patch Changes

  • e04aa28: Rename credential-schema to configuration-schema, update descriptions

3.2.0 - 19 October 2022

Minor Changes

  • f670bf8: Added credential schema to enable new ui

3.1.0 - 18 October 2022

Minor Changes

  • 8d6e8ce: Migrate dhis2 into repo

Patch Changes

  • Updated dependencies [4671e89]
  • Updated dependencies [8d6e8ce]