Skip to content
Merged
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

setup(name='tap-github',
version='2.0.14',
version='2.0.15',
description='Singer.io tap for extracting data from the GitHub API',
author='Stitch',
url='http://singer.io',
Expand Down
2 changes: 1 addition & 1 deletion tap_github/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ class IssueMilestones(IncrementalOrderedStream):
replication_method = "INCREMENTAL"
replication_keys = "updated_at"
key_properties = ["id"]
path = "milestones?direction=desc&sort=updated_at"
path = "milestones?state=all&direction=desc&sort=updated_at"

class Collaborators(FullTableStream):
'''
Expand Down