Skip to content

Releases: Autohive-AI/integrations-sdk

2.0.0

10 Apr 04:57
81cd856

Choose a tag to compare

⚠️ Breaking Change

ExecutionContext.fetch() now returns a FetchResponse object instead of the raw parsed body.

Before (1.x):

data = await context.fetch("https://api.example.com/items")
items = data["results"]

After (2.0):

response = await context.fetch("https://api.example.com/items")
items = response.data["results"]

FetchResponse attributes:

  • status — HTTP status code (e.g. 200, 201)
  • headers — response headers as a plain dict
  • data — parsed JSON (dict/list) for application/json responses, raw text otherwise, None for empty 200/201/204 responses

See the full migration guide in RELEASENOTES.md.

What's Changed

Full Changelog: 1.1.1...2.0.0

1.1.1

09 Apr 01:51
bea46ac

Choose a tag to compare

What's Changed

Full Changelog: 1.1.0...1.1.1

1.1.0

31 Mar 00:27
eeb257e

Choose a tag to compare

What's Changed

Full Changelog: 1.0.2...1.1.0

1.0.2

30 Nov 22:20
e799898

Choose a tag to compare

What's Changed

  • release: 1.0.2 – remove raygun4py dependency by @ProRedCat in #5

Full Changelog: 1.0.1...1.0.2

1.0.1

23 Nov 22:42
0894002

Choose a tag to compare

What's Changed

Full Changelog: 1.0.0...1.0.1

1.0.0

23 Nov 22:41

Choose a tag to compare

What's Changed

  • Add connected account support: ConnectedAccountInfo, handler, decorator, docs by @ProRedCat in #2
  • feat: add ActionResult and IntegrationResult classes with billing support by @NinosMan in #3

New Contributors

Full Changelog: 0.1.4...1.0.0

0.1.4

23 Nov 22:38

Choose a tag to compare

What's Changed

  • feat: Changing Raygun4Python requirement to 6.0.1+

Full Changelog: 0.1.3...0.1.4

0.1.3

22 Jun 22:11

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.2...0.1.3

0.1.2

22 Jun 22:01

Choose a tag to compare

What's Changed

  • internal and documentation changes

Full Changelog: 0.1.0...0.1.2

0.1.0

07 Apr 07:43

Choose a tag to compare

  • Additional module structure cleanup,
  • Documentation improvements
  • Sample integration

Full Changelog: 0.0.6...0.1.0