Skip to content

Commit

Permalink
bump connectors version
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm committed Feb 15, 2022
1 parent 3a7189f commit 2b023c8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
Expand Up @@ -78,7 +78,7 @@
- name: Kafka
destinationDefinitionId: 9f760101-60ae-462f-9ee6-b7a9dafd454d
dockerRepository: airbyte/destination-kafka
dockerImageTag: 0.1.5
dockerImageTag: 0.1.6
documentationUrl: https://docs.airbyte.io/integrations/destinations/kafka
icon: kafka.svg
- name: Kinesis
Expand Down
Expand Up @@ -1571,7 +1571,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/destination-kafka:0.1.5"
- dockerImage: "airbyte/destination-kafka:0.1.6"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/kafka"
connectionSpecification:
Expand Down
Expand Up @@ -363,7 +363,7 @@
- name: Kafka
sourceDefinitionId: d917a47b-8537-4d0d-8c10-36a9928d4265
dockerRepository: airbyte/source-kafka
dockerImageTag: 0.1.3
dockerImageTag: 0.1.4
documentationUrl: https://docs.airbyte.io/integrations/sources/kafka
icon: kafka.svg
sourceType: database
Expand Down
Expand Up @@ -3514,7 +3514,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-kafka:0.1.3"
- dockerImage: "airbyte/source-kafka:0.1.4"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/kafka"
connectionSpecification:
Expand Down
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-kafka

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.name=airbyte/destination-kafka
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-kafka/Dockerfile
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION source-kafka

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.name=airbyte/source-kafka
1 change: 1 addition & 0 deletions docs/integrations/destinations/kafka.md
Expand Up @@ -98,6 +98,7 @@ _NOTE_: Some configurations for SSL are not available yet.

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.6 | 2022-02-15 | [10186](https://github.com/airbytehq/airbyte/pull/10186) | Add SCRAM-SHA-512 Auth |
| 0.1.5 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
| 0.1.4 | 2022-01-31 | [\#9905](https://github.com/airbytehq/airbyte/pull/9905) | Fix SASL config read issue |
| 0.1.3 | 2021-12-30 | [\#8809](https://github.com/airbytehq/airbyte/pull/8809) | Update connector fields title/description |
Expand Down

2 comments on commit 2b023c8

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Destination Kafka(#10363)

Measures

Name Value Name Value Name Value
Duplicated Blocks 0 Lines of Code 261 Duplicated Lines (%) 0.0
Bugs 0 Coverage 0.0 Quality Gate Status OK
Lines to Cover 135 Code Smells 3 Security Rating A
Reliability Rating A Vulnerabilities 0 Blocker Issues 0
Critical Issues 0 Major Issues 3 Minor Issues 0

Detected Issues

Rule File Description Message
java:S6213 (MAJOR) kafka/KafkaRecordConsumer.java:92 Restricted Identifiers should not be used as Identifiers Rename this variable to not match a restricted identifier.
java:S108 (MAJOR) kafka/KafkaDestinationConfig.java:87 Nested blocks of code should not be left empty Either remove or fill this block of code.
java:S112 (MAJOR) kafka/KafkaDestinationConfig.java:92 Generic exceptions should never be thrown Define and throw a dedicated exception instead of using a generic one.

Coverage (0.0%)

File Coverage File Coverage
src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestination.java 0.0 src/main/java/io/airbyte/integrations/destination/kafka/KafkaDestinationConfig.java 0.0
src/main/java/io/airbyte/integrations/destination/kafka/KafkaRecordConsumer.java 0.0

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Source Kafka(#10363)

Measures

Name Value Name Value Name Value
Code Smells 9 Lines to Cover 132 Reliability Rating A
Lines of Code 245 Duplicated Lines (%) 0.0 Vulnerabilities 0
Security Rating A Coverage 0.0 Duplicated Blocks 0
Bugs 0 Quality Gate Status OK Blocker Issues 0
Critical Issues 2 Major Issues 6 Minor Issues 1

Detected Issues

Rule File Description Message
java:S1854 (MAJOR) kafka/KafkaSource.java:117 Unused assignments should be removed Remove this useless assignment to local variable "!unknown!".
java:S6213 (MAJOR) kafka/KafkaSource.java:117 Restricted Identifiers should not be used as Identifiers Rename this variable to not match a restricted identifier.
java:S1186 (CRITICAL) kafka/KafkaSource.java:45 Methods should not be empty Add a nested comment explaining why this method is empty, throw an UnsupportedOperationException or complete the implementation.
java:S1192 (CRITICAL) kafka/KafkaSource.java:50 String literals should not be duplicated Define a constant instead of duplicating this literal "test_topic" 3 times.
java:S112 (MAJOR) kafka/KafkaSource.java:84 Generic exceptions should never be thrown Define and throw a dedicated exception instead of using a generic one.
java:S6213 (MAJOR) kafka/KafkaSource.java:102 Restricted Identifiers should not be used as Identifiers Rename this variable to not match a restricted identifier.
java:S108 (MAJOR) kafka/KafkaSourceConfig.java:87 Nested blocks of code should not be left empty Either remove or fill this block of code.
java:S112 (MAJOR) kafka/KafkaSourceConfig.java:92 Generic exceptions should never be thrown Define and throw a dedicated exception instead of using a generic one.
java:S1301 (MINOR) kafka/KafkaSourceConfig.java:106 "switch" statements should have at least 3 "case" clauses Replace this "switch" statement by "if" statements to increase readability.

Coverage (0.0%)

File Coverage File Coverage
src/main/java/io/airbyte/integrations/source/kafka/KafkaSource.java 0.0 src/main/java/io/airbyte/integrations/source/kafka/KafkaSourceConfig.java 0.0

Please sign in to comment.