diff --git a/Gemfile b/Gemfile index 4ec032c..dd8bfb9 100644 --- a/Gemfile +++ b/Gemfile @@ -15,6 +15,7 @@ group :development do end group :test do + gem "vcr" gem "coveralls", "~>0.8", require: false gem "simplecov", "~>0.10", require: false gem "codeclimate-test-reporter", "~>0.4" diff --git a/lib/github_changelog_generator/fetcher.rb b/lib/github_changelog_generator/fetcher.rb index e1181bc..ff8cf62 100644 --- a/lib/github_changelog_generator/fetcher.rb +++ b/lib/github_changelog_generator/fetcher.rb @@ -220,7 +220,7 @@ Make sure, that you push tags to remote repo via 'git push --tags'" # Fetch commit for specified event # @return [Hash] def fetch_commit(event) - @github.git_data.commits.get @options[:user], @options[:project], event[:commit_id] + @github.git_data.commits.get @options[:user], @options[:project], event['commit_id'] end end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 071aad6..af61f77 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -19,6 +19,7 @@ require "codeclimate-test-reporter" require "simplecov" require "coveralls" +require "vcr" # This module is only used to check the environment is currently a testing env module SpecHelper @@ -36,6 +37,15 @@ end require "github_changelog_generator" require "github_changelog_generator/task" + +VCR.configure do |c| + c.allow_http_connections_when_no_cassette = true + c.cassette_library_dir = 'spec/vcr' + c.ignore_localhost = true + c.default_cassette_options = { :record => :new_episodes } + c.hook_into :faraday +end + RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.include_chain_clauses_in_custom_matcher_descriptions = true @@ -55,4 +65,8 @@ RSpec.configure do |config| config.order = :random Kernel.srand config.seed + + config.extend VCR::RSpec::Macros + end + diff --git a/spec/unit/fetcher_spec.rb b/spec/unit/fetcher_spec.rb index 512895c..c69cd72 100644 --- a/spec/unit/fetcher_spec.rb +++ b/spec/unit/fetcher_spec.rb @@ -2,59 +2,230 @@ VALID_TOKEN = "0123456789abcdef" INVALID_TOKEN = "0000000000000000" -DEFAULT_OPTIONS = { user: "skywinder", - project: "changelog_test" } - -def options_with_invalid_token - options = DEFAULT_OPTIONS - options[:token] = INVALID_TOKEN - options -end - describe GitHubChangelogGenerator::Fetcher do - before(:all) do - @fetcher = GitHubChangelogGenerator::Fetcher.new + let(:options) do + { + :user => "skywinder", + :project => "changelog_test", + } end + let(:fetcher) { GitHubChangelogGenerator::Fetcher.new(options) } + + describe "#fetch_github_token" do token = GitHubChangelogGenerator::Fetcher::CHANGELOG_GITHUB_TOKEN context "when token in ENV exist" do before { stub_const("ENV", ENV.to_hash.merge(token => VALID_TOKEN)) } - subject { @fetcher.fetch_github_token } + subject { fetcher.fetch_github_token } it { is_expected.to eq(VALID_TOKEN) } end + context "when token in ENV is nil" do before { stub_const("ENV", ENV.to_hash.merge(token => nil)) } - subject { @fetcher.fetch_github_token } + subject { fetcher.fetch_github_token } it { is_expected.to be_nil } end + context "when token in options and ENV is nil" do + let(:options) { { :token => VALID_TOKEN } } + before do stub_const("ENV", ENV.to_hash.merge(token => nil)) - @fetcher = GitHubChangelogGenerator::Fetcher.new(token: VALID_TOKEN) end - subject { @fetcher.fetch_github_token } + + subject { fetcher.fetch_github_token } it { is_expected.to eq(VALID_TOKEN) } end + context "when token in options and ENV specified" do + let(:options) { { :token => VALID_TOKEN } } + before do stub_const("ENV", ENV.to_hash.merge(token => "no_matter_what")) - @fetcher = GitHubChangelogGenerator::Fetcher.new(token: VALID_TOKEN) end - subject { @fetcher.fetch_github_token } + + subject { fetcher.fetch_github_token } it { is_expected.to eq(VALID_TOKEN) } end end + describe "#get_all_tags" do + context "when github_fetch_tags returns tags" do + it "returns tags" do + mock_tags = ['tag'] + allow(fetcher).to receive(:github_fetch_tags).and_return(mock_tags) + expect(fetcher.get_all_tags).to eq(mock_tags) + end + end + end + describe "#github_fetch_tags" do context "when wrong token provided" do - before do - options = options_with_invalid_token - @fetcher = GitHubChangelogGenerator::Fetcher.new(options) + use_vcr_cassette + + let(:options) do + { + :user => "skywinder", + :project => "changelog_test", + :token => INVALID_TOKEN + } end + it "should raise Unauthorized error" do - expect { @fetcher.github_fetch_tags }.to raise_error Github::Error::Unauthorized + expect { fetcher.github_fetch_tags }.to raise_error Github::Error::Unauthorized + end + end + + context "when API call is valid" do + use_vcr_cassette + + it "should return tags" do + expected_tags = [{"name"=>"v0.0.3", "zipball_url"=>"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.3", "tarball_url"=>"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.3", "commit"=>{"sha"=>"a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90", "url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90"}}, {"name"=>"v0.0.2", "zipball_url"=>"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.2", "tarball_url"=>"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.2", "commit"=>{"sha"=>"9b35bb13dcd15b68e7bcbf10cde5eb937a54f710", "url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/9b35bb13dcd15b68e7bcbf10cde5eb937a54f710"}}, {"name"=>"v0.0.1", "zipball_url"=>"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.1", "tarball_url"=>"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.1", "commit"=>{"sha"=>"4c2d6d1ed58bdb24b870dcb5d9f2ceed0283d69d", "url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/4c2d6d1ed58bdb24b870dcb5d9f2ceed0283d69d"}}, {"name"=>"0.0.4", "zipball_url"=>"https://api.github.com/repos/skywinder/changelog_test/zipball/0.0.4", "tarball_url"=>"https://api.github.com/repos/skywinder/changelog_test/tarball/0.0.4", "commit"=>{"sha"=>"ece0c3ab7142b21064b885061c55ede00ef6ce94", "url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/ece0c3ab7142b21064b885061c55ede00ef6ce94"}}] + + expect(fetcher.github_fetch_tags).to eq(expected_tags) end end end + + + describe "#fetch_closed_issues_and_pr" do + context "when API call is valid" do + use_vcr_cassette + + + it "returns issues" do + issues, pull_requests = fetcher.fetch_closed_issues_and_pr + expect(issues.size).to eq(7) + expect(pull_requests.size).to eq(14) + end + + it "returns issue with proper key/values" do + issues, pull_requests = fetcher.fetch_closed_issues_and_pr + expected_issue = {"url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14", "repository_url"=>"https://api.github.com/repos/skywinder/changelog_test", "labels_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/labels{/name}", "comments_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/comments", "events_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/events", "html_url"=>"https://github.com/skywinder/changelog_test/issues/14", "id"=>95419412, "number"=>14, "title"=>"Issue closed from commit from PR", "user"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "labels"=>[], "state"=>"closed", "locked"=>false, "assignee"=>nil, "milestone"=>nil, "comments"=>0, "created_at"=>"2015-07-16T12:06:08Z", "updated_at"=>"2015-07-16T12:21:42Z", "closed_at"=>"2015-07-16T12:21:42Z", "body"=>""} + expect(issues.first).to eq(expected_issue) + end + + it "returns pull request with proper key/values" do + issues, pull_requests = fetcher.fetch_closed_issues_and_pr + expected_pr = {"url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/21", "repository_url"=>"https://api.github.com/repos/skywinder/changelog_test", "labels_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/21/labels{/name}", "comments_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/21/comments", "events_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/21/events", "html_url"=>"https://github.com/skywinder/changelog_test/pull/21", "id"=>124925759, "number"=>21, "title"=>"Merged br (should appear in change log with #20)", "user"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "labels"=>[], "state"=>"closed", "locked"=>false, "assignee"=>nil, "milestone"=>nil, "comments"=>0, "created_at"=>"2016-01-05T09:24:08Z", "updated_at"=>"2016-01-05T09:26:53Z", "closed_at"=>"2016-01-05T09:24:27Z", "pull_request"=>{"url"=>"https://api.github.com/repos/skywinder/changelog_test/pulls/21", "html_url"=>"https://github.com/skywinder/changelog_test/pull/21", "diff_url"=>"https://github.com/skywinder/changelog_test/pull/21.diff", "patch_url"=>"https://github.com/skywinder/changelog_test/pull/21.patch"}, "body"=>"to test https://github.com/skywinder/github-changelog-generator/pull/305\r\nshould appear in change log with #20"} + expect(pull_requests.first).to eq(expected_pr) + end + + + it "returns issues with labels" do + issues, pull_requests = fetcher.fetch_closed_issues_and_pr + expected = [[], [], ["Bug"], [], ["enhancement"], ["some label"], []] + expect(issues.map{|i| i.labels.map(&:name) }).to eq(expected) + end + + it "returns pull_requests with labels" do + issues, pull_requests = fetcher.fetch_closed_issues_and_pr + expected = [[], [], [], [], [], ["enhancement"], [], [], ["invalid"], [], [], [], [], ["invalid"]] + expect(pull_requests.map{|i| i.labels.map(&:name) }).to eq(expected) + end + end + end + + describe "#fetch_closed_pull_requests" do + context "when API call is valid" do + use_vcr_cassette + + it "returns pull requests" do + pull_requests = fetcher.fetch_closed_pull_requests + expect(pull_requests.size).to eq(14) + end + + it "returns correct pull request keys" do + pull_requests = fetcher.fetch_closed_pull_requests + + pr = pull_requests.first + expect(pr.keys).to eq(["url", "id", "html_url", "diff_url", "patch_url", "issue_url", "number", "state", "locked", "title", "user", "body", "created_at", "updated_at", "closed_at", "merged_at", "merge_commit_sha", "assignee", "milestone", "commits_url", "review_comments_url", "review_comment_url", "comments_url", "statuses_url", "head", "base", "_links"]) + end + end + end + + + describe "#fetch_events_async" do + context "when API call is valid" do + use_vcr_cassette + + it "populates issues" do + issues = [{"url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14", "repository_url"=>"https://api.github.com/repos/skywinder/changelog_test", "labels_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/labels{/name}", "comments_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/comments", "events_url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/14/events", "html_url"=>"https://github.com/skywinder/changelog_test/issues/14", "id"=>95419412, "number"=>14, "title"=>"Issue closed from commit from PR", "user"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "labels"=>[], "state"=>"closed", "locked"=>false, "assignee"=>nil, "milestone"=>nil, "comments"=>0, "created_at"=>"2015-07-16T12:06:08Z", "updated_at"=>"2015-07-16T12:21:42Z", "closed_at"=>"2015-07-16T12:21:42Z", "body"=>""}] + + # Check that they are blank to begin with + expect(issues.first[:events]).to be_nil + + fetcher.fetch_events_async(issues) + issue_events = issues.first[:events] + + expected_events = [{"id"=>357462189, "url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/events/357462189", "actor"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "event"=>"referenced", "commit_id"=>"decfe840d1a1b86e0c28700de5362d3365a29555", "commit_url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/decfe840d1a1b86e0c28700de5362d3365a29555", "created_at"=>"2015-07-16T12:21:16Z"}, {"id"=>357462542, "url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/events/357462542", "actor"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "event"=>"closed", "commit_id"=>"decfe840d1a1b86e0c28700de5362d3365a29555", "commit_url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/decfe840d1a1b86e0c28700de5362d3365a29555", "created_at"=>"2015-07-16T12:21:42Z"}] + expect(issue_events).to eq(expected_events) + end + + end + end + + + describe "#fetch_date_of_tag" do + context "when API call is valid" do + use_vcr_cassette + + it "returns date" do + tag = {"name"=>"v0.0.3", "zipball_url"=>"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.3", "tarball_url"=>"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.3", "commit"=>{"sha"=>"a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90", "url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90"}} + dt = fetcher.fetch_date_of_tag(tag) + expect(dt).to eq(Time.parse("2015-03-04 19:01:48 UTC")) + end + + end + end + + + describe "#fetch_commit" do + context "when API call is valid" do + use_vcr_cassette + + it "returns commit" do + event = {"id"=>357462189, "url"=>"https://api.github.com/repos/skywinder/changelog_test/issues/events/357462189", "actor"=>{"login"=>"skywinder", "id"=>3356474, "avatar_url"=>"https://avatars.githubusercontent.com/u/3356474?v=3", "gravatar_id"=>"", "url"=>"https://api.github.com/users/skywinder", "html_url"=>"https://github.com/skywinder", "followers_url"=>"https://api.github.com/users/skywinder/followers", "following_url"=>"https://api.github.com/users/skywinder/following{/other_user}", "gists_url"=>"https://api.github.com/users/skywinder/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/skywinder/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/skywinder/subscriptions", "organizations_url"=>"https://api.github.com/users/skywinder/orgs", "repos_url"=>"https://api.github.com/users/skywinder/repos", "events_url"=>"https://api.github.com/users/skywinder/events{/privacy}", "received_events_url"=>"https://api.github.com/users/skywinder/received_events", "type"=>"User", "site_admin"=>false}, "event"=>"referenced", "commit_id"=>"decfe840d1a1b86e0c28700de5362d3365a29555", "commit_url"=>"https://api.github.com/repos/skywinder/changelog_test/commits/decfe840d1a1b86e0c28700de5362d3365a29555", "created_at"=>"2015-07-16T12:21:16Z"} + commit = fetcher.fetch_commit(event) + + expectations = [ + ["sha", "decfe840d1a1b86e0c28700de5362d3365a29555"], + ["url", + "https://api.github.com/repos/skywinder/changelog_test/git/commits/decfe840d1a1b86e0c28700de5362d3365a29555"], + ["html_url", + "https://github.com/skywinder/changelog_test/commit/decfe840d1a1b86e0c28700de5362d3365a29555"], + ["author", + {"name"=>"Petr Korolev", + "email"=>"sky4winder@gmail.com", + "date"=>"2015-07-16T12:11:01Z"}], + ["committer", + {"name"=>"Petr Korolev", + "email"=>"sky4winder@gmail.com", + "date"=>"2015-07-16T12:11:01Z"}], + ["tree", + {"sha"=>"0699c15258a7c2b2e157051fe19851d4f705cac8", + "url"=> + "https://api.github.com/repos/skywinder/changelog_test/git/trees/0699c15258a7c2b2e157051fe19851d4f705cac8"}], + ["message", "fix #14"], + ["parents", + [{"sha"=>"7ec095e5e3caceacedabf44d0b9b10da17c92e51", + "url"=> + "https://api.github.com/repos/skywinder/changelog_test/git/commits/7ec095e5e3caceacedabf44d0b9b10da17c92e51", + "html_url"=> + "https://github.com/skywinder/changelog_test/commit/7ec095e5e3caceacedabf44d0b9b10da17c92e51"}] + ] + ] + + expectations.each do |property, val| + expect(commit.send(property)).to eq(val) + end + + end + + end + end + + + end diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.yml new file mode 100644 index 0000000..653aff7 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.yml @@ -0,0 +1,119 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/issues?state=closed&filter=all&labels + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:16:29 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '46' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"9c9157acb59215fa6a50f2b36660cad0" + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - a474937f3b2fa272558fa6dc951018ad + x-github-request-id: + - 6C2F0F69:1C0C6:9D1C45F:573E02FD + body: + encoding: ASCII-8BIT + string: '[{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/21","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/21/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/21/events","html_url":"https://github.com/skywinder/changelog_test/pull/21","id":124925759,"number":21,"title":"Merged + br (should appear in change log with #20)","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2016-01-05T09:24:08Z","updated_at":"2016-01-05T09:26:53Z","closed_at":"2016-01-05T09:24:27Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/21","html_url":"https://github.com/skywinder/changelog_test/pull/21","diff_url":"https://github.com/skywinder/changelog_test/pull/21.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/21.patch"},"body":"to + test https://github.com/skywinder/github-changelog-generator/pull/305\r\nshould + appear in change log with #20"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/20","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/20/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/20/events","html_url":"https://github.com/skywinder/changelog_test/pull/20","id":124925566,"number":20,"title":"Merged + PR to sub-branch (should appear in change log with #21)","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2016-01-05T09:23:10Z","updated_at":"2016-01-05T09:26:47Z","closed_at":"2016-01-05T09:23:19Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/20","html_url":"https://github.com/skywinder/changelog_test/pull/20","diff_url":"https://github.com/skywinder/changelog_test/pull/20.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/20.patch"},"body":"https://github.com/skywinder/github-changelog-generator/pull/305\r\nshould + appear in change log with #21"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/19","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/19/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/19/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/19/events","html_url":"https://github.com/skywinder/changelog_test/pull/19","id":124910381,"number":19,"title":"Merged + PR to Develop","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2016-01-05T07:14:11Z","updated_at":"2016-01-05T09:19:23Z","closed_at":"2016-01-05T07:14:29Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/19","html_url":"https://github.com/skywinder/changelog_test/pull/19","diff_url":"https://github.com/skywinder/changelog_test/pull/19.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/19.patch"},"body":"this + PR helps to test https://github.com/skywinder/github-changelog-generator/pull/305\r\n\r\nShould + not appear in Changelog with `--release-branch master option`"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/18","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/18/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/18/events","html_url":"https://github.com/skywinder/changelog_test/pull/18","id":124910177,"number":18,"title":"test + cm","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2016-01-05T07:11:39Z","updated_at":"2016-01-05T07:12:03Z","closed_at":"2016-01-05T07:12:03Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/18","html_url":"https://github.com/skywinder/changelog_test/pull/18","diff_url":"https://github.com/skywinder/changelog_test/pull/18.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/18.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/17","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/17/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/17/events","html_url":"https://github.com/skywinder/changelog_test/pull/17","id":103006991,"number":17,"title":"This + a PR with a lot of comments and events","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":23,"created_at":"2015-08-25T12:03:04Z","updated_at":"2015-08-25T12:06:39Z","closed_at":"2015-08-25T12:06:39Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/17","html_url":"https://github.com/skywinder/changelog_test/pull/17","diff_url":"https://github.com/skywinder/changelog_test/pull/17.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/17.patch"},"body":"This + is test issue, that described here:\nhttps://github.com/skywinder/github-changelog-generator/pull/262"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/16","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/16/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/16/events","html_url":"https://github.com/skywinder/changelog_test/pull/16","id":103005423,"number":16,"title":"PR + with enhancement label","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"milestone":null,"comments":0,"created_at":"2015-08-25T11:49:56Z","updated_at":"2015-08-25T14:20:03Z","closed_at":"2015-08-25T11:53:15Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/16","html_url":"https://github.com/skywinder/changelog_test/pull/16","diff_url":"https://github.com/skywinder/changelog_test/pull/16.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/16.patch"},"body":"This + is test PR with enchantment label\r\nTo test https://github.com/skywinder/github-changelog-generator/pull/266"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/15","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/15/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/15/events","html_url":"https://github.com/skywinder/changelog_test/pull/15","id":95422099,"number":15,"title":"This + PR closes 14 from commit","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-07-16T12:21:26Z","updated_at":"2016-01-05T09:22:06Z","closed_at":"2015-07-16T12:21:42Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/15","html_url":"https://github.com/skywinder/changelog_test/pull/15","diff_url":"https://github.com/skywinder/changelog_test/pull/15.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/15.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/14","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/14/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/14/events","html_url":"https://github.com/skywinder/changelog_test/issues/14","id":95419412,"number":14,"title":"Issue + closed from commit from PR","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-07-16T12:06:08Z","updated_at":"2015-07-16T12:21:42Z","closed_at":"2015-07-16T12:21:42Z","body":""},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/13","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/13/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/13/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/13/events","html_url":"https://github.com/skywinder/changelog_test/pull/13","id":95419147,"number":13,"title":"This + PR to close #12 from body","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-07-16T12:03:54Z","updated_at":"2015-07-16T12:05:15Z","closed_at":"2015-07-16T12:05:06Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/13","html_url":"https://github.com/skywinder/changelog_test/pull/13","diff_url":"https://github.com/skywinder/changelog_test/pull/13.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/13.patch"},"body":"Fix + #12"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/12","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/12/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/12/events","html_url":"https://github.com/skywinder/changelog_test/issues/12","id":95419042,"number":12,"title":"Issue, + closed by PR","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-07-16T12:02:59Z","updated_at":"2015-07-16T12:05:06Z","closed_at":"2015-07-16T12:05:06Z","body":"this + issue closed by PR"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/11","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/11/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/11/events","html_url":"https://github.com/skywinder/changelog_test/issues/11","id":87656192,"number":11,"title":"BugFix","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/Bug","name":"Bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-06-12T08:28:37Z","updated_at":"2015-06-12T08:28:39Z","closed_at":"2015-06-12T08:28:39Z","body":"BugFix"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/10","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/10/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/10/events","html_url":"https://github.com/skywinder/changelog_test/issues/10","id":87656111,"number":10,"title":"Issue","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-06-12T08:28:21Z","updated_at":"2015-06-12T08:28:23Z","closed_at":"2015-06-12T08:28:23Z","body":"Issue"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/9","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/9/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/9/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/9/events","html_url":"https://github.com/skywinder/changelog_test/issues/9","id":87656045,"number":9,"title":"Enchancment","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-06-12T08:28:06Z","updated_at":"2015-06-12T08:28:09Z","closed_at":"2015-06-12T08:28:09Z","body":"Enchancment"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/8","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/8/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/8/events","html_url":"https://github.com/skywinder/changelog_test/issues/8","id":87350748,"number":8,"title":"Issue + with some other label - Should be in closed issues","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/some%20label","name":"some + label","color":"d4c5f9"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-06-11T13:39:20Z","updated_at":"2015-06-11T13:40:19Z","closed_at":"2015-06-11T13:40:19Z","body":"Should + be in closed issues!"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/7","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/7/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/7/events","html_url":"https://github.com/skywinder/changelog_test/pull/7","id":70159735,"number":7,"title":"this + reopened PR with invalid label. SHOULD NOT appear in change log","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-04-22T15:27:34Z","updated_at":"2015-05-19T08:39:14Z","closed_at":"2015-05-19T08:39:14Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/7","html_url":"https://github.com/skywinder/changelog_test/pull/7","diff_url":"https://github.com/skywinder/changelog_test/pull/7.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/7.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/6","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/6/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/6/events","html_url":"https://github.com/skywinder/changelog_test/pull/6","id":62615545,"number":6,"title":"This + is closed PR and SHOULD NOT appear in change log!","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-03-18T07:45:40Z","updated_at":"2015-05-19T08:38:00Z","closed_at":"2015-03-18T07:46:21Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/6","html_url":"https://github.com/skywinder/changelog_test/pull/6","diff_url":"https://github.com/skywinder/changelog_test/pull/6.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/6.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/5","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/5/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/5/events","html_url":"https://github.com/skywinder/changelog_test/pull/5","id":59949229,"number":5,"title":"Add + automatically generated change log file.","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-03-05T13:09:07Z","updated_at":"2015-03-19T08:43:27Z","closed_at":"2015-03-05T13:13:18Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/5","html_url":"https://github.com/skywinder/changelog_test/pull/5","diff_url":"https://github.com/skywinder/changelog_test/pull/5.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/5.patch"},"body":"Add + automatically generated change log file.\r\n\r\nHi, as I can see, you are + carefully fill tags and labels for issues in your repo.\r\n\r\nFor such cases + I create a [github_changelog_generator](https://github.com/skywinder/github-changelog-generator), + that generate change log file based on **tags**, **issues** and merged **pull + requests** from :octocat: Issue Tracker.\r\n\r\nThis PR add change log file + to your repo (generated by this script).\r\nYou can look, how it''s look like + here: [Change Log](https://github.com/skywinder/#{@options[:project]}/blob/add-change-log-file/#{@options[:output]})\r\n\r\nSome + essential features, that has this script:\r\n\r\n- it **exclude** not-related + to changelog issues (any issue, that has label `question` `duplicate` `invalid` + `wontfix` )\r\n- Distinguish issues **according labels**:\r\n - Merged + pull requests (all `merged` pull-requests)\r\n - Bug fixes (by label `bug` + in issue)\r\n - Enhancements (by label `enhancement` in issue)\r\n - Issues + (closed issues `w/o any labels`)\r\n- Generate neat Change Log file according + basic [change log guidelines](http://keepachangelog.com).\r\n\r\nYou can easily + update this file in future by simply run script: `github_changelog_generator + #{@options[:repo]}` in your repo folder and it make your Change Log file up-to-date + again!\r\n\r\nHope you find this commit as useful. :wink:"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/4","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/4/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/4/events","html_url":"https://github.com/skywinder/changelog_test/pull/4","id":59844195,"number":4,"title":"fix + #3. hotfix. Should appear in v0.0.3","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-03-04T19:01:11Z","updated_at":"2015-03-04T19:02:19Z","closed_at":"2015-03-04T19:02:19Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/4","html_url":"https://github.com/skywinder/changelog_test/pull/4","diff_url":"https://github.com/skywinder/changelog_test/pull/4.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/4.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/3","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/3/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/3/events","html_url":"https://github.com/skywinder/changelog_test/issues/3","id":59843543,"number":3,"title":"Test + issue, that should appear in 0.0.4","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-03-04T18:56:51Z","updated_at":"2015-05-22T06:33:46Z","closed_at":"2015-05-22T06:30:38Z","body":"Test + issue for issue https://github.com/skywinder/github-changelog-generator/issues/239"},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/2","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/2/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/2/events","html_url":"https://github.com/skywinder/changelog_test/pull/2","id":59828714,"number":2,"title":"Here + is a test hotfix should appear in v.0.0.2","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-03-04T17:09:05Z","updated_at":"2015-03-04T17:10:44Z","closed_at":"2015-03-04T17:10:44Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/2","html_url":"https://github.com/skywinder/changelog_test/pull/2","diff_url":"https://github.com/skywinder/changelog_test/pull/2.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/2.patch"},"body":null},{"url":"https://api.github.com/repos/skywinder/changelog_test/issues/1","repository_url":"https://api.github.com/repos/skywinder/changelog_test","labels_url":"https://api.github.com/repos/skywinder/changelog_test/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/1/comments","events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/1/events","html_url":"https://github.com/skywinder/changelog_test/pull/1","id":59826520,"number":1,"title":"Here + is invalid forced update PR, shouldn''t appear in change log","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/skywinder/changelog_test/labels/invalid","name":"invalid","color":"e6e6e6"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-03-04T16:55:23Z","updated_at":"2015-03-04T17:11:44Z","closed_at":"2015-03-04T16:57:10Z","pull_request":{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/1","html_url":"https://github.com/skywinder/changelog_test/pull/1","diff_url":"https://github.com/skywinder/changelog_test/pull/1.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/1.patch"},"body":"test + change"}]' + http_version: + recorded_at: Thu, 19 May 2016 18:16:33 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_pull_requests/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_pull_requests/when_API_call_is_valid.yml new file mode 100644 index 0000000..f0e9fc8 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_closed_pull_requests/when_API_call_is_valid.yml @@ -0,0 +1,139 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/pulls?state=closed + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:16:28 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '47' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"4426fe7d822a1f11ac1c207ed0265caa" + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - dc1ce2bfb41810a06c705e83b388572d + x-github-request-id: + - 6C2F0F69:1C0C4:91DEFE2:573E02FC + body: + encoding: ASCII-8BIT + string: '[{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/21","id":55069652,"html_url":"https://github.com/skywinder/changelog_test/pull/21","diff_url":"https://github.com/skywinder/changelog_test/pull/21.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/21.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/21","number":21,"state":"closed","locked":false,"title":"Merged + br (should appear in change log with #20)","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"to + test https://github.com/skywinder/github-changelog-generator/pull/305\r\nshould + appear in change log with #20","created_at":"2016-01-05T09:24:08Z","updated_at":"2016-01-05T09:26:53Z","closed_at":"2016-01-05T09:24:27Z","merged_at":"2016-01-05T09:24:27Z","merge_commit_sha":"48de6bd90d839c8fbe377c499d6d093a26f83f39","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/21/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/21/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/21/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/2158d5c58a694086fabfffb72632ccadc004cb46","head":{"label":"skywinder:test_br","ref":"test_br","sha":"2158d5c58a694086fabfffb72632ccadc004cb46","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"68f45a7a0b9920c7e7461d0df7030ed7f51adc88","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/21"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/21"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/21"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/21/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/21/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/2158d5c58a694086fabfffb72632ccadc004cb46"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/20","id":55069564,"html_url":"https://github.com/skywinder/changelog_test/pull/20","diff_url":"https://github.com/skywinder/changelog_test/pull/20.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/20.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/20","number":20,"state":"closed","locked":false,"title":"Merged + PR to sub-branch (should appear in change log with #21)","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"https://github.com/skywinder/github-changelog-generator/pull/305\r\nshould + appear in change log with #21","created_at":"2016-01-05T09:23:10Z","updated_at":"2016-01-05T09:26:47Z","closed_at":"2016-01-05T09:23:19Z","merged_at":"2016-01-05T09:23:19Z","merge_commit_sha":"b802783387a7889b39acda7bbb406d4622e25a25","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/20/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/20/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/20/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/ee7ffd54b2ad405907ebfa1387c50b9760ee776e","head":{"label":"skywinder:merged_br","ref":"merged_br","sha":"ee7ffd54b2ad405907ebfa1387c50b9760ee776e","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:test_br","ref":"test_br","sha":"b815cca065769d6c6868977eea708cb902d8a23f","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/20"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/20"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/20"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/20/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/20/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/ee7ffd54b2ad405907ebfa1387c50b9760ee776e"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/19","id":55061110,"html_url":"https://github.com/skywinder/changelog_test/pull/19","diff_url":"https://github.com/skywinder/changelog_test/pull/19.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/19.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/19","number":19,"state":"closed","locked":false,"title":"Merged + PR to Develop","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"this + PR helps to test https://github.com/skywinder/github-changelog-generator/pull/305\r\n\r\nShould + not appear in Changelog with `--release-branch master option`","created_at":"2016-01-05T07:14:11Z","updated_at":"2016-01-05T09:19:23Z","closed_at":"2016-01-05T07:14:29Z","merged_at":"2016-01-05T07:14:29Z","merge_commit_sha":"9831e24e0845fed5cb1bd63b56e1ad3491c3d01f","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/19/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/19/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/19/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/93bb9d016eaf6377c7aa68abeb3451530af6a149","head":{"label":"skywinder:pr-to-develop","ref":"pr-to-develop","sha":"93bb9d016eaf6377c7aa68abeb3451530af6a149","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:develop","ref":"develop","sha":"60b1adab1a4c5ab1ba55588c9e45a4c9ebc64095","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/19"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/19"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/19"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/19/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/19/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/93bb9d016eaf6377c7aa68abeb3451530af6a149"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/18","id":55060974,"html_url":"https://github.com/skywinder/changelog_test/pull/18","diff_url":"https://github.com/skywinder/changelog_test/pull/18.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/18.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/18","number":18,"state":"closed","locked":false,"title":"test + cm","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2016-01-05T07:11:39Z","updated_at":"2016-01-05T07:12:03Z","closed_at":"2016-01-05T07:12:03Z","merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/18/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/18/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/18/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/93bb9d016eaf6377c7aa68abeb3451530af6a149","head":{"label":"skywinder:pr-to-develop","ref":"pr-to-develop","sha":"93bb9d016eaf6377c7aa68abeb3451530af6a149","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"68f45a7a0b9920c7e7461d0df7030ed7f51adc88","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/18"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/18"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/18"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/93bb9d016eaf6377c7aa68abeb3451530af6a149"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/17","id":43277188,"html_url":"https://github.com/skywinder/changelog_test/pull/17","diff_url":"https://github.com/skywinder/changelog_test/pull/17.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/17.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/17","number":17,"state":"closed","locked":false,"title":"This + a PR with a lot of comments and events","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"This + is test issue, that described here:\nhttps://github.com/skywinder/github-changelog-generator/pull/262","created_at":"2015-08-25T12:03:04Z","updated_at":"2015-08-25T12:06:39Z","closed_at":"2015-08-25T12:06:39Z","merged_at":"2015-08-25T12:06:39Z","merge_commit_sha":"e2626987e51624f63c914ca35643c7f0eb8ffacf","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/17/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/17/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/17/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/764ab86f637fee26b9cbc0481c69b94c2f774c82","head":{"label":"skywinder:huge-Events","ref":"huge-Events","sha":"764ab86f637fee26b9cbc0481c69b94c2f774c82","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"7fc46bbe49ee07dd288fdd2e0a7a055dd16a3436","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/17"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/17"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/17"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/764ab86f637fee26b9cbc0481c69b94c2f774c82"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/16","id":43276319,"html_url":"https://github.com/skywinder/changelog_test/pull/16","diff_url":"https://github.com/skywinder/changelog_test/pull/16.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/16.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/16","number":16,"state":"closed","locked":false,"title":"PR + with enhancement label","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"This + is test PR with enchantment label\r\nTo test https://github.com/skywinder/github-changelog-generator/pull/266","created_at":"2015-08-25T11:49:56Z","updated_at":"2015-08-25T14:20:03Z","closed_at":"2015-08-25T11:53:15Z","merged_at":"2015-08-25T11:53:15Z","merge_commit_sha":"17ca416f6a3c8a2fe93fa1ef7e4461bb6ccdb87a","assignee":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/16/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/16/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/16/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/56fef51c522dbfc52743081ead2eefa21a357295","head":{"label":"skywinder:big-events","ref":"big-events","sha":"56fef51c522dbfc52743081ead2eefa21a357295","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"ca4e711056e0912b62c6e0413eee51bc8e8a2d63","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/16"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/16"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/16"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/16/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/16/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/16/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/56fef51c522dbfc52743081ead2eefa21a357295"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/15","id":40123017,"html_url":"https://github.com/skywinder/changelog_test/pull/15","diff_url":"https://github.com/skywinder/changelog_test/pull/15.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/15.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/15","number":15,"state":"closed","locked":false,"title":"This + PR closes 14 from commit","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-07-16T12:21:26Z","updated_at":"2016-01-05T09:22:06Z","closed_at":"2015-07-16T12:21:42Z","merged_at":"2015-07-16T12:21:42Z","merge_commit_sha":"58d79099e3850f1346611334646d3527e89dad56","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/15/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/15/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/15/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/decfe840d1a1b86e0c28700de5362d3365a29555","head":{"label":"skywinder:pr","ref":"pr","sha":"decfe840d1a1b86e0c28700de5362d3365a29555","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"7ec095e5e3caceacedabf44d0b9b10da17c92e51","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/15"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/15"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/15"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/15/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/15/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/15/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/decfe840d1a1b86e0c28700de5362d3365a29555"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/13","id":40121776,"html_url":"https://github.com/skywinder/changelog_test/pull/13","diff_url":"https://github.com/skywinder/changelog_test/pull/13.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/13.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/13","number":13,"state":"closed","locked":false,"title":"This + PR to close #12 from body","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"Fix + #12","created_at":"2015-07-16T12:03:54Z","updated_at":"2015-07-16T12:05:15Z","closed_at":"2015-07-16T12:05:06Z","merged_at":"2015-07-16T12:05:06Z","merge_commit_sha":"a347fc3b6cbf9199ce2c553e0c3294140c635ef3","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/13/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/13/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/13/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/0f9d2df1304fca6bdaf8439da5be4dc963c0395e","head":{"label":"skywinder:pr","ref":"pr","sha":"0f9d2df1304fca6bdaf8439da5be4dc963c0395e","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"5d7a659350d205c09933b8dac6490ef7fca8bf4e","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/13"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/13"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/13"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/13/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/13/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/13/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/0f9d2df1304fca6bdaf8439da5be4dc963c0395e"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/7","id":33869771,"html_url":"https://github.com/skywinder/changelog_test/pull/7","diff_url":"https://github.com/skywinder/changelog_test/pull/7.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/7.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/7","number":7,"state":"closed","locked":false,"title":"this + reopened PR with invalid label. SHOULD NOT appear in change log","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-04-22T15:27:34Z","updated_at":"2015-05-19T08:39:14Z","closed_at":"2015-05-19T08:39:14Z","merged_at":"2015-05-19T08:39:14Z","merge_commit_sha":"7f03b47d93ba4b3b5f8a00b2ea5098088bbea6aa","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/7/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/7/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/7/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/a774e25a43eee4dff04a861096039f945af1887a","head":{"label":"skywinder:closed-pr","ref":"closed-pr","sha":"a774e25a43eee4dff04a861096039f945af1887a","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"644904603012ef9231507bd720efbd30f1f4d0b5","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/7"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/7"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/7"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/7/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/7/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/7/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/a774e25a43eee4dff04a861096039f945af1887a"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/6","id":31406371,"html_url":"https://github.com/skywinder/changelog_test/pull/6","diff_url":"https://github.com/skywinder/changelog_test/pull/6.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/6.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/6","number":6,"state":"closed","locked":false,"title":"This + is closed PR and SHOULD NOT appear in change log!","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-03-18T07:45:40Z","updated_at":"2015-05-19T08:38:00Z","closed_at":"2015-03-18T07:46:21Z","merged_at":null,"merge_commit_sha":"7e2ae53583264cebdf9bc602d59b3487fcbd85b1","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/6/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/6/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/6/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/478e68b12f329c55d1eafa83df55b2896fd5b70d","head":{"label":"skywinder:test-closed-pr","ref":"test-closed-pr","sha":"478e68b12f329c55d1eafa83df55b2896fd5b70d","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"b4dd6ec5fe2e3e346eeb193be24c5d63f9d847b4","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/6"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/6"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/6"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/6/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/6/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/6/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/478e68b12f329c55d1eafa83df55b2896fd5b70d"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/5","id":30555205,"html_url":"https://github.com/skywinder/changelog_test/pull/5","diff_url":"https://github.com/skywinder/changelog_test/pull/5.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/5.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/5","number":5,"state":"closed","locked":false,"title":"Add + automatically generated change log file.","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"Add + automatically generated change log file.\r\n\r\nHi, as I can see, you are + carefully fill tags and labels for issues in your repo.\r\n\r\nFor such cases + I create a [github_changelog_generator](https://github.com/skywinder/github-changelog-generator), + that generate change log file based on **tags**, **issues** and merged **pull + requests** from :octocat: Issue Tracker.\r\n\r\nThis PR add change log file + to your repo (generated by this script).\r\nYou can look, how it''s look like + here: [Change Log](https://github.com/skywinder/#{@options[:project]}/blob/add-change-log-file/#{@options[:output]})\r\n\r\nSome + essential features, that has this script:\r\n\r\n- it **exclude** not-related + to changelog issues (any issue, that has label `question` `duplicate` `invalid` + `wontfix` )\r\n- Distinguish issues **according labels**:\r\n - Merged + pull requests (all `merged` pull-requests)\r\n - Bug fixes (by label `bug` + in issue)\r\n - Enhancements (by label `enhancement` in issue)\r\n - Issues + (closed issues `w/o any labels`)\r\n- Generate neat Change Log file according + basic [change log guidelines](http://keepachangelog.com).\r\n\r\nYou can easily + update this file in future by simply run script: `github_changelog_generator + #{@options[:repo]}` in your repo folder and it make your Change Log file up-to-date + again!\r\n\r\nHope you find this commit as useful. :wink:","created_at":"2015-03-05T13:09:07Z","updated_at":"2015-03-19T08:43:27Z","closed_at":"2015-03-05T13:13:18Z","merged_at":"2015-03-05T13:13:18Z","merge_commit_sha":"8fd1c7392bfd6bbd7b7056a1261dddd7b6e993d4","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/5/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/5/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/5/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/d1adb3211385db06e35ebe44facd3b76ddea79a4","head":{"label":"skywinder:add-change-log-file","ref":"add-change-log-file","sha":"d1adb3211385db06e35ebe44facd3b76ddea79a4","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"498f38d055fd9edcd2d99a9496d62ba71068fc2a","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/5"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/5"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/5"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/d1adb3211385db06e35ebe44facd3b76ddea79a4"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/4","id":30493659,"html_url":"https://github.com/skywinder/changelog_test/pull/4","diff_url":"https://github.com/skywinder/changelog_test/pull/4.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/4.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/4","number":4,"state":"closed","locked":false,"title":"fix + #3. hotfix. Should appear in v0.0.3","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-03-04T19:01:11Z","updated_at":"2015-03-04T19:02:19Z","closed_at":"2015-03-04T19:02:19Z","merged_at":"2015-03-04T19:02:19Z","merge_commit_sha":"799613ca1bfa3579bd406772c1556b518d742a77","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/4/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/4/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/4/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/68445f5d2bd8df612e25b37058aea7f123439fa1","head":{"label":"skywinder:hotfix/fix-3","ref":"hotfix/fix-3","sha":"68445f5d2bd8df612e25b37058aea7f123439fa1","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"6a28f64bbe783d7ac171c38cefcb109e1b8e0911","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/4"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/4"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/4"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/68445f5d2bd8df612e25b37058aea7f123439fa1"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/2","id":30484185,"html_url":"https://github.com/skywinder/changelog_test/pull/2","diff_url":"https://github.com/skywinder/changelog_test/pull/2.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/2.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/2","number":2,"state":"closed","locked":false,"title":"Here + is a test hotfix should appear in v.0.0.2","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-03-04T17:09:05Z","updated_at":"2015-03-04T17:10:44Z","closed_at":"2015-03-04T17:10:44Z","merged_at":"2015-03-04T17:10:44Z","merge_commit_sha":"d23e0cf8757bd660d9b1cc71e8046af1f205cac6","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/2/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/2/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/2/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/79b196843543d3b77114bf2cc1f7474868d6a411","head":{"label":"skywinder:hotfix/v-0-0-2","ref":"hotfix/v-0-0-2","sha":"79b196843543d3b77114bf2cc1f7474868d6a411","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"d0da83894356496f780da0fdea7d2d7a8f513357","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/2"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/2"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/2"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/79b196843543d3b77114bf2cc1f7474868d6a411"}}},{"url":"https://api.github.com/repos/skywinder/changelog_test/pulls/1","id":30482853,"html_url":"https://github.com/skywinder/changelog_test/pull/1","diff_url":"https://github.com/skywinder/changelog_test/pull/1.diff","patch_url":"https://github.com/skywinder/changelog_test/pull/1.patch","issue_url":"https://api.github.com/repos/skywinder/changelog_test/issues/1","number":1,"state":"closed","locked":false,"title":"Here + is invalid forced update PR, shouldn''t appear in change log","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"body":"test + change","created_at":"2015-03-04T16:55:23Z","updated_at":"2015-03-04T17:11:44Z","closed_at":"2015-03-04T16:57:10Z","merged_at":"2015-03-04T16:57:10Z","merge_commit_sha":"2033c98345dd1f40bfe92101facc67cc2cfc6214","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/1/commits","review_comments_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/1/comments","review_comment_url":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/issues/1/comments","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/ed946923079ed505943ad1fa03940263a8c0bd13","head":{"label":"skywinder:hotfix/v-0-0-2","ref":"hotfix/v-0-0-2","sha":"ed946923079ed505943ad1fa03940263a8c0bd13","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"skywinder:master","ref":"master","sha":"d0da83894356496f780da0fdea7d2d7a8f513357","user":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"repo":{"id":31668302,"name":"changelog_test","full_name":"skywinder/changelog_test","owner":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/skywinder/changelog_test","description":"Test + repo for GitHubChangelogGenerator","fork":false,"url":"https://api.github.com/repos/skywinder/changelog_test","forks_url":"https://api.github.com/repos/skywinder/changelog_test/forks","keys_url":"https://api.github.com/repos/skywinder/changelog_test/keys{/key_id}","collaborators_url":"https://api.github.com/repos/skywinder/changelog_test/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/skywinder/changelog_test/teams","hooks_url":"https://api.github.com/repos/skywinder/changelog_test/hooks","issue_events_url":"https://api.github.com/repos/skywinder/changelog_test/issues/events{/number}","events_url":"https://api.github.com/repos/skywinder/changelog_test/events","assignees_url":"https://api.github.com/repos/skywinder/changelog_test/assignees{/user}","branches_url":"https://api.github.com/repos/skywinder/changelog_test/branches{/branch}","tags_url":"https://api.github.com/repos/skywinder/changelog_test/tags","blobs_url":"https://api.github.com/repos/skywinder/changelog_test/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/skywinder/changelog_test/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/skywinder/changelog_test/git/refs{/sha}","trees_url":"https://api.github.com/repos/skywinder/changelog_test/git/trees{/sha}","statuses_url":"https://api.github.com/repos/skywinder/changelog_test/statuses/{sha}","languages_url":"https://api.github.com/repos/skywinder/changelog_test/languages","stargazers_url":"https://api.github.com/repos/skywinder/changelog_test/stargazers","contributors_url":"https://api.github.com/repos/skywinder/changelog_test/contributors","subscribers_url":"https://api.github.com/repos/skywinder/changelog_test/subscribers","subscription_url":"https://api.github.com/repos/skywinder/changelog_test/subscription","commits_url":"https://api.github.com/repos/skywinder/changelog_test/commits{/sha}","git_commits_url":"https://api.github.com/repos/skywinder/changelog_test/git/commits{/sha}","comments_url":"https://api.github.com/repos/skywinder/changelog_test/comments{/number}","issue_comment_url":"https://api.github.com/repos/skywinder/changelog_test/issues/comments{/number}","contents_url":"https://api.github.com/repos/skywinder/changelog_test/contents/{+path}","compare_url":"https://api.github.com/repos/skywinder/changelog_test/compare/{base}...{head}","merges_url":"https://api.github.com/repos/skywinder/changelog_test/merges","archive_url":"https://api.github.com/repos/skywinder/changelog_test/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/skywinder/changelog_test/downloads","issues_url":"https://api.github.com/repos/skywinder/changelog_test/issues{/number}","pulls_url":"https://api.github.com/repos/skywinder/changelog_test/pulls{/number}","milestones_url":"https://api.github.com/repos/skywinder/changelog_test/milestones{/number}","notifications_url":"https://api.github.com/repos/skywinder/changelog_test/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/skywinder/changelog_test/labels{/name}","releases_url":"https://api.github.com/repos/skywinder/changelog_test/releases{/id}","deployments_url":"https://api.github.com/repos/skywinder/changelog_test/deployments","created_at":"2015-03-04T16:53:42Z","updated_at":"2015-03-05T10:27:55Z","pushed_at":"2016-01-05T10:09:37Z","git_url":"git://github.com/skywinder/changelog_test.git","ssh_url":"git@github.com:skywinder/changelog_test.git","clone_url":"https://github.com/skywinder/changelog_test.git","svn_url":"https://github.com/skywinder/changelog_test","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"open_issues_count":0,"forks":1,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/1"},"html":{"href":"https://github.com/skywinder/changelog_test/pull/1"},"issue":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/1"},"comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/skywinder/changelog_test/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/skywinder/changelog_test/statuses/ed946923079ed505943ad1fa03940263a8c0bd13"}}}]' + http_version: + recorded_at: Thu, 19 May 2016 18:16:32 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_commit/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_commit/when_API_call_is_valid.yml new file mode 100644 index 0000000..776a372 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_commit/when_API_call_is_valid.yml @@ -0,0 +1,76 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/git/commits/decfe840d1a1b86e0c28700de5362d3365a29555 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 19:00:27 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '43' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"391047306d50dcb964a83bc94e45c33d" + last-modified: + - Thu, 16 Jul 2015 12:11:01 GMT + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - ef96c2e493b28ffea49b891b085ed2dd + x-github-request-id: + - 6C2F0F69:7F90:A1B77F1:573E0D4B + body: + encoding: ASCII-8BIT + string: '{"sha":"decfe840d1a1b86e0c28700de5362d3365a29555","url":"https://api.github.com/repos/skywinder/changelog_test/git/commits/decfe840d1a1b86e0c28700de5362d3365a29555","html_url":"https://github.com/skywinder/changelog_test/commit/decfe840d1a1b86e0c28700de5362d3365a29555","author":{"name":"Petr + Korolev","email":"sky4winder@gmail.com","date":"2015-07-16T12:11:01Z"},"committer":{"name":"Petr + Korolev","email":"sky4winder@gmail.com","date":"2015-07-16T12:11:01Z"},"tree":{"sha":"0699c15258a7c2b2e157051fe19851d4f705cac8","url":"https://api.github.com/repos/skywinder/changelog_test/git/trees/0699c15258a7c2b2e157051fe19851d4f705cac8"},"message":"fix + #14","parents":[{"sha":"7ec095e5e3caceacedabf44d0b9b10da17c92e51","url":"https://api.github.com/repos/skywinder/changelog_test/git/commits/7ec095e5e3caceacedabf44d0b9b10da17c92e51","html_url":"https://github.com/skywinder/changelog_test/commit/7ec095e5e3caceacedabf44d0b9b10da17c92e51"}]}' + http_version: + recorded_at: Thu, 19 May 2016 19:00:30 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_date_of_tag/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_date_of_tag/when_API_call_is_valid.yml new file mode 100644 index 0000000..c0e4305 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_date_of_tag/when_API_call_is_valid.yml @@ -0,0 +1,76 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/git/commits/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:25:19 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '44' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"70e24649f6eca2e822b32129a2e73312" + last-modified: + - Wed, 04 Mar 2015 19:01:48 GMT + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - cee4c0729c8e9147e7abcb45b9d69689 + x-github-request-id: + - 6C2F0F69:7F8E:5B42511:573E050F + body: + encoding: ASCII-8BIT + string: '{"sha":"a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90","url":"https://api.github.com/repos/skywinder/changelog_test/git/commits/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90","html_url":"https://github.com/skywinder/changelog_test/commit/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90","author":{"name":"Petr + Korolev","email":"sky4winder@gmail.com","date":"2015-03-04T19:01:48Z"},"committer":{"name":"Petr + Korolev","email":"sky4winder@gmail.com","date":"2015-03-04T19:01:48Z"},"tree":{"sha":"1ff276df2dcd58d90a1267ff219ced923acc3da8","url":"https://api.github.com/repos/skywinder/changelog_test/git/trees/1ff276df2dcd58d90a1267ff219ced923acc3da8"},"message":"Merge + branch ''hotfix/fix-3''","parents":[{"sha":"6a28f64bbe783d7ac171c38cefcb109e1b8e0911","url":"https://api.github.com/repos/skywinder/changelog_test/git/commits/6a28f64bbe783d7ac171c38cefcb109e1b8e0911","html_url":"https://github.com/skywinder/changelog_test/commit/6a28f64bbe783d7ac171c38cefcb109e1b8e0911"},{"sha":"68445f5d2bd8df612e25b37058aea7f123439fa1","url":"https://api.github.com/repos/skywinder/changelog_test/git/commits/68445f5d2bd8df612e25b37058aea7f123439fa1","html_url":"https://github.com/skywinder/changelog_test/commit/68445f5d2bd8df612e25b37058aea7f123439fa1"}]}' + http_version: + recorded_at: Thu, 19 May 2016 18:25:23 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_events_async/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_events_async/when_API_call_is_valid.yml new file mode 100644 index 0000000..e3a5db3 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_fetch_events_async/when_API_call_is_valid.yml @@ -0,0 +1,71 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/issues/14/events + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:19:40 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '45' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"9e001bcf4bf22abb6602f57d114ce205" + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - bae57931a6fe678a3dffe9be8e7819c8 + x-github-request-id: + - 6C2F0F69:7F91:BA87215:573E03BC + body: + encoding: ASCII-8BIT + string: '[{"id":357462189,"url":"https://api.github.com/repos/skywinder/changelog_test/issues/events/357462189","actor":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"event":"referenced","commit_id":"decfe840d1a1b86e0c28700de5362d3365a29555","commit_url":"https://api.github.com/repos/skywinder/changelog_test/commits/decfe840d1a1b86e0c28700de5362d3365a29555","created_at":"2015-07-16T12:21:16Z"},{"id":357462542,"url":"https://api.github.com/repos/skywinder/changelog_test/issues/events/357462542","actor":{"login":"skywinder","id":3356474,"avatar_url":"https://avatars.githubusercontent.com/u/3356474?v=3","gravatar_id":"","url":"https://api.github.com/users/skywinder","html_url":"https://github.com/skywinder","followers_url":"https://api.github.com/users/skywinder/followers","following_url":"https://api.github.com/users/skywinder/following{/other_user}","gists_url":"https://api.github.com/users/skywinder/gists{/gist_id}","starred_url":"https://api.github.com/users/skywinder/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/skywinder/subscriptions","organizations_url":"https://api.github.com/users/skywinder/orgs","repos_url":"https://api.github.com/users/skywinder/repos","events_url":"https://api.github.com/users/skywinder/events{/privacy}","received_events_url":"https://api.github.com/users/skywinder/received_events","type":"User","site_admin":false},"event":"closed","commit_id":"decfe840d1a1b86e0c28700de5362d3365a29555","commit_url":"https://api.github.com/repos/skywinder/changelog_test/commits/decfe840d1a1b86e0c28700de5362d3365a29555","created_at":"2015-07-16T12:21:42Z"}]' + http_version: + recorded_at: Thu, 19 May 2016 18:19:43 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_API_call_is_valid.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_API_call_is_valid.yml new file mode 100644 index 0000000..16aa40d --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_API_call_is_valid.yml @@ -0,0 +1,73 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/tags + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + response: + status: + code: 200 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:14:27 GMT + content-type: + - application/json; charset=utf-8 + transfer-encoding: + - chunked + connection: + - close + status: + - 200 OK + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '49' + x-ratelimit-reset: + - '1463684440' + cache-control: + - public, max-age=60, s-maxage=60 + vary: + - Accept, Accept-Encoding + etag: + - W/"012a78339961d33825609e388f651a3e" + last-modified: + - Thu, 05 Mar 2015 10:27:55 GMT + x-github-media-type: + - github.v3; format=json + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-served-by: + - a7f8a126c9ed3f1c4715a34c0ddc7290 + x-github-request-id: + - 6C2F0F69:1C0C4:91D639E:573E0283 + body: + encoding: ASCII-8BIT + string: '[{"name":"v0.0.3","zipball_url":"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.3","tarball_url":"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.3","commit":{"sha":"a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90","url":"https://api.github.com/repos/skywinder/changelog_test/commits/a0cba2b1a1ea9011ab07ee1ac140ba5a5eb8bd90"}},{"name":"v0.0.2","zipball_url":"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.2","tarball_url":"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.2","commit":{"sha":"9b35bb13dcd15b68e7bcbf10cde5eb937a54f710","url":"https://api.github.com/repos/skywinder/changelog_test/commits/9b35bb13dcd15b68e7bcbf10cde5eb937a54f710"}},{"name":"v0.0.1","zipball_url":"https://api.github.com/repos/skywinder/changelog_test/zipball/v0.0.1","tarball_url":"https://api.github.com/repos/skywinder/changelog_test/tarball/v0.0.1","commit":{"sha":"4c2d6d1ed58bdb24b870dcb5d9f2ceed0283d69d","url":"https://api.github.com/repos/skywinder/changelog_test/commits/4c2d6d1ed58bdb24b870dcb5d9f2ceed0283d69d"}},{"name":"0.0.4","zipball_url":"https://api.github.com/repos/skywinder/changelog_test/zipball/0.0.4","tarball_url":"https://api.github.com/repos/skywinder/changelog_test/tarball/0.0.4","commit":{"sha":"ece0c3ab7142b21064b885061c55ede00ef6ce94","url":"https://api.github.com/repos/skywinder/changelog_test/commits/ece0c3ab7142b21064b885061c55ede00ef6ce94"}}]' + http_version: + recorded_at: Thu, 19 May 2016 18:14:31 GMT +recorded_with: VCR 3.0.1 diff --git a/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_wrong_token_provided.yml b/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_wrong_token_provided.yml new file mode 100644 index 0000000..0fd0646 --- /dev/null +++ b/spec/vcr/GitHubChangelogGenerator_Fetcher/_github_fetch_tags/when_wrong_token_provided.yml @@ -0,0 +1,65 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.github.com/repos/skywinder/changelog_test/tags?access_token=0000000000000000 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1 + Accept-Charset: + - utf-8 + User-Agent: + - Github API Ruby Gem 0.13.1 + Authorization: + - token 0000000000000000 + response: + status: + code: 401 + message: + headers: + server: + - GitHub.com + date: + - Thu, 19 May 2016 18:14:28 GMT + content-type: + - application/json; charset=utf-8 + content-length: + - '83' + connection: + - close + status: + - 401 Unauthorized + x-github-media-type: + - github.v3; format=json + x-ratelimit-limit: + - '60' + x-ratelimit-remaining: + - '48' + x-ratelimit-reset: + - '1463684440' + access-control-expose-headers: + - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval + access-control-allow-origin: + - "*" + content-security-policy: + - default-src 'none' + strict-transport-security: + - max-age=31536000; includeSubdomains; preload + x-content-type-options: + - nosniff + x-frame-options: + - deny + x-xss-protection: + - 1; mode=block + x-github-request-id: + - 6C2F0F69:1C0C3:706D8F5:573E0284 + body: + encoding: UTF-8 + string: '{"message":"Bad credentials","documentation_url":"https://developer.github.com/v3"}' + http_version: + recorded_at: Thu, 19 May 2016 18:14:31 GMT +recorded_with: VCR 3.0.1