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

Remove expand field from users stream #115

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
# Changelog

[v2.2.1]
* Remove `expand` field from `users` stream [#115](https://github.com/singer-io/tap-jira/pull/115)

## [v2.2.0]
* Updates to run on python 3.11.7 [#111](https://github.com/singer-io/tap-jira/pull/111)

## [v2.1.5]
* Skipped the record for out of range date values [#87](https://github.com/singer-io/tap-jira/pull/87)

## [v2.1.4]
* Updated README [#88](https://github.com/singer-io/tap-jira/pull/88)

## [v2.1.3]
* Fixed Tranform Issues [#84](https://github.com/singer-io/tap-jira/pull/84)

## [v2.1.2]
* Added Missing Test Cases [#74](https://github.com/singer-io/tap-jira/pull/74)
* Updated Project stream with new endpoint as old one is deprecated [#75](https://github.com/singer-io/tap-jira/pull/75)
* Primary Key Switching change for On prem JIRA [#76](https://github.com/singer-io/tap-jira/pull/76)
* Updating primary key for issue_transition_stream [#81](https://github.com/singer-io/tap-jira/pull/81)

## [v2.1.1]
* Request Timeout Implementation [#71](https://github.com/singer-io/tap-jira/pull/71)

## [v2.1.0]
* Prevent connections that would yield a 401 from becoming fully_configured [#66] (https://github.com/singer-io/tap-jira/pull/66)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages

setup(name="tap-jira",
version="2.2.0",
version="2.2.1",
description="Singer.io tap for extracting data from the Jira API",
author="Stitch",
url="http://singer.io",
Expand Down
6 changes: 0 additions & 6 deletions tap_jira/schemas/users.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,6 @@
"null",
"string"
]
},
"expand": {
"type": [
"null",
"string"
]
}
}
}
3 changes: 1 addition & 2 deletions tests/test_all_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ class AllFieldsTest(BaseTapTest):
# removed in the Tap
"project_types": ["icon"],
# name, key: properties are deprected
# expand: not populated in the response
"users": ["name", "key", "expand"],
"users": ["name", "key"],
# project: not populated in the response
"versions": ["expand", "moveUnfixedIssuesTo", "project", "remotelinks", "operations"],
# fieldsToInclude: not found in the doc
Expand Down