Skip to content

Commit 6c2c13a

Browse files
destination-kvdb QA checks (#35424)
Co-authored-by: Augustin <[email protected]>
1 parent 2f77609 commit 6c2c13a

File tree

7 files changed

+1164
-75
lines changed

7 files changed

+1164
-75
lines changed

airbyte-integrations/connectors/destination-kvdb/.dockerignore

-5
This file was deleted.

airbyte-integrations/connectors/destination-kvdb/Dockerfile

-38
This file was deleted.

airbyte-integrations/connectors/destination-kvdb/metadata.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ data:
44
enabled: false
55
oss:
66
enabled: false
7+
connectorBuildOptions:
8+
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9
79
connectorSubtype: api
810
connectorType: destination
911
definitionId: f2e549cd-8e2a-48f8-822d-cc13630eb42d
10-
dockerImageTag: 0.1.2
12+
dockerImageTag: 0.1.3
1113
dockerRepository: airbyte/destination-kvdb
1214
githubIssueLabel: destination-kvdb
1315
icon: kvdb.svg

airbyte-integrations/connectors/destination-kvdb/poetry.lock

+1,108
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[build-system]
2+
requires = [ "poetry-core>=1.0.0",]
3+
build-backend = "poetry.core.masonry.api"
4+
5+
[tool.poetry]
6+
version = "0.1.3"
7+
name = "destination-kvdb"
8+
description = "Destination implementation for kvdb."
9+
authors = [ "Airbyte <[email protected]>",]
10+
license = "MIT"
11+
readme = "README.md"
12+
documentation = "https://docs.airbyte.com/integrations/destinations/kvdb"
13+
homepage = "https://airbyte.com"
14+
repository = "https://github.com/airbytehq/airbyte"
15+
[[tool.poetry.packages]]
16+
include = "destination_kvdb"
17+
18+
[tool.poetry.dependencies]
19+
python = "^3.9,<3.12"
20+
airbyte-cdk = "^0.62.1"
21+
sgqlc = "==16.3"
22+
23+
[tool.poetry.scripts]
24+
destination-kvdb = "destination_kvdb.run:run"
25+
26+
[tool.poetry.group.dev.dependencies]
27+
requests-mock = "^1.9.3"
28+
freezegun = "^1.2"
29+
pytest-mock = "^3.6.1"
30+
pytest = "^6.2"
31+
responses = "^0.23.1"

airbyte-integrations/connectors/destination-kvdb/setup.py

-26
This file was deleted.

docs/integrations/destinations/kvdb.md

+22-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,27 @@
22

33
The KVDB destination for Airbyte
44

5+
## Prerequisites
6+
7+
None.
8+
9+
## Setup guide
10+
11+
TODO
12+
13+
## Supported sync modes
14+
15+
TODO
16+
17+
## Supported streams
18+
19+
TODO
20+
521
## Changelog
622

7-
| Version | Date | Pull Request | Subject |
8-
| :------ | :--------- | :------------------------------------------------------- | :-------------------------------- |
9-
| 0.1.2 | 2024-02-19 | [35422](https://github.com/airbytehq/airbyte/pull/35422) | bump connector version to publish |
10-
| 0.1.1 | 2024-02-16 | [35370](https://github.com/airbytehq/airbyte/pull/35370) | bump connector version to publish |
11-
| 0.1.0 | 2021-07-19 | [4786](https://github.com/airbytehq/airbyte/pull/4786) | Python Demo Destination: KVDB |
23+
| Version | Date | Pull Request | Subject |
24+
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- |
25+
| 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 |
26+
| 0.1.2 | 2024-02-19 | [35422](https://github.com/airbytehq/airbyte/pull/35422) | bump connector version to publish |
27+
| 0.1.1 | 2024-02-16 | [35370](https://github.com/airbytehq/airbyte/pull/35370) | bump connector version to publish |
28+
| 0.1.0 | 2021-07-19 | [4786](https://github.com/airbytehq/airbyte/pull/4786) | Python Demo Destination: KVDB |

0 commit comments

Comments
 (0)