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(package-rules)!: remove depName fallback #28548

Merged
merged 11 commits into from
Apr 21, 2024
Merged

Commits on Apr 20, 2024

  1. fix(config)!: globalExtends merge order (#28145)

    Previously, config from globalExtends was incorrectly merged _after_ other global config. This meant for example that packageRules in a config.js could not override packageRules from within globalExtends, because they were applied after. Now, globalExtends content will be merged first, and remaining global config merged second.
    
    Fixes #28131
    
    BREAKING CHANGE: order of globalExtends resolution is changed so that it is applied first and remaining global config takes precedence.
    rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    750958f View commit details
    Browse the repository at this point in the history
  2. feat(manager/pep621)!: remove group name from depName (#28193)

    Previously, the “depName” for pep621 was constructed using groupName/packageName, which in turn meant that the same dependency was upgraded in different branches if it was present in multiple groups. Instead, depName is now set to packageName. This will lead to a change of branch name for pep621 updates.
    
    Closes #28131
    
    BREAKING CHANGE: depName for pep621 dependencies changes, which will lead to branch name changes, which will lead to some autoclosing and reopening of PRs.
    secustor authored and rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    cf0ec57 View commit details
    Browse the repository at this point in the history
  3. feat(gitea)!: use Bearer instead of token for auth (#28308)

    Previous Gitea implementation used non-standard “token” auth instead of “Bearer”. Gitea supports Bearer al alternate to token since v1.8.0, so it’s safe to make this change now.
    
    BREAKING CHANGE: Gitea platfor authentication will now be done using Bearer auth instead of token auth.
    viceice authored and rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    37a36d2 View commit details
    Browse the repository at this point in the history
  4. feat!: stop publishing slim docker tags (#27993)

    Stop publishing -slim Renovate tags - slim is now the default.
    
    BREAKING CHANGE: Renovate docker images no longer have -slim tags. Drop the -slim prefix as this is now the default behavior.
    viceice authored and rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    78a51f8 View commit details
    Browse the repository at this point in the history
  5. fix(config)!: Use depNameSanitized in branch name for vulnerability…

    … alerts (#25166)
    
    Use sanitized depName in vulnerability/remediation branches instead of raw depName. This will result in some open remediation branches being autoclosed and replaced for ecosystems like go in particular which have special characters in depNames.
    
    BREAKING CHANGE: Branch names for remediation will be sanitized to exclude special characters, potentially resulting in some autoclosing/replacing of existing PRs.
    takac authored and rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    fd18183 View commit details
    Browse the repository at this point in the history
  6. feat(npm)!: drop transitiveRemediation option (#27985)

    This option only worked for npm <7, which is now EOL.
    
    BREAKING CHANGE: Transitive remediation for npm <7 is no longer supported.
    rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    09f3be2 View commit details
    Browse the repository at this point in the history
  7. feat(config)!: change onboardingNoDeps from boolean to enum (#28133)

    Change onboardingNoDeps from boolean to enum, with new default "auto". Auto means that Renovate will continue skipping repos with no dependencies if autodiscover is in use, but onboarding them if they are explicitly specified in a non-autodiscover mode.
    
    Closes #28101
    
    BREAKING CHANGE: onboardingNoDeps changes from boolean to enum. Repositories with no dependencies will be onboarded unless in autodiscover mode.
    RahulGautamSingh authored and rarkins committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    858b3ea View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7adb08e View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Configuration menu
    Copy the full SHA
    7a56635 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a555695 View commit details
    Browse the repository at this point in the history
  3. fix test

    rarkins committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    79cfed9 View commit details
    Browse the repository at this point in the history