mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
016e647390
Changes `rangeStrategy` default value from `'replace'` to `'auto'`. Also changes `auto` behavior so that `update-lockfile` is preferred if the manager supports the `updateLockedDependency()` function. Closes #19800 BREAKING CHANGE: Renovate will now default to updating locked dependency versions. To revert to previous behavior, configure rangeStrategy=replace. |
||
---|---|---|
.. | ||
__fixtures__ | ||
__snapshots__ | ||
extract.spec.ts | ||
extract.ts | ||
index.ts | ||
range.spec.ts | ||
range.ts | ||
readme.md |
The circleci
manager extracts both docker
as well as orb
datasources from CircleCI config files.
If you need to change the versioning format, read the versioning documentation to learn more.
Private orbs
To get private orbs working you should:
- Encrypt your CircleCI token with the Renovate encryption page
- Create a new
hostRules
entry in your Renovate config file - Put the encrypted token in the
token
field
The end-result should look like this:
{
"hostRules": [
{
"matchHost": "circleci.com",
"authType": "Token-Only",
"encrypted": {
"token": "****"
}
}
]
}
This config strips the Bearer/Basic prefix from the authorization
header.