{"id":18088674,"url":"https://github.com/jish/changes_since","last_synced_at":"2026-01-20T15:07:30.401Z","repository":{"id":18272021,"uuid":"21434767","full_name":"jish/changes_since","owner":"jish","description":null,"archived":false,"fork":false,"pushed_at":"2014-04-18T16:36:35.000Z","size":284,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-06T02:14:40.531Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jish.png","metadata":{"files":{"readme":"README.md","changelog":"changes_since.gemspec","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-02T18:03:54.000Z","updated_at":"2014-07-17T21:23:38.000Z","dependencies_parsed_at":"2022-08-28T08:22:07.140Z","dependency_job_id":null,"html_url":"https://github.com/jish/changes_since","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jish/changes_since","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jish%2Fchanges_since","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jish%2Fchanges_since/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jish%2Fchanges_since/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jish%2Fchanges_since/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jish","download_url":"https://codeload.github.com/jish/changes_since/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jish%2Fchanges_since/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28606139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T14:45:23.139Z","status":"ssl_error","status_checked_at":"2026-01-20T14:44:16.929Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-31T17:14:06.532Z","updated_at":"2026-01-20T15:07:30.373Z","avatar_url":"https://github.com/jish.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/hashwin/changes_since.svg?branch=master)](https://travis-ci.org/hashwin/changes_since)\n\nchanges_since\n=============\nA Changelog tool that helps you display a neat changelog of all pull requests merged since a certain tag.\nThis works well if you use a pull request based process, i.e. every commit made to master is via a pull request.\n\nExample:\n\nFrom https://github.com/resque/resque\n\n`ChangesSince.fetch('v1.25.2')`\n```\n* won't be needing rack-test as well (Dan Buch)\n* Extracted a new WorkerQueueList class out of Rescue::Worker (Einar Jonsson)\n* implementation of Backend connection with Hash (Ryan Biesemeyer)\n* update readme.md with hooks link (Ryan Biesemeyer)\n* speed up test suite (Ryan Biesemeyer)\n* Added worker_registry_tests (Ryan Biesemeyer)\n* add info about queue priority to readme (Ryan Biesemeyer)\n* Fix line and file endings. (Ryan Biesemeyer)\n* increase coverage for process coordinator (Ryan Biesemeyer)\n* Add Resque.configure documentation to README (Ryan Biesemeyer)\n...\n```\nIf you want to use enhanced functionality, you can tag pull requests with #bug, #internal, or #public\nThe 'Unclassified' would then change to Bug, Internal or Public respectively, adding the option :tags =\u003e true.\n\nThere are some additional options you can use\n\nAuthor filter:\n\n`ChangesSince.fetch('v1.25.2', { :author_filter =\u003e [\"Dan Buch\", \"Steve Klabnik\"] })`\n```\n* won't be needing rack-test as well (Dan Buch)\n* Fixed typos (Steve Klabnik)\n* Make sure the filicide is justified (Steve Klabnik)\n* Spelling mistake correction. (Steve Klabnik)\n* Fix spelling of \"languages\" in readme (Steve Klabnik)\n* Fix daemonize option (Steve Klabnik)\n* Add wrapper for JSON encoding exceptions because yay consistency (Steve Klabnik)\n* The resque-2.0 tests are so noisy! (Steve Klabnik)\n...\n```\n\n`ChangesSince.fetch('v1.25.2', { :all =\u003e true })` - Tries to extract additional interesting commits\n\nYou can also pass in some team logic.\n\nExample:\n\n`TEAMS = {\n  \"Team 1\" =\u003e [\"Dan Buch\", \"Einar Jonsson\"],\n  \"Team 2\" =\u003e [\"Ryan Biesemeyer\", \"Steve Klabnik\"]\n}`\n\n`ChangesSince.fetch('v1.25.2', {}, TEAMS)`\n```\n*Team 1*\n\n* won't be needing rack-test as well (Dan Buch)\n* Extracted a new WorkerQueueList class out of Rescue::Worker (Einar Jonsson)\n\n*Team 2*\n\n* update readme.md with hooks link (Ryan Biesemeyer)\n* speed up test suite (Ryan Biesemeyer)\n* add info about queue priority to readme (Ryan Biesemeyer)\n* Added worker_registry_tests (Ryan Biesemeyer)\n* Add Resque.configure documentation to README (Ryan Biesemeyer)\n* Typo in comment (Ryan Biesemeyer)\n* Attempt to infer queue from worker class (Ryan Biesemeyer)\n* increase coverage for process coordinator (Ryan Biesemeyer)\n* Fix line and file endings. (Ryan Biesemeyer)\n* implementation of Backend connection with Hash (Ryan Biesemeyer)\n* Feature/exits for real (Steve Klabnik)\n* Make sure the filicide is justified (Steve Klabnik)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjish%2Fchanges_since","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjish%2Fchanges_since","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjish%2Fchanges_since/lists"}