Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: remove skipInstalls config option #22648

Merged
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
be95cc5
feat!: allow post upgrade templating by default (#21326)
rarkins Apr 5, 2023
1b5c45b
feat(automerge)!: default to platformAutomerge=true (#21327)
rarkins Apr 5, 2023
82b25a0
feat(platform/gitlab)!: prefer `commit_email` (#21122
viceice Apr 26, 2023
0a1081d
fix(post-upgrade-tasks)!: enable dot option for file filters (#21282)
bgutschke Apr 26, 2023
ac726d6
feat(npm)!: disable rollbackPrs for npm by default (#21970)
rarkins May 5, 2023
8bbd60c
fix(presets)!: remove compatibility:additionalBranchPrefix (#22015)
rarkins May 7, 2023
3c164bf
feat(package-rules)!: remove fuzzy matchPaths matching (#22394)
rarkins May 24, 2023
d9f6967
feat!: merge matchPaths and matchFiles into matchFileNames (#22406)
rarkins May 25, 2023
3bc72f6
remove skipInstall from config/options
RahulGautamSingh Jun 8, 2023
c0efe73
remove skipInstall config option
RahulGautamSingh Jun 8, 2023
6a8c7ad
fix tests
RahulGautamSingh Jun 9, 2023
1169d19
feat!: allow post upgrade templating by default (#21326)
rarkins Apr 5, 2023
a9f5219
feat(automerge)!: default to platformAutomerge=true (#21327)
rarkins Apr 5, 2023
c1b63f6
feat(platform/gitlab)!: prefer `commit_email` (#21122
viceice Apr 26, 2023
ca7357f
fix(post-upgrade-tasks)!: enable dot option for file filters (#21282)
bgutschke Apr 26, 2023
bbc72d9
feat(npm)!: disable rollbackPrs for npm by default (#21970)
rarkins May 5, 2023
3f432a4
fix(presets)!: remove compatibility:additionalBranchPrefix (#22015)
rarkins May 7, 2023
6e95ba7
feat(package-rules)!: remove fuzzy matchPaths matching (#22394)
rarkins May 24, 2023
1351666
feat!: merge matchPaths and matchFiles into matchFileNames (#22406)
rarkins May 25, 2023
567c824
Merge branch 'v36' into fix/remove-skip-installs-option
RahulGautamSingh Jun 12, 2023
6f83ca3
Update lib/config/options/index.ts
RahulGautamSingh Jun 12, 2023
b28f7a9
Update docs/usage/configuration-options.md
RahulGautamSingh Jun 12, 2023
a33b3ec
feat!: merge matchPaths and matchFiles into matchFileNames (#22406)
rarkins May 25, 2023
4e65634
Merge branch 'v36' into fix/remove-skip-installs-option
RahulGautamSingh Jun 12, 2023
107e2bc
feat!: merge matchPaths and matchFiles into matchFileNames (#22406)
rarkins May 25, 2023
fb99631
Merge branch 'v36' into fix/remove-skip-installs-option
RahulGautamSingh Jun 12, 2023
b8890d4
Merge branch 'v36' into fix/remove-skip-installs-option
rarkins Jun 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(npm)!: disable rollbackPrs for npm by default (#21970)
  • Loading branch information
rarkins committed Jun 12, 2023
commit bbc72d95635dafe82e50e3139c72e7ccee5838f3
5 changes: 2 additions & 3 deletions docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
@@ -3268,9 +3268,8 @@ There are times when a dependency version in use by a project gets removed from
For some registries, existing releases or even whole packages can be removed or "yanked" at any time, while for some registries only very new or unused releases can be removed.
Renovate's "rollback" feature exists to propose a downgrade to the next-highest release if the current release is no longer found in the registry.

Renovate does not create these rollback PRs by default, with one exception: npm packages get a rollback PR if needed.

You can configure the `rollbackPrs` property globally, per-language, or per-package to override the default behavior.
Renovate does not create these rollback PRs by default, so this functionality needs to be opted-into.
We recommend you do this selectively with `packageRules` and not globally.

## ruby

1 change: 0 additions & 1 deletion lib/config/index.spec.ts
Original file line number Diff line number Diff line change
@@ -91,7 +91,6 @@ describe('config/index', () => {
const config = getManagerConfig(parentConfig, 'npm');
expect(config).toContainEntries([
['fileMatch', ['(^|/)package\\.json$']],
['rollbackPrs', true],
]);
expect(getManagerConfig(parentConfig, 'html')).toContainEntries([
['fileMatch', ['\\.html?$']],
1 change: 0 additions & 1 deletion lib/modules/manager/npm/index.ts
Original file line number Diff line number Diff line change
@@ -17,7 +17,6 @@ export const supportsLockFileMaintenance = true;

export const defaultConfig = {
fileMatch: ['(^|/)package\\.json$'],
rollbackPrs: true,
versioning: npmVersioning.id,
digest: {
prBodyDefinitions: {