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

feat: Add spec_version to connector specification #48

Open
wants to merge 3 commits into
base: main
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
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,12 @@ definitions:
protocol_version:
description: "the Airbyte Protocol version supported by the connector. Protocol versioning uses SemVer. "
type: string
spec_version:
type: integer
description: |-
The version of the spec - if there is a change that requires to migrate the config of an actor, this number should be incremented.
This allows the platform to track whether a persisted config object is up to date or not.
Specifying a version is optional, but if a version of the connector specifies it, all subsequent versions must specify it as well. The number must either be incremented or stay the same.
OAuthConfigSpecification:
type: object
additionalProperties: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,12 @@ definitions:
protocol_version:
description: "the Airbyte Protocol version supported by the connector. Protocol versioning uses SemVer. "
type: string
spec_version:
type: integer
description: |-
The version of the spec - if there is a change that requires to migrate the config of an actor, this number should be incremented.
This allows the platform to track whether a persisted config object is up to date or not.
Specifying a version is optional, but if a version of the connector specifies it, all subsequent versions must specify it as well. The number must either be incremented or stay the same.
OAuthConfigSpecification:
type: object
additionalProperties: true
Expand Down