diff --git a/CHANGELOG.md b/CHANGELOG.md index e4c7f169a78..b45e865771e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +## v0.212.0, 6 September 2022 + +- prevent the push to main event from skipping [#5641](https://github.com/dependabot/dependabot-core/pull/5641) +- Fix path to python native helpers [#5617](https://github.com/dependabot/dependabot-core/pull/5617) +- push docker images after approval [#5640](https://github.com/dependabot/dependabot-core/pull/5640) +- branch naming for removed dependencies [#5623](https://github.com/dependabot/dependabot-core/pull/5623) +- Properly upgrade github actions pinned to specific commits [#5576](https://github.com/dependabot/dependabot-core/pull/5576) +- pull request message is always built, removing experiment [#5638](https://github.com/dependabot/dependabot-core/pull/5638) +- gradle depends on maven gem, so run gradle tests when maven changes [#5637](https://github.com/dependabot/dependabot-core/pull/5637) +- build(deps-dev): update parallel_tests requirement from ~> 3.11.1 to ~> 3.12.0 in /common [#5627](https://github.com/dependabot/dependabot-core/pull/5627) +- build(deps-dev): update rubocop requirement from ~> 1.35.1 to ~> 1.36.0 in /common [#5628](https://github.com/dependabot/dependabot-core/pull/5628) +- fix latest docker image not being pushed on merge to main [#5636](https://github.com/dependabot/dependabot-core/pull/5636) +- Add RuboCop Performance [#5586](https://github.com/dependabot/dependabot-core/pull/5586) +- Speedup rebuilding native helper changes [#5624](https://github.com/dependabot/dependabot-core/pull/5624) +- build(deps): bump poetry from 1.1.15 to 1.2.0 in /python/helpers [#5599](https://github.com/dependabot/dependabot-core/pull/5599) +- fix main failures saying there's no repository here [#5622](https://github.com/dependabot/dependabot-core/pull/5622) +- skip CI if no changes effect the ecosystem [#5620](https://github.com/dependabot/dependabot-core/pull/5620) +- only use GHCR for deploys [#5614](https://github.com/dependabot/dependabot-core/pull/5614) +- Enable new RuboCop cops [#5588](https://github.com/dependabot/dependabot-core/pull/5588) +- Configure RSpec to allow running `rspec --only-failures` [#5606](https://github.com/dependabot/dependabot-core/pull/5606) +- Revert "Add more helpful error messaging when a vulnerable dependency cannot be upgraded" [#5613](https://github.com/dependabot/dependabot-core/pull/5613) +- publish main branch images [#5610](https://github.com/dependabot/dependabot-core/pull/5610) +- build(deps): bump terraform from 1.2.3 to 1.2.8 (@gtirloni) [#5591](https://github.com/dependabot/dependabot-core/pull/5591) +- Add more helpful error messaging when a vulnerable dependency cannot be upgraded [#5542](https://github.com/dependabot/dependabot-core/pull/5542) +- Merge previously private updater code into core [#5608](https://github.com/dependabot/dependabot-core/pull/5608) +- Use correct label for tech debt form (@HonkingGoose) [#5602](https://github.com/dependabot/dependabot-core/pull/5602) +- Convert issue templates to issue forms (@HonkingGoose) [#5600](https://github.com/dependabot/dependabot-core/pull/5600) +- Dependabot Ltd -> GitHub Inc [#5592](https://github.com/dependabot/dependabot-core/pull/5592) +- Fix typo: `requiers` -> `requires` [#5583](https://github.com/dependabot/dependabot-core/pull/5583) +- build(deps): update faraday requirement from = 2.3.0 to = 2.5.2 in /common [#5535](https://github.com/dependabot/dependabot-core/pull/5535) + ## v0.211.0, 23 August 2022 - Support for transitive dependency removal [#5549](https://github.com/dependabot/dependabot-core/pull/5549) diff --git a/common/lib/dependabot/version.rb b/common/lib/dependabot/version.rb index af8baf99b2a..fc8ca903c7d 100644 --- a/common/lib/dependabot/version.rb +++ b/common/lib/dependabot/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Dependabot - VERSION = "0.211.0" + VERSION = "0.212.0" end