Commit graph

225 commits

Author SHA1 Message Date
Keyman Build Agent
bc0bd37123 auto: increment beta version to 14.0.210 2020-12-14 16:17:15 -05:00
Keyman Build Agent
d5648fa418 auto: increment beta version to 14.0.209 2020-12-14 16:05:54 -05:00
Keyman Build Agent
b993ef3056 auto: increment beta version to 14.0.208 2020-12-14 15:54:24 -05:00
Keyman Build Agent
9c34cbcc5a auto: increment beta version to 14.0.207 2020-12-14 15:45:28 -05:00
Keyman Build Agent
1ec1654f81 auto: increment master version to 14.0.206 2020-12-14 13:01:01 -05:00
Keyman Build Agent
20d06c526d auto: increment master version to 14.0.205 2020-12-11 13:00:58 -05:00
Keyman Build Agent
dbef133275 auto: increment master version to 14.0.204 2020-12-10 13:01:07 -05:00
Keyman Build Agent
3b26cf6fb8 auto: increment master version to 14.0.203 2020-12-09 13:01:58 -05:00
Keyman Build Agent
9751144d6f auto: increment master version to 14.0.202 2020-12-08 13:01:07 -05:00
Keyman Build Agent
5382ebc3a6 auto: increment master version to 14.0.201 2020-12-07 13:01:10 -05:00
Keyman Build Agent
2e4ba2c678 auto: increment master version to 14.0.200 2020-12-06 22:39:17 -05:00
Keyman Build Agent
63974fc99c auto: increment master version to 14.0.199 2020-12-06 20:53:09 -05:00
Keyman Build Agent
9c5d2f322d auto: increment master version to 14.0.198 2020-12-04 13:01:04 -05:00
Keyman Build Agent
f977740b06 auto: increment master version to 14.0.197 2020-12-03 13:01:01 -05:00
Keyman Build Agent
77b13a19ba auto: increment master version to 14.0.196 2020-12-02 16:57:59 -05:00
Keyman Build Agent
5d4bbcfc92 auto: increment master version to 14.0.195 2020-12-01 13:01:13 -05:00
Keyman Build Agent
c1ae431217 auto: increment master version to 14.0.194 2020-11-30 13:01:10 -05:00
Keyman Build Agent
c38655922f auto: increment master version to 14.0.193 2020-11-28 13:01:09 -05:00
Keyman Build Agent
8805be7d1f auto: increment master version to 14.0.192 2020-11-27 13:01:30 -05:00
Keyman Build Agent
c2392511f1 auto: increment master version to 14.0.191 2020-11-26 13:01:12 -05:00
Marc Durdin
d41a047942 chore: address review comments 2020-11-26 15:41:29 +11:00
Marc Durdin
51c69e2894 chore(common): fixup missing history
Discovered that some history entries were missing. This was because we
were calling `--first-parent` on `git log` in fixupHistory.ts. (I will
fix that in the next commit.)

I manually constructed the remaining history by hacking up
fixupHistory.ts to pull together the additional entries. A bit scary but
it worked.

For ref, I threw together the following PHP to get the list of missing
PRs:

```
<?php
  $foo = shell_exec("git log --merges --oneline --decorate=short master...release-14.0.3-alpha | grep -E \"#|-alpha\"");
  $foo = explode("\n", $foo);

  $version = '14.0.187';

  $history = file_get_contents('HISTORY.md');

  foreach($foo as $line) {
    $PR = null;
    if(preg_match("/#(\d\d\d\d)/", $line, $matches)) {
      // Is this entry a PR
      if(!preg_match("/keymanapp\/auto\/version-master/", $line)) {
        // Skip automatic version upgrades
        $PR = $matches[1];
      }
    }
    if(preg_match('/\(tag: release-(\d+\.\d+\.\d+)-alpha\)/', $line, $matches)) {
      // Was there a version tag here?
      $version = $matches[1];
    }
    if($PR) {
      if(strpos($history, "(#$PR)") === false ) {
        echo " $version: $PR [$line]\n";
      }
    }
  }
?>
```

