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: v25 #9394

Merged
merged 21 commits into from Apr 22, 2021
Merged

feat: v25 #9394

merged 21 commits into from Apr 22, 2021

Commits on Apr 22, 2021

  1. feat: remove RENOVATE_LEGACY_GIT_AUTHOR_EMAIL (#9389)

    Removes RENOVATE_LEGACY_GIT_AUTHOR_EMAIL support. 
    
    Closes #9111
    
    BREAKING CHANGE: RENOVATE_LEGACY_GIT_AUTHOR_EMAIL is no longer supported. Use `ignoredAuthors` in config instead.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    482012a View commit details
    Browse the repository at this point in the history
  2. feat: drop NPM_TOKEN support (#9391)

    Removes support for NPM_TOKEN.
    
    BREAKING CHANGE: Do not use NPM_TOKEN in env to configure npm authentication. Configure hostRules instead.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    8516aac View commit details
    Browse the repository at this point in the history
  3. feat: remove logLevel support in config (#9390)

    Remove support for logLevel in config. Must be configured using LOG_LEVEL instead.
    
    Closes #8291
    
    BREAKING CHANGE: Configure LOG_LEVEL in env and not in config or CLI
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    f74e0d7 View commit details
    Browse the repository at this point in the history
  4. feat: split trustLevel into separate options (#9388)

    Removes trustLevel and replaces it with 3 other options instead. No longer necessary to set anything additional is configuring `allowedPostUpgradeCommands`
    
    BREAKING CHANGE: `trustLevel` is no longer supported and instead broken into `allowCustomCrateRegistries` , `allowScripts` , and `exposeAllEnv`.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    6c381cf View commit details
    Browse the repository at this point in the history
  5. feat(config): remove manager additionalBranchPrefix defaults (#9373)

    Resets any language or manager` additionalBranchPrefix` values to empty string. Add the `compatibility:additionalBranchPrefix` prefix to restore previous behavior.
    
    BREAKING CHANGE: Removal of default `additionalBranchPrefix` values will cause branch names to change for docker/helm/buildkite/cargo/homebrew.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    aa717ea View commit details
    Browse the repository at this point in the history
  6. feat: updateType=patch (#9393)

    Changes behavior so that patch updateType is not rewritten to minor by default.
    
    Closes #2818
    
    BREAKING CHANGE: patch updates are not considered updateType=minor by default.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    d5d2954 View commit details
    Browse the repository at this point in the history
  7. feat(terraform): rework dep types (#9116)

    Improves the `depType` values returned by the terraform manager.
    
    Closes #8792
    
    BREAKING CHANGE: Values for extracted `depType` in terraform manager have changed, please see the `terraform` manager readme for details.
    secustor authored and rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    c2980e9 View commit details
    Browse the repository at this point in the history
  8. docs: improve sentences (#9395)

    HonkingGoose authored and rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    c67b068 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    55debcc View commit details
    Browse the repository at this point in the history
  10. refactor: skipInstalls -> artifactUpdateApproach (#9119)

    Renames skipInstalls to artifactUpdateApproach and changes from boolean to enum.
    
    BREAKING CHANGE: skipInstalls has been changed to artifactsUpdateApproach
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    305b449 View commit details
    Browse the repository at this point in the history
  11. feat(npm): remove ignoreNpmrcFile support (#9409)

    Removes support for the ignoreNpmrcFile config option.
    
    BREAKING CHANGE: ignoreNpmrcFile is no longer supported. Use an empty string for config.npmrc instead.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    7067b39 View commit details
    Browse the repository at this point in the history
  12. feat(npm): remove ~/.npmrc support (#9400)

    Drops support for reading `.npmrc` from the bot's home directory.
    
    BREAKING CHANGE: Renovate will no longer read from ~/.npmrc. Configure `npmrc` in config instead.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    2bad77b View commit details
    Browse the repository at this point in the history
  13. feat(config): delay preset resolution until after platform initializa…

    …tion (#9415)
    
    Delay config preset resolution in admin config until after platform initialization. This will enable resolution of private “local>…” presets to work.
    
    BREAKING CHANGE: Config presets will be resolved after platform initialization, so from now on platform credentials cannot be placed in presets.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    67228ea View commit details
    Browse the repository at this point in the history
  14. feat: drop dockerMapDotFiles (#9417)

    Drops support for dockerMapDotfiles
    
    BREAKING CHANGE: dockerMapDotfiles is no longer supported
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    3904e90 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    45fcaa4 View commit details
    Browse the repository at this point in the history
  16. feat: group:Nodejs (#9469)

    Remove hardcoded Node.js rules from docker extract and instead add group:nodeJs to group:recommended
    
    BREAKING CHANGE: node images founds in Dockerfiles will no longer have hardcoded commitMessageTopic. Add group:Nodejs or config:base to extends for backwards compatibility.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    c9fac51 View commit details
    Browse the repository at this point in the history
  17. feat(docker): enable major updates by default (#9470)

    Removes default settings which disabled docker major updates by default.
    
    BREAKING CHANGE: Major updates for docker will now be enabled by default.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    8a63f20 View commit details
    Browse the repository at this point in the history
  18. chore: update snapshot

    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    26b2762 View commit details
    Browse the repository at this point in the history
  19. feat(npm): retain npmrc lines without variables (#9484)

    Instead of ignoring the entire .npmrc file if it contains environment variables, instead just strip out the necessary lines.
    
    BREAKING: .npmrc files with environment variables will no longer be completely ignore - instead only the lines with variables will be stripped.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    3e45ccd View commit details
    Browse the repository at this point in the history
  20. refactor: artifactUpdateApproach -> skipInstalls

    Roll back the previous refactor.
    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    b701371 View commit details
    Browse the repository at this point in the history
  21. chore: revert hasFancyRefs

    rarkins committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    31edce4 View commit details
    Browse the repository at this point in the history