Configure Renovate
Welcome to Renovate!
This is an onboarding PR to help you understand and configure Renovate before any regular Pull Requests begin. Once you close this Pull Request, Renovate will begin keeping your dependencies up-to-date via automated Pull Requests.
If you have any questions, try reading our Configuring Renovate help page first, or feel free to ask the app author @rarkins a question in a comment below.
Configuration Summary
Based on the currently configured presets, Renovate will:
- Start dependency updates once this Configure Renovate PR is merged or closed
- Separate major versions of dependencies into individual branches/PRs
- Combine any patch and minor upgrades together into same branch/PR
- Upgrade to unstable versions only if the existing version is unstable
- Raise PRs immediately (after branch is created)
- Use
renovate/as prefix for all branch names - If semantic commits detected, use semantic commit type
fixfor dependencies andchorefor all others - Keep existing branches updated even when not scheduled
- Disable automerging feature - wait for humans to merge all PRs
- Update existing lock files only when
package.jsonis modified - Autodetect whether to pin dependencies or maintain ranges
- Odd version numbers are classified as unstable
- Preconfigure dependencies where an odd leading digit indicates unstable
- Pin dependency versions for
devDependenciesand retain semver ranges for others
Would you like to change the way Renovate is upgrading your dependencies? Simply edit the renovate.json in this branch and this Pull Request description will be updated the next time Renovate runs.
What to Expect
With your current configuration, Renovate will create 14 Pull Requests:
- chore(deps): pin dependencies
- Branch name:
renovate/pin-dependencies - Pins grunt-contrib-uglify in
devDependenciesto0.2.7 - Pins grunt-contrib-nodeunit in
devDependenciesto0.2.2 - Pins grunt-contrib-jshint in
devDependenciesto0.6.5 - Pins grunt-contrib-cssmin in
devDependenciesto0.10.0 - Pins grunt-contrib-concat in
devDependenciesto0.3.0 - Pins grunt-angular-templates in
devDependenciesto0.5.9 - Pins grunt in
devDependenciesto0.4.5
- chore(deps): update dependency grunt to v1
- Branch name:
renovate/grunt-1.x - Upgrades grunt in
devDependenciesfrom~0.4.2to1.0.1
- chore(deps): update dependency grunt-angular-templates to v0.6.0
- Branch name:
renovate/grunt-angular-templates-0.x - Upgrades grunt-angular-templates in
devDependenciesfrom~0.5.1to0.6.0
- chore(deps): update dependency grunt-angular-templates to v1
- Branch name:
renovate/grunt-angular-templates-1.x - Upgrades grunt-angular-templates in
devDependenciesfrom~0.5.1to1.1.0
- chore(deps): update dependency grunt-contrib-concat to v0.5.1
- Branch name:
renovate/grunt-contrib-concat-0.x - Upgrades grunt-contrib-concat in
devDependenciesfrom~0.3.0to0.5.1
- chore(deps): update dependency grunt-contrib-concat to v1
- Branch name:
renovate/grunt-contrib-concat-1.x - Upgrades grunt-contrib-concat in
devDependenciesfrom~0.3.0to1.0.1
- chore(deps): update dependency grunt-contrib-cssmin to v0.14.0
- Branch name:
renovate/grunt-contrib-cssmin-0.x - Upgrades grunt-contrib-cssmin in
devDependenciesfrom^0.10.0to0.14.0
- chore(deps): update dependency grunt-contrib-cssmin to v2
- Branch name:
renovate/grunt-contrib-cssmin-2.x - Upgrades grunt-contrib-cssmin in
devDependenciesfrom^0.10.0to2.2.1
- chore(deps): update dependency grunt-contrib-jshint to v0.12.0
- Branch name:
renovate/grunt-contrib-jshint-0.x - Upgrades grunt-contrib-jshint in
devDependenciesfrom~0.6.3to0.12.0
- chore(deps): update dependency grunt-contrib-jshint to v1
- Branch name:
renovate/grunt-contrib-jshint-1.x - Upgrades grunt-contrib-jshint in
devDependenciesfrom~0.6.3to1.1.0
- chore(deps): update dependency grunt-contrib-nodeunit to v0.4.1
- Branch name:
renovate/grunt-contrib-nodeunit-0.x - Upgrades grunt-contrib-nodeunit in
devDependenciesfrom~0.2.0to0.4.1
- chore(deps): update dependency grunt-contrib-nodeunit to v1
- Branch name:
renovate/grunt-contrib-nodeunit-1.x - Upgrades grunt-contrib-nodeunit in
devDependenciesfrom~0.2.0to1.0.0
- chore(deps): update dependency grunt-contrib-uglify to v0.11.1
- Branch name:
renovate/grunt-contrib-uglify-0.x - Upgrades grunt-contrib-uglify in
devDependenciesfrom~0.2.2to0.11.1
- chore(deps): update dependency grunt-contrib-uglify to v3
- Branch name:
renovate/grunt-contrib-uglify-3.x - Upgrades grunt-contrib-uglify in
devDependenciesfrom~0.2.2to3.2.1
Don't want a renovate.json file?
Renovate will begin once this "Configure Renovate" PR is merged or closed, but it's recommended that you add the renovate.json to your repository to ensure behaviour matches what you see described here. Alternatively, you can add the same configuration settings into a "renovate" section of your package.json file(s) in this branch and delete the renovate.json from this PR.
Want to start over?
If you'd like Renovate to recreate this "Configure Renovate" PR from scratch - for example if your base branch has had substantial changes - then you need to:
- (IMPORTANT) Rename this PR to something else, e.g. "Configure Renovate - old"
- Close the PR and delete the branch
If later on you ever wish to reconfigure Renovate then you can use this same trick of renaming the PR, but you'll also need to delete any renovate.json file too. You should then get a new "Configure Renovate" PR like this.