And I munged up fixupHistory.ts to just lookup each PR returned from
that report and splice it into HISTORY.md. That hackery is so awful I am
not sharing it here.
2020-11-26 09:44:36 +11:00
Keyman Build Agent
5f32b941ad auto: increment master version to 14.0.190 2020-11-25 13:01:09 -05:00
Darcy Wong
bb424b8f50 chore: Split (android,ios) scope
* Split (android,ios) scopes into separate lines so that App store submission won't get blocked
* fix chore(mac)
2020-11-25 14:26:52 +07:00
Darcy Wong
f19cfff3f4 chore: address review comments 2020-11-25 14:15:57 +07:00
Darcy Wong
1664c8439e chore: cleanup common scopes 2020-11-25 13:07:38 +07:00
Darcy Wong
c1e74dd51e chore: cleanup web/utils 2020-11-25 12:47:16 +07:00
Darcy Wong
605656adc4 chore: cleanup lmlayer scopes 2020-11-25 12:02:37 +07:00
Keyman Build Agent
976d47a006 auto: increment master version to 14.0.189 2020-11-24 13:01:13 -05:00
Darcy Wong
acd3e9c16f chore(common): Fix one more linux line 2020-11-24 14:01:13 +07:00
Darcy Wong
3fdbac7005 chore(common): additional cleanup to HISTORY.md
Follow-on to #3926

* Use `oem/fv/ios` and `oem/fv/android` for FV changes
* Add missing commit types
* Changes `deps` to use scopes (dependabot changes)
2020-11-24 11:30:51 +07:00
Darcy Wong
6efcaf9f23
Merge pull request #3926 from keymanapp/chore/cleanup-history-for-commit-types
chore(common): Clean up commit types in HISTORY.md
2020-11-24 06:17:25 +07:00
Darcy Wong
dfe17415f8
Update HISTORY.md
Co-authored-by: Marc Durdin <marc@durdin.net>
2020-11-24 06:17:04 +07:00
Keyman Build Agent
8ceb6481d4 auto: increment master version to 14.0.188 2020-11-23 13:01:02 -05:00
Darcy Wong
6b9c627665 chore(common): Clean up commit types in HISTORY.md 2020-11-23 13:16:05 +07:00
Keyman Build Agent
d4dfbda933 auto: increment master version to 14.0.187 2020-11-20 13:01:04 -05:00
Keyman Build Agent
4a508cf78f auto: increment master version to 14.0.186 2020-11-19 13:01:02 -05:00
Keyman Build Agent
91adc42fa8 auto: increment master version to 14.0.185 2020-11-18 13:01:34 -05:00
Keyman Build Agent
d5d3907212 auto: increment master version to 14.0.184 2020-11-17 13:01:06 -05:00
Keyman Build Agent
8aa14ddc86 auto: increment master version to 14.0.183 2020-11-16 13:01:13 -05:00
Keyman Build Agent
fad5d0f5fa auto: increment master version to 14.0.182 2020-11-13 13:01:03 -05:00
Keyman Build Agent
0dd08a5b7e auto: increment master version to 14.0.181 2020-11-12 15:26:26 -05:00
Keyman Build Agent
8e2772843d auto: increment master version to 14.0.180 2020-11-12 13:00:59 -05:00
Keyman Build Agent
c94de9e1b9 auto: increment master version to 14.0.179 2020-11-10 13:01:11 -05:00
Keyman Build Agent
0ad56db6c9 auto: increment master version to 14.0.178 2020-11-07 13:00:58 -05:00
Keyman Build Agent
7c37caa0b9 auto: increment master version to 14.0.177 2020-11-05 13:01:12 -05:00
Keyman Build Agent
56e0c29815 auto: increment master version to 14.0.176 2020-11-04 13:01:12 -05:00
Keyman Build Agent
f8e5f5771a auto: increment master version to 14.0.175 2020-11-03 16:58:12 -05:00
Keyman Build Agent
ad895dfd35 auto: increment master version to 14.0.174 2020-10-30 14:16:26 -04:00
Keyman Build Agent
26dff1bb94 auto: increment master version to 14.0.173 2020-10-29 14:01:00 -04:00