Commit graph

949 commits

Author SHA1 Message Date
HonkingGoose
cc016ac14c
docs: add encodeURIComponent, replace handlebars helpers (#12672) 2022-01-11 10:50:48 +00:00
Matthias Schoettle
895a85a2c3
docs: Heading level of Azure DevOps in Running Renovate docs (#13475) 2022-01-11 02:39:44 +00:00
HonkingGoose
013189bf18
docs(dependency-pinning): use document fragment (#13464) 2022-01-10 14:45:36 +01:00
renovate[bot]
05f2ca3b41
docs: update references to renovate/renovate to v31.21.2 (#13452)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-01-10 01:47:49 +00:00
HonkingGoose
576a7c5f74
docs(self-hosting examples): misc small fixes (#13426) 2022-01-08 14:14:31 +00:00
Marina
7770888184
feat: Add 'and', 'or' and 'containsString' to handlebar helpers (#13341) 2022-01-06 15:24:42 +00:00
HonkingGoose
65229c8896
docs(running renovate): update redirected links (#13381) 2022-01-05 13:35:08 +01:00
HonkingGoose
1fd2973521
docs: update redirected links (#13380) 2022-01-05 11:08:42 +00:00
HonkingGoose
da7092e0b3
docs: capitalize proper nouns (#13379) 2022-01-05 10:38:30 +00:00
marcovmun
d723d78f1c
feat(matchBaseBranches): Support regex expression (#13322) 2022-01-05 08:53:53 +01:00
HonkingGoose
5d513a976f
docs(self-hosting): update renovate/renovate refs (#13339) 2022-01-03 11:53:30 +00:00
HonkingGoose
10088e1748
docs: simplify text, use monospace for versions (#13338)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2022-01-03 11:42:58 +00:00
HonkingGoose
fb05c4c55f
docs(use cases): simplify text (#13337) 2022-01-03 12:31:50 +01:00
HonkingGoose
64e5c70fb3
docs(local development): add refactor PR test note (#13335) 2022-01-03 11:25:50 +01:00
renovate[bot]
df77a50ecf
docs: update references to renovate/renovate to v31.14.1 (#13330)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-01-03 00:24:00 +00:00
Shunsuke Suzuki
8b17120287
Fix a broken link (#13312) 2021-12-30 15:56:52 +00:00
renovate[bot]
a827c955f7
docs: update references to renovate/renovate to v31.13.2 (#13285)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-27 02:35:26 +00:00
Martin Herndl
99888d6f6b
feat(composer): ignore extension and library platform requirements only (#13154)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2021-12-23 08:12:14 +00:00
HonkingGoose
3bb3543911
docs(fetchReleaseNotes): improve description (#13235) 2021-12-22 14:03:09 +01:00
HonkingGoose
de5a756003
docs: warn against using rebaseWhen=never plus prCreation=not-pending (#13223) 2021-12-22 12:14:41 +01:00
renovate[bot]
2d8d88d9af
docs: update references to renovate/renovate to v31.7.0 (#13199)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-20 00:42:57 +00:00
HonkingGoose
6290c43120
docs(self-hosted experimental): monospace variable names (#13193) 2021-12-19 14:11:12 +01:00
Maxime Brunet
2e7e4c2d1d
docs(bitbucket-cloud): Document required permission scopes (#13179) 2021-12-19 04:18:42 +00:00
Sebastian Poxhofer
5eea19b5be
feat(autodiscover): reverts autodiscoverfilter as array (#13169)
This reverts commit a0a770338f.
2021-12-17 13:44:40 +01:00
Sebastian Poxhofer
a0a770338f
feat(autodiscover): allow array for autodiscoverfilter (#13100) 2021-12-16 15:12:35 +00:00
HonkingGoose
015a6b72c1
docs(use cases): improve and simplify text (#13142) 2021-12-16 13:52:23 +01:00
renovate[bot]
ae46e9eb3a
docs: update references to renovate/renovate to v31 (#13129)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-15 16:43:43 +00:00
Peter Valdemar Mørch
c7a7ffbeed
feat(config): allow exporting async config (#13075)
* feat(config): allow exporting async config (#13035)

module.exports can now be a function and it can be/return a Promise,
allowing the results of asynchronous operations to be used in the
configuration.

The discussion leading up to this PR in #13035 assumed that
module.exports had to be a plain object.

But this commit:

  commit 9aa97af5b3
  Author: Nejc Habjan <hab.nejc@gmail.com>
  Date:   Thu Dec 9 13:45:48 2021 +0100

      feat(config)!: parse JSON5/YAML self-hosted admin config (#12644)

      Adds support for alternative admin config file formats.

      BREAKING CHANGE: Renovate will now fail if RENOVATE_CONFIG_FILE is specified without a file extension

Had as an undocumented side effect, that it also handled transparenty
if module.exports was assigned a Promise. With that commit, the
promise will be await-ed so the resolved value is returned from
getConfig(). That was not the case before that commit.

So in this commit, configs that export functions are handled, and
test cases for both promises and functions have been added.

* Update lib/workers/global/config/parse/__fixtures__/fileAsyncFunction.js

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

* Update lib/workers/global/config/parse/__fixtures__/fileFunctionPromise.js

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

* feat(config): Fixed linter problems (#13035)

* feat(config)!: Add doc for JSON5/YAML self-hosted admin config (#12644)

The code was introduced in 9aa97af5b and here is the documentation to
go with it

* feat(config): Document config.js exports (#13035)

* feat(config): Rename file*.js to config*.js because they really are config (#13035)

* Update docs/usage/getting-started/running.md

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

* Update docs/usage/getting-started/running.md

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-12-13 21:51:36 +00:00
HonkingGoose
ca79bf76da
docs(updateNotScheduled): use monospaced font (#13086) 2021-12-13 15:06:46 +01:00
renovate[bot]
f3a4f1d638
docs: update references to renovate/renovate to v30 (#13076)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-13 01:16:17 +00:00
HonkingGoose
77aa6475f5
docs(self-hosted configuration): use monospaced font for word true (#13071)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-12-12 15:10:03 +00:00
HonkingGoose
2128878fa5
docs(extractVersion): improve grammar (#13072) 2021-12-12 15:59:33 +01:00
HonkingGoose
f7adaf732b
docs(self-hosting examples): improve text (#13070) 2021-12-12 14:44:50 +00:00
Rhys Arkins
a9d334874a
feat: binarySource=install (#12961) 2021-12-10 10:56:00 +00:00
Michael Kriese
e4c938b7a5
docs: release as asset (#11429)
* docs: prepare release as asset

* chore: cleanup

* fix: wrong extension

* fix: wrong logger

* fix: wrong path

* chore: clean and create tmp

* chore: fix types

* fix: update generation

* Update .github/workflows/build.yml

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

* Update lib/datasource/types.ts

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2021-12-09 21:12:49 +01:00
HonkingGoose
ffb023c2f2
docs(userStrings): simplify text (#13031) 2021-12-09 14:46:49 +01:00
Oleg Krivtsov
ec6077d343
feat(preset)!: decrease prConcurrentLimit to 10 (#12892)
BREAKING CHANGE: Configurations extending config:base will now default to maximum 10 concurrent PRs instead of 20.
2021-12-09 13:46:27 +01:00
Nejc Habjan
9aa97af5b3
feat(config)!: parse JSON5/YAML self-hosted admin config (#12644)
Adds support for alternative admin config file formats.

BREAKING CHANGE: Renovate will now fail if RENOVATE_CONFIG_FILE is specified without a file extension
2021-12-09 13:45:48 +01:00
Michael Kriese
ce241e170c
docs(presets): fix samples (#13029) 2021-12-09 12:44:47 +01:00
Ana Krivokapić
59026c262e
feat(config): Make ignore comments configurable (#12917) 2021-12-08 14:11:20 +01:00
HonkingGoose
341acf2724
docs: hyphenate word third-party (#12967) 2021-12-06 11:54:43 +00:00
HonkingGoose
97d4c22ef7
docs: one sentence per line, fix grammar (#12971) 2021-12-06 12:42:58 +01:00
HonkingGoose
fbc6a23519
docs: postUpgradeTasks self-hosted only (#12970) 2021-12-06 12:42:46 +01:00
renovate[bot]
536523327a
docs: update references to renovate/renovate to v29.32.4 (#12964)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-06 04:01:02 +00:00
HonkingGoose
dd7bb46723
docs(dashboard): fix missing syntax highlight (#12910)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-12-01 14:44:37 +00:00
renovate[bot]
dc9b5a0599
docs: update references to renovate/renovate to v29.29.0 (#12911)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-01 13:49:13 +01:00
HonkingGoose
dbca35b2b9
docs: add example of using matchCurrentVersion with a SemVer range (#12594) 2021-11-29 11:56:08 +01:00
Oleg Krivtsov
6293641326
feat(config): add safeguard timeouts (#12604)
* Add safeguard timeouts #2804

* Fix unit tests

* Fix unit tests

* Update lib/util/exec/index.ts

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>

* Changes after code review

* Fixes after merge

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-11-25 11:18:27 +00:00
Oleg Krivtsov
cb3d75ec4e
feat(platform/gitlab): confidential issues (#12728) 2021-11-24 05:14:24 +00:00
Andrei Nistor
d2d356c801
feat: Add jsonnet-bundler support (#12720) 2021-11-22 15:36:48 +00:00
HonkingGoose
5c717fadae
docs: one sentence per line, fix grammar (#12789) 2021-11-22 10:54:08 +01:00
Mathias Brodala
e01ccfdcd2
docs: Explain separateMajorMinor for package groups (#12787) 2021-11-22 07:45:32 +00:00
renovate[bot]
09c37ed691
docs: update references to renovate/renovate to v29.14.1 (#12782)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-11-22 05:03:27 +00:00
HonkingGoose
34d0d9e6dc
docs(nuget): small style and content improvements (#12781) 2021-11-21 16:38:45 +01:00
Sander Holvoet
988d324137
docs: clarify packages.config usage (#12779) 2021-11-21 13:43:08 +01:00
Michael Kriese
baaea71728
fix(config/preset): readd subpreset support (#12733) 2021-11-18 10:45:17 +01:00
Sergei Zharinov
cf95251dee
ci(build): Remove Python from Renovate dependencies (#12685)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-11-17 14:17:29 +00:00
renovate[bot]
da7c2cc7f5
docs: update references to renovate/renovate to v29.8.2 (#12654) 2021-11-15 12:08:12 +01:00
HonkingGoose
fba47734a5
docs(faq): reorder sections (#12666) 2021-11-15 12:04:40 +01:00
HonkingGoose
534cf577d5
docs(known limitations): improve example (#12663) 2021-11-15 11:57:09 +01:00
HonkingGoose
8620a8fb03
docs: add link to correct page (#12665) 2021-11-15 11:55:20 +01:00
HonkingGoose
920d27a625
docs: bump npm version used in example (#12660) 2021-11-15 11:44:25 +01:00
markussiebert
c80c7f3d0c
feat: add stringToPrettyJSON handlebars function (#12643) 2021-11-14 19:49:05 +00:00
Bob van de Vijver
4e07ddf526
feat(composer): Support install before update and configure plugin behaviour (#11990) 2021-11-14 06:02:53 +00:00
HonkingGoose
bd3f7cb6be
docs(development): update status label query (#12637) 2021-11-14 06:39:53 +01:00
Sébastien CROCQUESEL
1863c02e11
docs(configuration-options): fix replacementVersion (#12620) 2021-11-12 11:44:27 +00:00
Jamie Magee
98e7029090
feat: replace deprecated dependencies with their replacements (#5558)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-11-12 08:10:52 +00:00
Philippe Serhal
7059711cfc
docs(configuration-options): fix npmrcMerge typos (#12614) 2021-11-11 17:56:28 +01:00
Nejc Habjan
34f13fee3e
test: enforce valid JSON in fenced markdown code blocks (#12196) 2021-11-11 11:11:55 +01:00
Ana Krivokapić
51fa664ba4
docs: Update local-development.md (#12578) 2021-11-10 10:57:41 +00:00
Matúš Horváth
edab0842f4
docs: fix a small mistake in docs (#12569)
`packageUrls` is supposed to be `packageRules` here
2021-11-09 05:25:52 +01:00
renovate[bot]
cc190eda1d
docs: update references to renovate/renovate to v29 (#12545)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-11-08 02:37:49 +00:00
HonkingGoose
6a0f593db7
docs: clarify GitHub team review assignment (#12536) 2021-11-06 18:03:11 -07:00
Michael Todorovic
7579875415
feat: support preset versioning with git tags (#11565)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Sergei Zharinov <zharinov@users.noreply.github.com>
2021-11-05 13:12:47 +00:00
Rhys Arkins
4eadba6458 docs: improve descriptions 2021-11-05 08:10:27 +01:00
Rhys Arkins
2735ac3e80 fix(automerge)!: default platformAutomerge to false (#12487)
Flips platformAutomerge default to `false`.

BREAKING CHANGE: Platform automerge is no longer enabled by default.
2021-11-05 08:10:27 +01:00
Sergei Zharinov
f759f16520 fix(go)!: Don't fallback if GOPROXY used (#12407)
Current implementation tries to use GOPROXY and falls back to Renovate fetching mechanism if no releases found.

The new one is switches to GOPROXY implementaiton when environment variable is set and doesn't fallback.
However, when direct keyword is used, it will use Renovate-native mechanism that fetches directly from GitHub, etc.
When off keyword is encountered or no URLs left, we're done with no releases (i.e. no fallback to Renovate-native mechanism).

BREAKING CHANGE: Go modules lookups will now no longer fallback to Renovate native lookups if GOPROXY is configured and without "direct" explicitly configured.
2021-11-05 08:10:27 +01:00
Florian Greinacher
70700eedae feat(config)!: make host rule detection configurable and opt-in (#12294)
Add configuration option `detectHostRulesFromEnv`.

BREAKING CHANGE: `hostRules` are no longer automatically derived from env variables such as `NPM_X_TOKEN`. Set `detectHostRulesFromEnv=true` in config to re-enable same functionality.
2021-11-05 08:10:27 +01:00
ankitabhopatkar13
a5835a00de
fix(automerge): remove automergeType check for PR options (#12418) 2021-11-02 13:17:53 +00:00
renovate[bot]
561c751d30
docs: update references to renovate/renovate to v28.20.0 (#12415)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-11-01 05:21:53 +00:00
Tobias
87c5e8e022
feat(gomod): use git host rules as authentication for gosum updates (#12230)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-10-31 07:06:59 +00:00
biergit
7869d6dcb6
feat(bitbucket): support user repo for preset (#12281) 2021-10-31 06:57:52 +00:00
Sébastien CROCQUESEL
18ea9c91d0
feat(regex): allow to capture groups at each recursion (#12286) 2021-10-31 06:45:53 +00:00
HonkingGoose
5a33033676
docs: improve rangeStrategy=replace description (#12384) 2021-10-29 05:07:58 +02:00
HonkingGoose
e748ffd495
chore: create behavior guidelines (#12211) 2021-10-28 18:43:14 +02:00
Oleg Krivtsov
3da6ae0b84
feat: onboardingNoDeps (#12282)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-10-28 11:29:49 +00:00
Sébastien CROCQUESEL
b3676ac8ec
feat(regex): depType can be captured and templated (#12287) 2021-10-25 05:25:35 +00:00
Mathias Brodala
dd6d436ac3
docs: Fix 4-parts version processing explanation (#12264) 2021-10-22 08:30:20 +02:00
Keegan Witt
32b2333c6b
docs: Fix override default approvals link anchor (#12256) 2021-10-21 15:42:48 +02:00
Atsushi Watanabe
72d50cc5d6
fix(gomod): Do not tidy go.mod on major update without gomodUpdateImportPaths (#11976)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-10-20 11:28:09 +00:00
HonkingGoose
9f08a79a69
docs: move chartmuseum info into private packages page (#12095) 2021-10-20 13:19:32 +02:00
Tobias
15dd2fcf02
feat(git): insteadOf environment variables for authentication (#11077)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-10-20 13:16:49 +02:00
Sergei Zharinov
eef4c2f11f
feat(github): Use native auto-merge when possible (#12045) 2021-10-20 03:31:03 +00:00
pataar
c43554b693
docs: change gitLabAutomerge reference to platformAutomerge (#12183)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-10-18 09:03:33 +00:00
dudicoco
c030cb28e0
docs: improve docs for helm aliases (#12109)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-10-18 08:49:23 +00:00
HonkingGoose
650a431c65
docs(development): improve triage guide (#12146) 2021-10-18 05:31:56 +00:00
Florian Greinacher
6fe49c6f59
docs(running): mention PAT scopes for dry run (#12189) 2021-10-16 06:20:10 +02:00
renovate[bot]
0f95914ae8
docs: update references to renovate/renovate to v28 (#12126)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-10-12 08:10:19 +00:00
renovate[bot]
4327845702
docs: update references to renovate/renovate to v27.31.10 (#12105)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-10-11 08:55:02 +02:00
Sergei Zharinov
6f649eb661
feat(platform): Use uniform platformAutomerge option (#12069)
Existing `azureAutoComplete` and `gitLabAutomerge` options are now unified/renamed to `platformAutomerge`, and also defaulting to `true`.

BREAKING CHANGE: Azure autocomplete will now only be enabled when `automerge` is also enabled (to align with how GitLab automerge already worked). If you were using `azureAutoComplete` before without explicitly enabling Renovate `automerge` field then you will now need to do so. Platform automerge is now the default behavior whenever automerge is enabled.
2021-10-11 06:36:07 +00:00
Sebastian Poxhofer
e416df1865
feat(manager/regex): allow defining autoReplaceStringTemplate (#12019) 2021-10-05 12:21:11 +00:00
HonkingGoose
f3dbb719f5
docs: update links (#12006) 2021-10-04 15:57:18 +00:00
renovate[bot]
acb65fb1dc
docs: update references to renovate/renovate to v27.26.0 (#11993)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-10-04 03:46:39 +00:00
HonkingGoose
3371e0106e
docs: fix broken link to troubleshooting page (#11988) 2021-10-02 16:33:03 +02:00
HonkingGoose
a7b34cf700
docs: describe known limitations (#11946) 2021-10-01 07:32:12 +00:00
Rhys Arkins
cd72cdf2ac
feat(config): detectGlobalManagerConfig (#11951) 2021-09-29 19:58:42 +00:00
HonkingGoose
86de5176fe
docs: move troubleshooting guide to docs/usage directory (#11937) 2021-09-28 21:05:16 +02:00
HonkingGoose
959e3943f9
docs: create troubleshooting page (#11897) 2021-09-28 15:47:53 +02:00
HonkingGoose
fc9406b8ad
docs: capitalize proper noun Java (#11913) 2021-09-27 14:00:46 +00:00
HonkingGoose
54c1ccdb38
docs: explain limitation on amount of branches that can be automerged in one run (#11890) 2021-09-27 13:58:52 +02:00
HonkingGoose
fc36b27ce0
docs: describe intended ways to use Renovate (#11197) 2021-09-27 11:16:13 +00:00
HonkingGoose
42bef1e939
docs: improve branchConcurrentLimit documentation (#11879) 2021-09-27 11:42:43 +02:00
renovate[bot]
b7e022e0b1
docs: update references to renovate/renovate to v27.19.2 (#11899)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-27 06:22:58 +00:00
Carl Kittelberger
78a8272cd1
feat(composer): bearer token authentication (#6901) (#11856)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-09-23 11:49:58 +00:00
Rhys Arkins
0f226139cc
feat(npm): npmrcMerge (#11857)
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2021-09-23 13:17:44 +02:00
HonkingGoose
63889d7a12
docs: explain that Renovate automerge takes time (#11855) 2021-09-23 07:23:13 +00:00
HonkingGoose
4c8cd7d785
docs: improve ignorePaths config option documentation (#11838)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-09-22 13:28:29 +02:00
Sebastian Poxhofer
b350a8c5fb
feat: option to write discovered repositories to a json (#11806) 2021-09-22 07:21:22 +00:00
renovate[bot]
9cf54d8b0b
docs: update references to renovate/renovate to v27.14.0 (#11811)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-20 03:41:26 +00:00
ylemkimon
022206cc33
docs: add an example for Yarn 2+ (#11696) 2021-09-17 11:05:53 +02:00
Rhys Arkins
ee29fdcaf1
feat(config): scoped secrets using pgp/gpg (#11673) 2021-09-16 10:11:13 +00:00
Sebastian Poxhofer
12ae0d1ee9
feat(manager/terraform): support range strategy update lockfile (#11720)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-09-15 07:20:31 +00:00
Javier Segovia Córdoba
2d2edf2e09
docs: Update Gradle File Support docs (#11717) 2021-09-14 13:25:21 +02:00
renovate[bot]
f5e08d5c1a
docs: update references to renovate/renovate to v27 (#11703)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-13 06:34:14 +00:00
Maksim
7801ae7c16
feat(config): migrate requiredStatusChecks to ignoreTests (#11355)
* feat(config): migrate requiredStatusChecks to ignoreTests

* fix(config): restore order of props

* feat(config): add applyMigrations function

* feat(platform): check ignoreTests param in worker

* feat(config): rename getBranchStatus to resolveBranchStatus

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-09-12 15:23:18 +00:00
ylemkimon
0a5cee1f25
docs(private-packages): add a note about Yarn 2+ (#11692) 2021-09-12 14:17:07 +00:00
HonkingGoose
fe45377b6d
docs: fix display style of word ESLint (#11689) 2021-09-12 16:09:08 +02:00
Rhys Arkins
cdc083f40f
feat(config): privateKeyOld (#11653) 2021-09-10 12:47:33 +02:00
Clemens Kofler
0ee8440fe6
docs: Document update behavior for gems without version constraints (#11644) 2021-09-09 14:33:11 +00:00
HonkingGoose
6eafd2fa4b
docs: update table Major platform features not supported by Renovate (#11649) 2021-09-09 16:20:56 +02:00
Rhys Arkins
d6d4124b11
feat(git): blobless git (#11401) 2021-09-09 09:25:12 +02:00
HonkingGoose
11577d65b9
docs: improve key concepts automerge (#11639) 2021-09-08 12:10:00 +02:00
HonkingGoose
357068db81
docs: fix broken link to image (#11638) 2021-09-08 10:28:06 +02:00
HonkingGoose
40d7d2cdf6
docs: add link to key-concepts/automerge (#11637) 2021-09-08 10:22:38 +02:00
Michael Kriese
a07db266ae
docs: require git version (#11618) 2021-09-07 11:49:55 +02:00
renovate[bot]
cf7b6d5c88
docs: update references to renovate/renovate to v26.19.1 (#11586)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-06 03:52:43 +00:00
HonkingGoose
44b471fe18
docs: one sentence per line (#11550) 2021-09-02 21:15:13 +02:00
David Straub
8fb9197d0c
fix(host-rules): support matchHost with a dot prefix (#11523)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-09-02 17:03:51 +00:00
Danilo Pianini
f9f4d29af9
feat(manager/gradle): Add support for Gradle's TOML version Catalogs (#11452)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2021-09-02 16:55:33 +00:00
Rhys Arkins
fb75b2f4dc
feat(git): make gitAuthor repo-configurable (#11539) 2021-09-02 16:19:02 +02:00
HonkingGoose
28793a3900
docs: move automerge deep dive to key concept section (#11490) 2021-09-01 12:03:06 +02:00
HonkingGoose
4871f41428
docs: create page for key concept scheduling (#11278) 2021-08-30 08:20:02 +00:00
Lucas
d5e4e098b3
feat(gradle-wrapper): add support for multiple version occurrences in distributionUrl (#11454) 2021-08-30 07:06:18 +00:00
renovate[bot]
507069d15f
docs: update references to renovate/renovate to v26.12.0 (#11467)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-08-30 03:38:11 +00:00
Michael Kriese
7261bec901
feat(gitlab): allow override server version (#11416) 2021-08-26 04:56:28 +00:00
Michael Kriese
f871090a3b
docs: prepare for platform details (#11423)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2021-08-25 11:12:36 +00:00
Bob van de Vijver
15c12f079d
docs: Add composer v2 note for excluding single requirements (#11399) 2021-08-24 09:52:06 +02:00
Ville Skyttä
aa2607cf2c
docs(versioning): remove versionScheme references (#11397)
Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
2021-08-23 21:11:39 +00:00
Bob van de Vijver
3505508c9c
feat: Add fully configurable composer ignore platform requirement configuration (#11138)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-08-23 18:13:30 +00:00
HonkingGoose
b125c04e18
docs: be more specific about supported schedule granularity (#11383) 2021-08-23 14:14:18 +02:00