Skip to content

chore: release 2.0.0#30

Merged
TheRealAgentK merged 3 commits intomasterfrom
release/2.0.0
Apr 10, 2026
Merged

chore: release 2.0.0#30
TheRealAgentK merged 3 commits intomasterfrom
release/2.0.0

Conversation

@TheRealAgentK
Copy link
Copy Markdown
Collaborator

Release 2.0.0

⚠️ Breaking Change

ExecutionContext.fetch() now returns a FetchResponse object instead of the raw parsed body. All integrations using context.fetch() need to access the response body via .data.

Before (1.x):

data = await context.fetch(url)
items = data["results"]

After (2.0):

response = await context.fetch(url)
items = response.data["results"]

See RELEASENOTES.md for full migration guide.

Changes in this PR

  • Bump version to 2.0.0 in pyproject.toml and __init__.py
  • Add 2.0.0 release notes with breaking change documentation and migration guide
  • Regenerate API docs
  • Remove Hamish Taylor from authors list

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 10, 2026

Coverage — 5de64ea (test: cover abstract method pass lines for 100% coverage (#31)) by @TheRealAgentK

Total coverage: 100%

File Stmts Miss Cover Missing
src/autohive_integrations_sdk/__init__.py 2 0 100%
src/autohive_integrations_sdk/integration.py 358 0 100%

@TheRealAgentK TheRealAgentK merged commit 81cd856 into master Apr 10, 2026
1 check passed
@TheRealAgentK TheRealAgentK deleted the release/2.0.0 branch April 10, 2026 04:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants