Skip to content

Releases: gruntwork-io/git-xargs

v0.1.7

10 May 14:48
c630589
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.6...v0.1.7

v0.1.6

05 May 15:46
c2692e2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.5...v0.1.6

v0.1.5

30 Mar 18:36
4c774af
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.3...v0.1.5

v0.1.3

14 Dec 14:05
988669f
Compare
Choose a tag to compare

Modules affected

Description

  • Correct readme referencing incorrect flag name: --max-pull-request-retries -> --max-pr-retries

Special thanks

Special thanks to the following users for their contribution!

Related links

v0.1.2

06 Nov 15:43
f68178c
Compare
Choose a tag to compare

Modules affected

Description

  • Use go install in instructions instead of go get
  • Update Installation instructions header text
  • Update codeowners
  • Implement support for requesting reviewers

Special thanks

Special thanks to the following users for their contribution!

Related links

v0.1.1

28 Jul 17:29
d7c7074
Compare
Choose a tag to compare

Modules affected

Description

  • Fix --skip-pull-requests behavior

Related links

v0.1.0

21 Jul 14:06
8a113aa
Compare
Choose a tag to compare

Modules affected

Description

  • Prepend [skip ci] to commit messages by default
  • Fix concurrency bug(s)
  • Prettify run report with pterm.sh tables / styles

Migration guide

  • The --max-concurrent-repos flag has been removed. Please update any earlier git-xargs invocations / scripts that use that flag to remove it.
  • By default, git-xargs will now prepend [skip ci] to all commit messages, unless you pass the new --no-skip-ci flag. This feature is intended to prevent large git-xargs jobs from causing excessively costly continuous integration (CI) jobs.

Related links

v0.0.16

06 Jul 15:14
9464c8e
Compare
Choose a tag to compare

Description

  • Updated the PR template so you get a nice little form.
  • Updated codeowners so that more people are notified.
  • Updated the table outputs to be markdown friendly. This replaces the pipe | and dash - symbols in the printed output.

Related links

v0.0.15

25 May 14:54
ca77997
Compare
Choose a tag to compare

Description

This release brings git-xargs functionality in line with GitHub's API recommendations for integrators regarding rate limits.. This means that git-xargs now respects GitHub API rate limits and reacts to related header values that GitHub may send when rate limiting a client, in order to intelligently slow down and stagger open pull request API calls.

To further assist in running rate-limit-compliant jobs, git-xargs now features two separate processing channels for two types of work:

  1. Work that can be performed in parallel as quickly as possible
  2. Work that needs to be treated sensitively in observance of rate limits (such as making open pull request API calls to GitHub)

Work that can be performed in parallel is still done as quickly as possible. Pull requests API calls that are generated by a git-xargs run are now staggered and opened serially at the end of a run. In addition, open pull request API calls that fail due to rate limiting are now automatically retried, with configurable back-off behavior.

In addition, new flags have been added to assist with configuring your git-xargs jobs so that they do not trip GitHub rate limits.

Please see the new section of the git-xargs README titled "Rate Limiting" for more information.

Related links

v0.0.14

18 Feb 16:53
3dc1d1a
Compare
Choose a tag to compare

Description

  • Support for overriding base branch names. Adds a new optional --base-branch-name flag. Pass this flag to override the base branch to target pull requests against for all repositories in a given run of git-xargs.

Special thanks

Special thanks to the following users for their contribution!

Related links