| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-09-30 | Add `--zone` option to `VCS` | Nobuyoshi Nakada | |
| Which controls the timezone offset for `RUBY_RELEASE_DATE`. Notes: Merged: https://github.com/ruby/ruby/pull/6473 | |||
| 2022-09-30 | Introduce `VCS::Null` for fallback | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/6473 | |||
| 2022-09-30 | Check for the availability of the command when detecting | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/6473 | |||
| 2022-09-30 | Pull up `VCS.short_revision` from `VCS::SVN` | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/6473 | |||
| 2022-09-17 | Remove git command existence check again | Takashi Kokubun | |
| With 33c6dd2cc89c27bbf406508ec39038a181fb99bc, it's no longer necessary. This is what I got on openbsd-current: ``` -bash-5.1$ git -v unknown option: -v usage: git [--version] [--help] [-C <path>] [-c <name>=<value>] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare] [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] [--super-prefix=<path>] [--config-env=<name>=<envvar>] <command> [<args>] -bash-5.1$ git version git version 2.35.1 ``` | |||
| 2022-09-17 | Fallback to VCS.release_date on VCS::NotFoundError | Takashi Kokubun | |
| when -q is given. One of the RubyCI servers, freebsd12, had a broken git environment: ``` $ git show fatal: detected dubious ownership in repository at '/usr/home/chkbuild/chkbuild/tmp/build/20220917T123002Z/ruby' To add an exception for this directory, call: git config --global --add safe.directory /usr/home/chkbuild/chkbuild/tmp/build/20220917T123002Z/ruby ``` tool/lib/vcs.rb doesn't work normally for that server. Even for such cases, we'd like to generate a usable revision.h. So this patch lets revision.h fallback to default VCS.release_date when VCS::NotFoundError is raised. | |||
| 2022-09-17 | Auto-generate the release date on version.h from git CommitDate (#6382) | Takashi Kokubun | |
| * Auto-generate the release date on version.h from git CommitDate * Generate revision.h on mswin Notes: Merged-By: k0kubun <takashikkbn@gmail.com> | |||
| 2022-09-14 | Replace "Fixes"/"Fixed" in commit logs as well as vcs.rb [ci skip] | Nobuyoshi Nakada | |
| Use the same regexp to replace "(#NNNN)" and "GH-NNNN" style references in vcs.rb, too. | |||
| 2022-09-01 | VCS#revision_header: Make arguments optional | Nobuyoshi Nakada | |
| 2022-09-01 | Update revision.h in packages using `VCS#revision_header` | Nobuyoshi Nakada | |
| 2022-09-01 | Extract `VCS#revision_header` | Nobuyoshi Nakada | |
| 2022-06-22 | vcs.rb: ignore configuration files get rid of aliases [ci skip] | Nobuyoshi Nakada | |
| 2022-06-22 | vcs.rb: just one log to check if `--date` option works [ci skip] | Nobuyoshi Nakada | |
| 2022-06-22 | vcs.rb: show diagnostic/progressing messages when debugging [ci skip] | Nobuyoshi Nakada | |
| 2021-09-04 | Expand upstream issue numbers to URLs in ChangeLog | Nobuyoshi Nakada | |
| 2021-09-03 | Add some punctuations as regexp separators to fix commit logs | Nobuyoshi Nakada | |
| 2021-07-26 | Prepend DebugSystem to VCS class only | Nobuyoshi Nakada | |
| And revert 24e5f1c982966c379220b1bbb26b4e0320180fa1, pepending to Kernel did not affect the top level methods before 3.0. | |||
| 2021-02-08 | vcs.rb: update the given option to VCS.detect by keyword arguments | Nobuyoshi Nakada | |
| 2021-02-08 | vcs.rb: added `base_url` keyword option to GIT#export_changelog | Nobuyoshi Nakada | |
| 2021-02-08 | vcs.rb: improved export_changelog | Nobuyoshi Nakada | |
| * arguments are optional * `path` may be passed as a keyword argument * `nil` or `"-"` path means stdout | |||
| 2021-01-26 | vcs.rb: fix for baseruby 2.2 | Nobuyoshi Nakada | |
| 2021-01-26 | vcs.rb: support `d` command in log-fix | Nobuyoshi Nakada | |
| 2021-01-26 | vcs.rb: allow log-fix to insert an empty line | Nobuyoshi Nakada | |
| 2021-01-23 | vcs.rb: continue just with warning if failed to fetch notes | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4109 | |||
| 2021-01-23 | vcs.rb: include commit info in ChangeLog | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4109 | |||
| 2021-01-21 | Support `i` command in log-fix | Nobuyoshi Nakada | |
| 2020-12-25 | Follow up on variations of the development start messages [ci skip] | Nobuyoshi Nakada | |
| 2020-07-10 | Show messages around the line when replacing failed in format_changelog | Kazuhiro NISHIYAMA | |
| 2020-05-28 | Remove Ruby <2.2 support from tool/lib/vcs.rb | Jeremy Evans | |
| BASERUBY now requires at least Ruby 2.2, so there is no point trying to support older ruby versions here. Notes: Merged: https://github.com/ruby/ruby/pull/2947 | |||
| 2020-03-08 | Specify explicit separator not to be affected by $; | Nobuyoshi Nakada | |
| 2020-02-01 | Indent ChangeLog contents [ci skip] | Nobuyoshi Nakada | |
| Separate each entries more obviously as `page-delimiter' works fine. | |||
| 2020-02-01 | Explicitly set the encoding of ChangeLog file to UTF-8 [ci skip] | Nobuyoshi Nakada | |
| 2020-01-12 | vcs.rb: Allow to empty a part in commit log | Nobuyoshi Nakada | |
| 2020-01-09 | vcs.rb: Get rid of Kernel#open | Nobuyoshi Nakada | |
| 2019-12-23 | Fix typo in commit logs by log-fix notes | Nobuyoshi Nakada | |
| 2019-10-22 | make-snapshot: Regexp#match raises on nil now | Nobuyoshi Nakada | |
| 2019-10-03 | vcs.rb: fix to export git-svn version | Nobuyoshi Nakada | |
| * Use the given branch name instead of implicit 'HEAD". * Format like as git-svn when `from` or `to` is SVN revision number. | |||
| 2019-09-15 | Try to fetch commits notes to the source tree automatically | Nobuyoshi Nakada | |
| [Bug #16167] | |||
| 2019-09-15 | make-snapshot: no merge commits in ChangeLog | Nobuyoshi Nakada | |
| Parents commit hashs in logs of merge commits are abbreviated to necessary length depending on the repositories. Exclude merge commits from ChangeLog to make it stable. | |||
| 2019-09-15 | make-snapshot: export ChangeLog from srcdir | Nobuyoshi Nakada | |
| 2019-09-14 | Continue to export even if no notes/commits | Nobuyoshi Nakada | |
| Just exporting may not imply exporting ChangeLog which needs notes/commits. [Bug #16167] | |||
| 2019-09-08 | Suppress detached head warning | Nobuyoshi Nakada | |
| 2019-09-07 | Fix error when checking file modified with git-svn | Nobuyoshi Nakada | |
| 2019-09-07 | Use `git describe --contains` for tags | Nobuyoshi Nakada | |
| 2019-09-07 | Added more debug outputs from VCS::GIT | Nobuyoshi Nakada | |
| 2019-09-07 | Separated VCS.define_options for common VCS options | Nobuyoshi Nakada | |
| 2019-09-06 | VCS::GIT no longer accepts remote repository | Nobuyoshi Nakada | |
| 2019-09-05 | Separate VCS::DEBUG_OUT | Nobuyoshi Nakada | |
| 2019-09-03 | --date=iso-local does not work with old git | Nobuyoshi Nakada | |
| 2019-09-03 | Use -z option for git-log | Nobuyoshi Nakada | |
