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

Fix Greenhouse employee_id type #11941

Merged
merged 6 commits into from
Apr 15, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
- name: Greenhouse
sourceDefinitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44
dockerRepository: airbyte/source-greenhouse
dockerImageTag: 0.2.6
dockerImageTag: 0.2.7
documentationUrl: https://docs.airbyte.io/integrations/sources/greenhouse
icon: greenhouse.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3229,7 +3229,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-greenhouse:0.2.6"
- dockerImage: "airbyte/source-greenhouse:0.2.7"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/greenhouse"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.6
LABEL io.airbyte.version=0.2.7
LABEL io.airbyte.name=airbyte/source-greenhouse
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@
"type": "object",
"properties": {
"name": {
"type": "string"
"type": ["null", "string"]
},
"last_name": {
"type": "string"
"type": ["null", "string"]
},
"id": {
"type": "integer"
},
"first_name": {
"type": "string"
"type": ["null", "string"]
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,19 +178,19 @@
"type": "object",
"properties": {
"name": {
"type": "string"
"type": ["null", "string"]
},
"last_name": {
"type": "string"
"type": ["null", "string"]
},
"id": {
"type": "integer"
},
"first_name": {
"type": "string"
"type": ["null", "string"]
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"type": "string"
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand All @@ -70,7 +70,7 @@
"type": "string"
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
},
"linked_candidate_ids": {
"type": ["null", "array"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/greenhouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Please follow the [Greenhouse documentation for generating an API key](https://d

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.2.7 | 2022-04-15 | [11941](https://github.com/airbytehq/airbyte/pull/11941) | Correct Schema data type for Applications, Candidates, Scorecards and Users |
| 0.2.6 | 2021-11-08 | [7607](https://github.com/airbytehq/airbyte/pull/7607) | Implement demographics streams support. Update SAT for demographics streams |
| 0.2.5 | 2021-09-22 | [6377](https://github.com/airbytehq/airbyte/pull/6377) | Refactor the connector to use CDK. Implement additional stream support |
| 0.2.4 | 2021-09-15 | [6238](https://github.com/airbytehq/airbyte/pull/6238) | added identification of accessible streams for API keys with limited permissions |