Skip to content

Commit a5f1366

Browse files
Quote and comma-separate Pokemon examples to clarify help text (#12942)
* Quote and comma-separate Pokemon examples to clarify help text Closes #12792 * Bump version * auto-bump connector version Co-authored-by: Octavia Squidington III <[email protected]>
1 parent 838af6f commit a5f1366

File tree

5 files changed

+24
-22
lines changed

5 files changed

+24
-22
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@
699699
- name: PokeAPI
700700
sourceDefinitionId: 6371b14b-bc68-4236-bfbd-468e8df8e968
701701
dockerRepository: airbyte/source-pokeapi
702-
dockerImageTag: 0.1.4
702+
dockerImageTag: 0.1.5
703703
documentationUrl: https://docs.airbyte.io/integrations/sources/pokeapi
704704
icon: pokeapi.svg
705705
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6488,7 +6488,7 @@
64886488
supportsNormalization: false
64896489
supportsDBT: false
64906490
supported_destination_sync_modes: []
6491-
- dockerImage: "airbyte/source-pokeapi:0.1.4"
6491+
- dockerImage: "airbyte/source-pokeapi:0.1.5"
64926492
spec:
64936493
documentationUrl: "https://docs.airbyte.io/integrations/sources/pokeapi"
64946494
connectionSpecification:
@@ -6505,7 +6505,9 @@
65056505
description: "Pokemon requested from the API."
65066506
pattern: "^[a-z0-9_\\-]+$"
65076507
examples:
6508-
- "ditto, luxray, snorlax"
6508+
- "ditto"
6509+
- "luxray"
6510+
- "snorlax"
65096511
supportsNormalization: false
65106512
supportsDBT: false
65116513
supported_destination_sync_modes: []

airbyte-integrations/connectors/source-pokeapi/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ RUN pip install .
1313
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
1414
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1515

16-
LABEL io.airbyte.version=0.1.4
16+
LABEL io.airbyte.version=0.1.5
1717
LABEL io.airbyte.name=airbyte/source-pokeapi

airbyte-integrations/connectors/source-pokeapi/source_pokeapi/spec.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"title": "Pokemon Name",
1313
"description": "Pokemon requested from the API.",
1414
"pattern": "^[a-z0-9_\\-]+$",
15-
"examples": ["ditto, luxray, snorlax"]
15+
"examples": ["ditto", "luxray", "snorlax"]
1616
}
1717
}
1818
}

docs/integrations/sources/pokeapi.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
The PokéAPI is primarly used as a tutorial and educational resource, as it requires zero dependencies. Learn how Airbyte and this connector works with these tutorials:
66

7-
* [Airbyte Quickstart: An Introduction to Deploying and Syncing](../../quickstart/deploy-airbyte.md)
8-
* [Airbyte CDK Speedrun: A Quick Primer on Building Source Connectors](../../connector-development/tutorials/cdk-speedrun.md)
9-
* [How to Build ETL Sources in Under 30 Minutes: A Video Tutorial](https://www.youtube.com/watch?v=kJ3hLoNfz_E&t=13s&ab_channel=Airbyte)
7+
- [Airbyte Quickstart: An Introduction to Deploying and Syncing](../../quickstart/deploy-airbyte.md)
8+
- [Airbyte CDK Speedrun: A Quick Primer on Building Source Connectors](../../connector-development/tutorials/cdk-speedrun.md)
9+
- [How to Build ETL Sources in Under 30 Minutes: A Video Tutorial](https://www.youtube.com/watch?v=kJ3hLoNfz_E&t=13s&ab_channel=Airbyte)
1010

1111
## Features
1212

13-
| Feature | Supported? |
14-
| :--- | :--- |
15-
| Full Refresh Sync | Yes |
16-
| Incremental - Append Sync | No |
17-
| Replicate Incremental Deletes | No |
18-
| SSL connection | No |
19-
| Namespaces | No |
13+
| Feature | Supported? |
14+
| :---------------------------- | :--------- |
15+
| Full Refresh Sync | Yes |
16+
| Incremental - Append Sync | No |
17+
| Replicate Incremental Deletes | No |
18+
| SSL connection | No |
19+
| Namespaces | No |
2020

2121
This source uses the fully open [PokéAPI](https://pokeapi.co/docs/v2#info) to serve and retrieve information about Pokémon. This connector should be primarily used for educational purposes or for getting a trial source up and running without needing any dependencies. As this API is fully open and is not rate-limited, no authentication or rate-limiting is performed, so you can use this connector right out of the box without any further configuration.
2222

@@ -34,10 +34,10 @@ The PokéAPI uses the same [JSONSchema](https://json-schema.org/understanding-js
3434

3535
## Changelog
3636

37-
| Version | Date | Pull Request | Subject |
38-
| :--- | :--- | :--- | :--- |
39-
| 0.1.4 | 2021-12-07 | [8582](https://github.com/airbytehq/airbyte/pull/8582) | Update connector fields title/description |
40-
| 0.1.3 | 2021-12-03 | [8432](https://github.com/airbytehq/airbyte/pull/8432) | Migrate from base_python to CDK, add SAT tests. |
41-
| 0.1.1 | 2020-06-29 | [1046](https://github.com/airbytehq/airbyte/pull/4410) | Fix runtime UI error from GitHub store path. |
42-
| 0.1.0 | 2020-05-04 | [1046](https://github.com/airbytehq/airbyte/pull/3149) | Add source for PokeAPI. |
43-
37+
| Version | Date | Pull Request | Subject |
38+
| :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------- |
39+
| 0.1.5 | 2022-05-18 | [12942](https://github.com/airbytehq/airbyte/pull/12942) | Fix example inputs |
40+
| 0.1.4 | 2021-12-07 | [8582](https://github.com/airbytehq/airbyte/pull/8582) | Update connector fields title/description |
41+
| 0.1.3 | 2021-12-03 | [8432](https://github.com/airbytehq/airbyte/pull/8432) | Migrate from base_python to CDK, add SAT tests. |
42+
| 0.1.1 | 2020-06-29 | [1046](https://github.com/airbytehq/airbyte/pull/4410) | Fix runtime UI error from GitHub store path. |
43+
| 0.1.0 | 2020-05-04 | [1046](https://github.com/airbytehq/airbyte/pull/3149) | Add source for PokeAPI. |

0 commit comments

Comments
 (0)