Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed May 4, 2022
1 parent 7071efd commit c0003e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-jira/Dockerfile
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.18
LABEL io.airbyte.version=0.2.19
LABEL io.airbyte.name=airbyte/source-jira
1 change: 1 addition & 0 deletions docs/integrations/sources/jira.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ The Jira connector should not run into Jira API limitations under normal usage.

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.2.19 | 2022-05-04 | [\#10835](https://github.com/airbytehq/airbyte/pull/10835) | Change description for array fields |
| 0.2.18 | 2021-12-23 | [\#7378](https://github.com/airbytehq/airbyte/pull/7378) | Adds experimental endpoint Pull Request |
| 0.2.17 | 2021-12-23 | [\#9079](https://github.com/airbytehq/airbyte/pull/9079) | Update schema for `filters` stream + fix fetching `filters` stream |
| 0.2.16 | 2021-12-21 | [\#8999](https://github.com/airbytehq/airbyte/pull/8999) | Update connector fields title/description |
Expand Down

1 comment on commit c0003e5

@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
Security Rating A Lines to Cover 614 Duplicated Lines (%) 3.8
Coverage 0.0 Lines of Code 829 Duplicated Blocks 5
Quality Gate Status OK Code Smells 10 Bugs 0
Vulnerabilities 0 Reliability Rating A 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.