Skip to content

Commit 59415f8

Browse files
committed
Merge branch 'master' into alex/mysql-jdbc-params
2 parents c90021b + 7c93ef1 commit 59415f8

File tree

228 files changed

+1249
-2132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+1249
-2132
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.35.28-alpha
2+
current_version = 0.35.30-alpha
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
### SHARED ###
13-
VERSION=0.35.28-alpha
13+
VERSION=0.35.30-alpha
1414

1515
# When using the airbyte-db via default docker image
1616
CONFIG_ROOT=/data

.github/pull_request_template.md

+28-34
Original file line numberDiff line numberDiff line change
@@ -13,79 +13,73 @@
1313
Are there any breaking changes? What is the end result perceived by the user? If yes, please merge this PR with the 🚨🚨 emoji so changelog authors can further highlight this if needed.
1414

1515
## Pre-merge Checklist
16-
Expand the relevant checklist and delete the others.
16+
Expand the relevant checklist and delete the others.
1717

18-
<details><summary> <strong> New Connector </strong></summary>
19-
<p>
18+
<details><summary><strong>New Connector</strong></summary>
19+
20+
### Community member or Airbyter
2021

21-
#### Community member or Airbyter
22-
2322
- [ ] **Community member?** Grant edit access to maintainers ([instructions](https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork#enabling-repository-maintainer-permissions-on-existing-pull-requests))
24-
- [ ] Secrets in the connector's spec are annotated with `airbyte_secret`
23+
- [ ] Secrets in the connector's spec are annotated with `airbyte_secret`
2524
- [ ] Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run `./gradlew :airbyte-integrations:connectors:<name>:integrationTest`.
2625
- [ ] Code reviews completed
27-
- [ ] Documentation updated
26+
- [ ] Documentation updated
2827
- [ ] Connector's `README.md`
2928
- [ ] Connector's `bootstrap.md`. See [description and examples](https://docs.google.com/document/d/1ypdgmwmEHWv-TrO4_YOQ7pAJGVrMp5BOkEVh831N260/edit?usp=sharing)
3029
- [ ] `docs/SUMMARY.md`
3130
- [ ] `docs/integrations/<source or destination>/<name>.md` including changelog. See changelog [example](https://docs.airbyte.io/integrations/sources/stripe#changelog)
3231
- [ ] `docs/integrations/README.md`
3332
- [ ] `airbyte-integrations/builds.md`
3433
- [ ] PR name follows [PR naming conventions](https://docs.airbyte.io/contributing-to-airbyte/updating-documentation#issues-and-pull-requests)
35-
36-
#### Airbyter
3734

38-
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
39-
35+
### Airbyter
36+
37+
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
38+
4039
- [ ] Create a non-forked branch based on this PR and test the below items on it
4140
- [ ] Build is successful
42-
- [ ] Credentials added to Github CI. [Instructions](https://docs.airbyte.io/connector-development#using-credentials-in-ci).
43-
- [ ] [`/test connector=connectors/<name>` command](https://docs.airbyte.io/connector-development#updating-an-existing-connector) is passing.
41+
- [ ] Credentials added to Github CI. [Instructions](https://docs.airbyte.io/connector-development#using-credentials-in-ci).
42+
- [ ] [`/test connector=connectors/<name>` command](https://docs.airbyte.io/connector-development#updating-an-existing-connector) is passing
4443
- [ ] New Connector version released on Dockerhub by running the `/publish` command described [here](https://docs.airbyte.io/connector-development#updating-an-existing-connector)
4544
- [ ] After the connector is published, connector added to connector index as described [here](https://docs.airbyte.io/connector-development#publishing-a-connector)
4645
- [ ] Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described [here](https://docs.airbyte.io/connector-development#publishing-a-connector)
47-
48-
</p>
46+
4947
</details>
5048

49+
<details><summary><strong>Updating a connector</strong></summary>
50+
51+
### Community member or Airbyter
5152

52-
<details><summary> <strong> Updating a connector </strong></summary>
53-
<p>
54-
55-
#### Community member or Airbyter
56-
5753
- [ ] Grant edit access to maintainers ([instructions](https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork#enabling-repository-maintainer-permissions-on-existing-pull-requests))
58-
- [ ] Secrets in the connector's spec are annotated with `airbyte_secret`
54+
- [ ] Secrets in the connector's spec are annotated with `airbyte_secret`
5955
- [ ] Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run `./gradlew :airbyte-integrations:connectors:<name>:integrationTest`.
6056
- [ ] Code reviews completed
61-
- [ ] Documentation updated
57+
- [ ] Documentation updated
6258
- [ ] Connector's `README.md`
6359
- [ ] Connector's `bootstrap.md`. See [description and examples](https://docs.google.com/document/d/1ypdgmwmEHWv-TrO4_YOQ7pAJGVrMp5BOkEVh831N260/edit?usp=sharing)
6460
- [ ] Changelog updated in `docs/integrations/<source or destination>/<name>.md` including changelog. See changelog [example](https://docs.airbyte.io/integrations/sources/stripe#changelog)
6561
- [ ] PR name follows [PR naming conventions](https://docs.airbyte.io/contributing-to-airbyte/updating-documentation#issues-and-pull-requests)
66-
67-
#### Airbyter
6862

69-
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
70-
63+
### Airbyter
64+
65+
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
66+
7167
- [ ] Create a non-forked branch based on this PR and test the below items on it
7268
- [ ] Build is successful
73-
- [ ] Credentials added to Github CI. [Instructions](https://docs.airbyte.io/connector-development#using-credentials-in-ci).
74-
- [ ] [`/test connector=connectors/<name>` command](https://docs.airbyte.io/connector-development#updating-an-existing-connector) is passing.
69+
- [ ] Credentials added to Github CI. [Instructions](https://docs.airbyte.io/connector-development#using-credentials-in-ci).
70+
- [ ] [`/test connector=connectors/<name>` command](https://docs.airbyte.io/connector-development#updating-an-existing-connector) is passing
7571
- [ ] New Connector version released on Dockerhub by running the `/publish` command described [here](https://docs.airbyte.io/connector-development#updating-an-existing-connector)
7672
- [ ] After the new connector version is published, connector version bumped in the seed directory as described [here](https://docs.airbyte.io/connector-development#publishing-a-connector)
7773
- [ ] Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described [here](https://docs.airbyte.io/connector-development#publishing-a-connector)
7874

79-
</p>
8075
</details>
8176

82-
<details><summary> <strong> Connector Generator </strong> </summary>
83-
<p>
84-
77+
<details><summary><strong>Connector Generator</strong></summary>
78+
8579
- [ ] Issue acceptance criteria met
8680
- [ ] PR name follows [PR naming conventions](https://docs.airbyte.io/contributing-to-airbyte/updating-documentation#issues-and-pull-requests)
8781
- [ ] If adding a new generator, add it to the [list of scaffold modules being tested](https://github.com/airbytehq/airbyte/blob/master/airbyte-integrations/connector-templates/generator/build.gradle#L41)
8882
- [ ] The generator test modules (all connectors with `-scaffold` in their name) have been updated with the latest scaffold by running `./gradlew :airbyte-integrations:connector-templates:generator:testScaffoldTemplates` then checking in your changes
89-
- [ ] Documentation which references the generator is updated as needed.
90-
</p>
83+
- [ ] Documentation which references the generator is updated as needed
84+
9185
</details>

airbyte-bootloader/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ ENV APPLICATION airbyte-bootloader
55

66
WORKDIR /app
77

8-
ADD bin/${APPLICATION}-0.35.28-alpha.tar /app
8+
ADD bin/${APPLICATION}-0.35.30-alpha.tar /app
99

10-
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.35.28-alpha/bin/${APPLICATION}"]
10+
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.35.30-alpha/bin/${APPLICATION}"]

airbyte-config/init/src/main/resources/config/README.md

-4
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/079d5540-f236-4294-ba7c-ade8fd918496.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/22f6c74f-5699-40ff-833c-4a879ea40133.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/2340cbba-358e-11ec-8d3d-0242ac130203.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/25c5221d-dce2-4163-ade9-739ef790f503.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/27dc7500-6d1b-40b1-8b07-e2f2aea3c9f4.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/294a4790-429b-40ae-9516-49826b9702e1.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/2c9d93a7-9a17-4789-9de9-f46f0097eb70.json

-7
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/356668e2-7e34-47f3-a3b0-67a8a481b692.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/3986776d-2319-4de9-8af8-db14c0996e72.json

-8
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,8 +0,0 @@
1-
{
2-
"destinationDefinitionId": "424892c4-daac-4491-b35d-c6688ba547ba",
3-
"name": "Snowflake",
4-
"dockerRepository": "airbyte/destination-snowflake",
5-
"dockerImageTag": "0.4.6",
6-
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/snowflake",
7-
"icon": "snowflake.svg"
8-
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +0,0 @@
1-
{
2-
"destinationDefinitionId": "4816b78f-1489-44c1-9060-4b19d5fa9362",
3-
"name": "S3",
4-
"dockerRepository": "airbyte/destination-s3",
5-
"dockerImageTag": "0.2.5",
6-
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/s3",
7-
"icon": "s3.svg"
8-
}

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/68f351a7-2745-4bef-ad7f-996b8e51bb8c.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/6d1d66d4-26ab-4602-8d32-f85894b04955.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/707456df-6f4f-4ced-b5c6-03f73bcad1c5.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/81740ce8-d764-4ea7-94df-16bb41de36ae.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/8aaf41d0-f6d2-46de-9e79-c9540f828142.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/8b746512-8c2e-6ac1-4adc-b59faafd473c.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/8be1cf83-fde1-477f-a4ad-318d23c9f3c6.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/8ccd8909-4e99-4141-b48d-4984b70b2d89.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/9255b7de-f778-4087-8973-e17d7898c43d.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/9f760101-60ae-462f-9ee6-b7a9dafd454d.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/a625d593-bba5-4a1c-a53d-2d246268a816.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/af7c921e-5892-4ff2-b6c1-4a5ab258fb7e.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/b4c5d105-31fd-4817-96b6-cb923bfc04cb.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/ca81ee7c-3163-4246-af40-094cc31e5e42.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/ca8f6566-e555-4b40-943a-545bf123117a.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/ce0d828e-1dc4-496c-b122-2da42e637e48.json

-7
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/d4353156-9217-4cad-8dd7-c108fd4f74cf.json

-8
This file was deleted.

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/d4d3fef9-e319-45c2-881a-bd02ce44cc9f.json

-8
This file was deleted.

0 commit comments

Comments
 (0)