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(cargo): default to update-lockfile #28714

Closed
wants to merge 34 commits into from

Commits on Apr 26, 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 26, 2024
    Configuration menu
    Copy the full SHA
    01ba8df 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 26, 2024
    Configuration menu
    Copy the full SHA
    61b302f 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 26, 2024
    Configuration menu
    Copy the full SHA
    5227276 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 26, 2024
    Configuration menu
    Copy the full SHA
    21d5e4d 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 26, 2024
    Configuration menu
    Copy the full SHA
    c93e050 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 26, 2024
    Configuration menu
    Copy the full SHA
    d27e612 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 26, 2024
    Configuration menu
    Copy the full SHA
    1181466 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d096546 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7cfd376 View commit details
    Browse the repository at this point in the history
  10. feat(package-rules)!: remove depName fallback (#28548)

    Removes fallback to checking depName for all matchPackageX and excludePackageX rules.
    
    BREAKING CHANGE: matchPackageNames and related functions no longer fall back to checking depName. Rewrite packageRules to use matchDepNames instead.
    rarkins committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    c94a506 View commit details
    Browse the repository at this point in the history
  11. feat(datasource/docker)!: prefer hub.docker.com over index.docker.io …

    …for tag lookups (#28400)
    
    Changes default Docker Hub lookups from index.docker.io to hub.docker.com, which is more efficient. If you are configuring a Docker Hub token for docker.io then you should now configure it for docker.com as well. 
    
    Closes #24666
    
    BREAKING CHANGE: Docker Hub lookups prefer hub.docker.com over index.docker.io. Set RENOVATE_X_DOCKER_HUB_TAGS_DISABLE=true in env to revert behavior.
    rarkins committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    ae5a372 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    395d235 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    8bd0f3f View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    988a609 View commit details
    Browse the repository at this point in the history
  15. feat(packageRules)!: support regex or glob matching for all (#28591)

    Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
    rarkins and viceice committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    1fb0270 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    129396a View commit details
    Browse the repository at this point in the history
  2. 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 29, 2024
    Configuration menu
    Copy the full SHA
    a429055 View commit details
    Browse the repository at this point in the history
  3. 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 29, 2024
    Configuration menu
    Copy the full SHA
    fccde3a View commit details
    Browse the repository at this point in the history
  4. 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 29, 2024
    Configuration menu
    Copy the full SHA
    b739aa0 View commit details
    Browse the repository at this point in the history
  5. 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 29, 2024
    Configuration menu
    Copy the full SHA
    e3385ba View commit details
    Browse the repository at this point in the history
  6. 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 29, 2024
    Configuration menu
    Copy the full SHA
    ee1a463 View commit details
    Browse the repository at this point in the history
  7. 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 29, 2024
    Configuration menu
    Copy the full SHA
    68687c0 View commit details
    Browse the repository at this point in the history
  8. 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 29, 2024
    Configuration menu
    Copy the full SHA
    adb8fae View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a37987d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    dfed03c View commit details
    Browse the repository at this point in the history
  11. feat(package-rules)!: remove depName fallback (#28548)

    Removes fallback to checking depName for all matchPackageX and excludePackageX rules.
    
    BREAKING CHANGE: matchPackageNames and related functions no longer fall back to checking depName. Rewrite packageRules to use matchDepNames instead.
    rarkins committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    e05a466 View commit details
    Browse the repository at this point in the history
  12. feat(datasource/docker)!: prefer hub.docker.com over index.docker.io …

    …for tag lookups (#28400)
    
    Changes default Docker Hub lookups from index.docker.io to hub.docker.com, which is more efficient. If you are configuring a Docker Hub token for docker.io then you should now configure it for docker.com as well. 
    
    Closes #24666
    
    BREAKING CHANGE: Docker Hub lookups prefer hub.docker.com over index.docker.io. Set RENOVATE_X_DOCKER_HUB_TAGS_DISABLE=true in env to revert behavior.
    rarkins committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    0d5e1bb View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    59d59f0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    1dbd621 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    73df318 View commit details
    Browse the repository at this point in the history
  16. feat(packageRules)!: support regex or glob matching for all (#28591)

    Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
    rarkins and viceice committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    73e35bc View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a54ffeb View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Configuration menu
    Copy the full SHA
    e5dfc83 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    942f0cc View commit details
    Browse the repository at this point in the history