Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference)
# for more information about how to configure these tests
connector_image: airbyte/source-granola:dev
acceptance_tests:
spec:
tests:
- spec_path: "manifest.yaml"
connection:
tests:
- config_path: "secrets/config.json"
status: "succeed"
- config_path: "integration_tests/invalid_config.json"
status: "failed"
discovery:
tests:
- config_path: "secrets/config.json"
basic_read:
tests:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
empty_streams: []
incremental:
tests:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
future_state:
future_state_path: "integration_tests/abnormal_state.json"
full_refresh:
tests:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[
{
"type": "STREAM",
"stream": {
"stream_state": {
"created_at": "2122-01-01T00:00:00Z"
},
"stream_descriptor": {
"name": "notes"
}
}
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,22 @@
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["updated_at"],
"default_cursor_field": ["created_at"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"cursor_field": ["updated_at"],
"cursor_field": ["created_at"],
"destination_sync_mode": "append"
},
{
"stream": {
"name": "detailed_notes",
"json_schema": {},
"supported_sync_modes": ["full_refresh"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "full_refresh",
"destination_sync_mode": "overwrite"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"api_key": "invalid-api-key",
"start_date": "2025-01-01"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 9023923c-002f-4131-9554-3ebdf56540a4
dockerImageTag: 0.2.12
dockerImageTag: 0.2.13
dockerRepository: airbyte/source-granola
documentationUrl: https://docs.airbyte.com/integrations/sources/granola
githubIssueLabel: source-granola
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/granola.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ For programmatic configuration, use these parameter names:

| Version | Date | Pull Request | Subject |
| :------ | :--- | :----------- | :------ |
| 0.2.13 | 2026-08-12 | [84276](https://github.com/airbytehq/airbyte/pull/84276) | Add acceptance test coverage and correct the configured catalog |
| 0.2.12 | 2026-08-12 | [84278](https://github.com/airbytehq/airbyte/pull/84278) | Retry rate-limited and server-error responses with backoff honoring Retry-After |
| 0.2.11 | 2026-08-11 | [83964](https://github.com/airbytehq/airbyte/pull/83964) | Update dependencies |
| 0.2.10 | 2026-08-04 | [83481](https://github.com/airbytehq/airbyte/pull/83481) | Update dependencies |
Expand Down
Loading