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

destination-kvdb QA checks #35424

Merged
merged 4 commits into from
Feb 20, 2024
Merged
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

This file was deleted.

38 changes: 0 additions & 38 deletions airbyte-integrations/connectors/destination-kvdb/Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ data:
enabled: false
oss:
enabled: false
connectorBuildOptions:
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9
connectorSubtype: api
connectorType: destination
definitionId: f2e549cd-8e2a-48f8-822d-cc13630eb42d
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
dockerRepository: airbyte/destination-kvdb
githubIssueLabel: destination-kvdb
icon: kvdb.svg
Expand Down
1,108 changes: 1,108 additions & 0 deletions airbyte-integrations/connectors/destination-kvdb/poetry.lock

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions airbyte-integrations/connectors/destination-kvdb/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "0.1.3"
name = "destination-kvdb"
description = "Destination implementation for kvdb."
authors = [ "Airbyte <[email protected]>",]
license = "MIT"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/destinations/kvdb"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "destination_kvdb"

[tool.poetry.dependencies]
python = "^3.9,<3.12"
airbyte-cdk = "^0.62.1"
sgqlc = "==16.3"

[tool.poetry.scripts]
destination-kvdb = "destination_kvdb.run:run"

[tool.poetry.group.dev.dependencies]
requests-mock = "^1.9.3"
freezegun = "^1.2"
pytest-mock = "^3.6.1"
pytest = "^6.2"
responses = "^0.23.1"
26 changes: 0 additions & 26 deletions airbyte-integrations/connectors/destination-kvdb/setup.py

This file was deleted.

27 changes: 22 additions & 5 deletions docs/integrations/destinations/kvdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,27 @@

The KVDB destination for Airbyte

## Prerequisites

None.

## Setup guide

TODO

## Supported sync modes

TODO

## Supported streams

TODO

## Changelog

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :-------------------------------- |
| 0.1.2 | 2024-02-19 | [35422](https://github.com/airbytehq/airbyte/pull/35422) | bump connector version to publish |
| 0.1.1 | 2024-02-16 | [35370](https://github.com/airbytehq/airbyte/pull/35370) | bump connector version to publish |
| 0.1.0 | 2021-07-19 | [4786](https://github.com/airbytehq/airbyte/pull/4786) | Python Demo Destination: KVDB |
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- |
| 0.1.3 | 2024-02-19 | [xxx](https://github.com/airbytehq/airbyte/pull/xxx) | bump connector version to publish, convert to base docker image and poetry |
| 0.1.2 | 2024-02-19 | [35422](https://github.com/airbytehq/airbyte/pull/35422) | bump connector version to publish |
| 0.1.1 | 2024-02-16 | [35370](https://github.com/airbytehq/airbyte/pull/35370) | bump connector version to publish |
| 0.1.0 | 2021-07-19 | [4786](https://github.com/airbytehq/airbyte/pull/4786) | Python Demo Destination: KVDB |
Loading