You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master: (142 commits)
Highlight removed and added streams in Connection form (airbytehq#13392)
🐛 Source Amplitude: Fixed JSON Validator `date-time` validation (airbytehq#13373)
🐛 Source Mixpanel: publish v0.1.17 (airbytehq#13450)
Fixed reverted PR: Fix cancel button when it doesn't provide feedback to the user + UX improvements (airbytehq#13388)
🎉 Source Freshdesk: Added new streams (airbytehq#13332)
Prepare YamlSeedConfigPersistence for dependency injection (airbytehq#13384)
helm chart: Support nodeSelector, tolerations and affinity on the booloader pod (airbytehq#11467)
airbyte-api: add jackson model annotations to remove null values from responses (airbytehq#13370)
Change stage to `beta` (airbytehq#13422)
🐛 Source Google Sheets: Retry on server errors (airbytehq#13446)
Improve kube deploy process. (airbytehq#13397)
Helm chart dependencies fix (airbytehq#13432)
🐛 Source HubSpot: Transform `contact_lists` data to comply with schema (airbytehq#13218)
airbytehq#11758: Source Google Ads to GA (airbytehq#13441)
Add more pr actions to tag pull requests (airbytehq#13437)
Source Google Ads: drop schema field that filters out the data from stream (airbytehq#13423)
Updates error view with new design (airbytehq#13197)
Source MSSQL: correct enum Standard method (airbytehq#13419)
Update postgres doc about cdc publication (airbytehq#13433)
run source acceptance tests against image built from branch (airbytehq#13401)
...
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug-report.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ assignees: ''
8
8
---
9
9
<!--
10
10
Welcome to Airbyte!
11
+
11
12
We're really appreciate your report and know that this will help us build an
12
13
amazing tool. If you want to contribute yourself, you can find a good place
13
14
to start by searching for the good-first-issues label or maybe... by trying
@@ -28,7 +29,6 @@ You can remove the examples bellow and fill out with your information.
28
29
-**Deployment**: example are Docker or Kubernetes deploy env
29
30
-**Source Connector and version**: (if applicable example Salesforce 0.2.3) <!-- Found in the admin page in the UI in the Source tab. -->
30
31
-**Destination Connector and version**: (if applicable example Postgres 0.3.3) <!-- Found in the admin page in the UI in the Destination tab. -->
31
-
-**Severity**: Very Low / Low / Medium / High / Critical
32
32
-**Step where error happened**: Deploy / Sync job / Setup new connection / Update connector / Upgrade Airbyte
33
33
34
34
## Current Behavior
@@ -39,8 +39,11 @@ You can remove the examples bellow and fill out with your information.
39
39
40
40
## Logs
41
41
<!--
42
-
If applicable: Please upload the complete log files from the failing operation.
43
-
We ask for complete log files because these files capture essential metadata about your environment. The team will read the full stack trace of errors and try to find the root cause of the error. For a sync failure, you can download the log in the sync page, and for other errors please download the server and scheduler logs in the Settings Page -> Configuration.
42
+
Please upload the complete log files from the failing operation.
43
+
44
+
We ask for complete log files because these files capture essential metadata about your environment.
45
+
The team will read the full stack trace of errors and try to find the root cause of the error.
46
+
For a sync failure, you can download the log in the sync page, and for other errors please download the server and scheduler logs in the Settings Page -> Configuration.
Copy file name to clipboardExpand all lines: .github/actions/build-and-push-branch/action.yml
+4-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@ inputs:
4
4
branch_version_tag:
5
5
description: 'Used to tag jars and docker images with a branch-specific version (should use the form "dev-<commit_hash>" to pass AirbyteVersion validation)'
6
6
required: false
7
+
dockerhub_username:
8
+
description: "Used to log in to dockerhub for pushing images"
9
+
required: true
7
10
dockerhub_token:
8
11
description: "Used to log in to dockerhub for pushing images"
JAX-RS generator does not respect nullable properties defined in the OpenApi Spec.
42
+
It means that if a field is not nullable but not set it is still returning a null value for this field in the serialized json.
43
+
The below Jackson annotation is made to only keep non null values in serialized json.
44
+
We are not yet using nullable=true properties in our OpenApi so this is a valid workaround at the moment to circumvent the default JAX-RS behavior described above.
45
+
Feel free to read the conversation on https://github.com/airbytehq/airbyte/pull/13370 for more details.
0 commit comments