Skip to content

Commit

Permalink
auto-bump connector version
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed May 4, 2022
1 parent c0003e5 commit 1b1eede
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
- name: Jira
sourceDefinitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993
dockerRepository: airbyte/source-jira
dockerImageTag: 0.2.18
dockerImageTag: 0.2.19
documentationUrl: https://docs.airbyte.io/integrations/sources/jira
icon: jira.svg
sourceType: api
Expand Down
12 changes: 5 additions & 7 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3822,7 +3822,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-jira:0.2.18"
- dockerImage: "airbyte/source-jira:0.2.19"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/jira"
connectionSpecification:
Expand Down Expand Up @@ -3860,8 +3860,7 @@
examples:
- "PROJ1"
- "PROJ2"
description: "Comma-separated list of Jira project keys to replicate data\
\ for."
description: "List of Jira project keys to replicate data for."
start_date:
type: "string"
title: "Start Date"
Expand All @@ -3877,11 +3876,10 @@
title: "Additional Fields"
items:
type: "string"
description: "Comma-separated list of additional fields to include in replicating\
\ issues."
description: "List of additional fields to include in replicating issues."
examples:
- "Field A"
- "Field B"
- "customfield_10096"
- "customfield_10071"
expand_issue_changelog:
type: "boolean"
title: "Expand Issue Changelog"
Expand Down

1 comment on commit 1b1eede

@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 Jira(#10835)

Measures

Name Value Name Value Name Value
Quality Gate Status OK Bugs 0 Lines of Code 829
Coverage 0.0 Code Smells 10 Lines to Cover 614
Vulnerabilities 0 Security Rating A Duplicated Blocks 5
Reliability Rating A Duplicated Lines (%) 3.8 Blocker Issues 0
Critical Issues 0 Major Issues 2 Minor Issues 8

Detected Issues

Rule File Description Message
python:mypy_assignment (MINOR) source_jira/streams.py:118 Check that assigned value is compatible with target Incompatible types in assignment (expression has type "Optional[Any]", variable has type "Mapping[str, Any]") . Code line: latest_record = latest_record.get(self.cursor_field)
python:mypy_var_annotated (MINOR) source_jira/streams.py:432 Require variable annotation if type can't be inferred Need type annotation for "results" (hint: "results: Dict[, ] = ...") . Code line: results = {}
python:mypy_override (MINOR) source_jira/streams.py:900 Check that method override is compatible with base class Signature of "request_params" incompatible with supertype "JiraStream" . Code line: def request_params(self, stream_slice: Mapping[str, Any] = None, *...
python:mypy_arg_type (MINOR) source_jira/streams.py:901 Check argument types in calls Argument "stream_slice" to "request_params" of "JiraStream" has incompatible type "Optional[Mapping[str, Any]]"; expected "Mapping[str, Any]" . Code line: ... params = super().request_params(stream_slice=stream_slice, **kwarg...
python:mypy_index (MINOR) source_jira/streams.py:902 Check indexing operations Value of type "Optional[Mapping[str, Any]]" is not indexable . Code line: params["issueId"] = stream_slice["id"]
python:mypy_override (MINOR) source_jira/streams.py:290 Check that method override is compatible with base class Signature of "request_params" incompatible with supertype "JiraStream" . Code line: def request_params(self, **kwargs) -> MutableMapping[str, Any]:
python:S125 (MAJOR) source_jira/streams.py:625 Sections of code should not be commented out Remove this commented out code.
python:S125 (MAJOR) source_jira/streams.py:651 Sections of code should not be commented out Remove this commented out code.
python:S1481 (MINOR) source_jira/source.py:86 Unused local variables should be removed Remove the unused local variable "item".
python:mypy_import (MINOR) source_jira/streams.py:12 Require that imported module can be found or has stubs Library stubs not installed for "requests" (or incompatible with Python 3.9) . Code line: import requests

Coverage (0.0%)

File Coverage File Coverage
source_jira/init.py 0.0 source_jira/source.py 0.0
source_jira/streams.py 0.0

Please sign in to comment.