diff --git a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/5e6175e5-68e1-4c17-bff9-56103bbb0d80.json b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/5e6175e5-68e1-4c17-bff9-56103bbb0d80.json index 1b28ff0ec88..1d9c412792c 100644 --- a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/5e6175e5-68e1-4c17-bff9-56103bbb0d80.json +++ b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/5e6175e5-68e1-4c17-bff9-56103bbb0d80.json @@ -2,6 +2,6 @@ "sourceDefinitionId": "5e6175e5-68e1-4c17-bff9-56103bbb0d80", "name": "Gitlab", "dockerRepository": "airbyte/source-gitlab", - "dockerImageTag": "0.1.1", + "dockerImageTag": "0.1.2", "documentationUrl": "https://docs.airbyte.io/integrations/sources/gitlab" } diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 2d68d5511a6..c51352038bc 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -296,7 +296,7 @@ - sourceDefinitionId: 5e6175e5-68e1-4c17-bff9-56103bbb0d80 name: Gitlab dockerRepository: airbyte/source-gitlab - dockerImageTag: 0.1.1 + dockerImageTag: 0.1.2 documentationUrl: https://docs.airbyte.io/integrations/sources/gitlab sourceType: api - sourceDefinitionId: ed9dfefa-1bbc-419d-8c5e-4d78f0ef6734 diff --git a/airbyte-integrations/connectors/source-gitlab/Dockerfile b/airbyte-integrations/connectors/source-gitlab/Dockerfile index c6740470039..90eb75a2fee 100644 --- a/airbyte-integrations/connectors/source-gitlab/Dockerfile +++ b/airbyte-integrations/connectors/source-gitlab/Dockerfile @@ -13,5 +13,5 @@ RUN pip install . ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.1 +LABEL io.airbyte.version=0.1.2 LABEL io.airbyte.name=airbyte/source-gitlab diff --git a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json index 92f6a18db85..d35f1333357 100644 --- a/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json +++ b/airbyte-integrations/connectors/source-gitlab/source_gitlab/spec.json @@ -10,8 +10,7 @@ "api_url": { "type": "string", "examples": ["gitlab.com"], - "description": "Please enter your basic URL from Gitlab instance", - "pattern": "^gitlab[a-zA-Z0-9._-]*\\.com$" + "description": "Please enter your basic URL from Gitlab instance" }, "private_token": { "type": "string", diff --git a/docs/integrations/sources/gitlab.md b/docs/integrations/sources/gitlab.md index ed3d9770e3b..b9066b94eaf 100644 --- a/docs/integrations/sources/gitlab.md +++ b/docs/integrations/sources/gitlab.md @@ -53,10 +53,15 @@ Log into Gitlab and then generate a [personal access token](https://docs.gitlab. Your token should have the `read_api` scope, that Grants read access to the API, including all groups and projects, the container registry, and the package registry. +## Additional information + +GitLab source is working with GitLab API v4. It can also work with self-hosted GitLab API v4. + ## Changelog | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | +| 0.1.2 | 2021-10-18 | [7108](https://github.com/airbytehq/airbyte/pull/7108) | Allow all domains to be used as `api_url` | | 0.1.1 | 2021-10-12 | [6932](https://github.com/airbytehq/airbyte/pull/6932) | Fix pattern field in spec file, remove unused fields from config files, use cache from CDK | | 0.1.0 | 2021-07-06 | [4174](https://github.com/airbytehq/airbyte/pull/4174) | Initial Release |