Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove credentials object from config, enable refresh token rewrite #51615

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
11 changes: 9 additions & 2 deletions airbyte-integrations/connectors/source-quickbooks/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data:
baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916
connectorType: source
definitionId: cf9c4355-b171-4477-8f2d-6c5cc5fc8b7e
dockerImageTag: 3.0.26
dockerImageTag: 4.0.0
dockerRepository: airbyte/source-quickbooks
githubIssueLabel: source-quickbooks
icon: quickbooks.svg
Expand All @@ -36,7 +36,14 @@ data:
to fix normalization. You may need to refresh the connection schema for
those streams (skipping the reset), and running a sync. Alternatively, you
can just run a reset."
upgradeDeadline: 2023-10-04
upgradeDeadline: "2023-10-04"
4.0.0:
message:
"The config no longer has a nested credentials field, while the config fields remain the same,
they are now at the root level instead of being nested inside a credentials object
You will need to repopulate the config fields to make the connector work again.
This is done to fix the refresh token issue where it wasn't getting updated after 24 hours."
upgradeDeadline: "2025-02-15"
documentationUrl: https://docs.airbyte.com/integrations/sources/quickbooks
tags:
- cdk:low-code
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "3.0.26"
version = "4.0.0"
name = "source-quickbooks"
description = "Source implementation for quickbooks."
authors = [ "Airbyte <[email protected]>",]
Expand Down
Loading
Loading