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

chore(deps): update all non-major bundler dependencies #745

Open
wants to merge 8 commits into
base: staging
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 19, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bcrypt '~> 3.1.0' -> '~> 3.1.20' age adoption passing confidence
bootsnap '~> 1.12.0' -> '~> 1.18.4' age adoption passing confidence
browser (changelog) '~> 5.3.0' -> '~> 5.3.1' age adoption passing confidence
devise (changelog) '~>4.8.0' -> '~>4.9.4' age adoption passing confidence
devise-i18n '~>1.10.0' -> '~>1.12.1' age adoption passing confidence
dotenv-rails '~> 2.7.0' -> '~> 2.8.1' age adoption passing confidence
factory_bot_rails (changelog) '~> 6.2.0' -> '~> 6.4.4' age adoption passing confidence
faker (changelog) '~> 3.1.1' -> '~> 3.5.1' age adoption passing confidence
font-awesome-rails '~> 4.7.0.0' -> '~> 4.7.0.9' age adoption passing confidence
guard-livereload (source) '~> 2.5.0' -> '~> 2.5.2' age adoption passing confidence
http (changelog) '~> 5.0.0' -> '~> 5.2.0' age adoption passing confidence
jbuilder (changelog) '~> 2.11.0' -> '~> 2.13.0' age adoption passing confidence
jquery-rails '~> 4.5.0' -> '~> 4.6.0' age adoption passing confidence
kaminari '~> 1.2.0' -> '~> 1.2.2' age adoption passing confidence
mina (source) '~> 1.2.0' -> '~> 1.2.5' age adoption passing confidence
mini_racer '~> 0.6.0' -> '~> 0.16.0' age adoption passing confidence
mollie-api-ruby (changelog) '~> 4.7.0' -> '~> 4.15.0' age adoption passing confidence
omniauth '~> 2.0.0' -> '~> 2.1.2' age adoption passing confidence
omniauth-oauth2 '~> 1.7.0' -> '~> 1.8.0' age adoption passing confidence
omniauth-rails_csrf_protection '~> 1.0' -> '~> 1.0', '>= 1.0.2' age adoption passing confidence
pg '~> 1.3.0' -> '~> 1.5.9' age adoption passing confidence
puma '~> 6.4.0' -> '~> 6.5.0' age adoption passing confidence
pundit '~> 2.2.0' -> '~> 2.4.0' age adoption passing confidence
rack-attack (changelog) '~> 6.6.0' -> '~> 6.7.0' age adoption passing confidence
rails (source, changelog) '~> 7.0.4', '>= 7.0.4.3' -> '~> 7.2.2' age adoption passing confidence
rails-controller-testing '~> 1.0.0' -> '~> 1.0.5' age adoption passing confidence
rails-i18n '~> 7.0.0' -> '~> 7.0.10' age adoption passing confidence
redis-rails (source) '~> 5.0.0' -> '~> 5.0.2' age adoption passing confidence
rubocop (source, changelog) '~> 1.30.0' -> '~> 1.69.1' age adoption passing confidence
sassc-rails '~> 2.1.0' -> '~> 2.1.2' age adoption passing confidence
sentry-rails (source, changelog) '~> 5.5' -> '~> 5.22' age adoption passing confidence
sentry-ruby (source, changelog) '~> 5.5' -> '~> 5.22' age adoption passing confidence
sentry-sidekiq (source, changelog) '~> 5.5' -> '~> 5.22' age adoption passing confidence
sidekiq-scheduler (source) '~> 5.0.2' -> '~> 5.0.6' age adoption passing confidence
simple_form (changelog) '~> 5.1.0' -> '~> 5.3.1' age adoption passing confidence
turbolinks (source) '~> 5.2.0' -> '~> 5.2.1' age adoption passing confidence
uglifier '~> 4.2.0' -> '~> 4.2.1' age adoption passing confidence
validates_timeliness (changelog) '~> 7.0.0.beta2' -> '~> 7.0.0' age adoption passing confidence
web-console '~> 4.2.0' -> '~> 4.2.1' age adoption passing confidence
webpacker (changelog) '~> 5.4.0' -> '~> 5.4.4' age adoption passing confidence

Release Notes

heartcombo/devise (devise)

v4.9.4

Compare Source

https://github.com/heartcombo/devise/blob/v4.9.4/CHANGELOG.md#494---2024-04-10

v4.9.3

Compare Source

  • enhancements

v4.9.2

Compare Source

  • deprecations
    • Bring back Devise.activerecord51? and deprecate it, in order to avoid breakage with some libraries that apparently relied on it.

v4.9.1

Compare Source

  • enhancements

    • Allow resource class scopes to override the global configuration for sign_in_after_reset_password behaviour. #​5429 @​mattr
    • Refactor conditional dirty tracking logic to a centralized module to simplify usage throughout the codebase. #​5575
    • Improve support for Devise in apps with Active Record and Mongoid ORMs loaded, so it does not incorrectly uses new Active Record dirty tracking APIs with a Mongoid Devise model. #​5576
  • bug fixes

    • Failure app will respond with configured redirect_status instead of error_status if the recall app returns a redirect status (300..399) #​5573
    • Fix frozen string exception in validatable. #​5563 #​5465 @​mameier

v4.9.0

Compare Source

  • enhancements
    • Add support for Ruby 3.1/3.2.
    • Add support for Hotwire + Turbo, default in Rails 7+.
      • Devise uses the latest responders version (v3.1.0 or higher), which allows configuring the status used for validation error responses (error_status) and for redirects after POST/PUT/PATCH/DELETE requests (redirect_status). For backwards compatibility, Devise keeps error_status as :ok which returns a 200 OK response, and redirect_status to :found which returns a 302 Found response, but you can configure it to return 422 Unprocessable Entity and 303 See Other respectively, to match the behavior expected by Hotwire/Turbo:

config/initializers/devise.rb

  Devise.setup do |config|

...

    config.responder.error_status = :unprocessable_entity
    config.responder.redirect_status = :see_other

...

  end
  ```

  These configs are already generated by default with new apps, and existing apps may opt-in as described above. Trying to set these with an older version of `responders` will issue a warning and have no effect, so please upgrade the `responders` version if you're upgrading Devise for this integration. Note that these defaults may change in future versions of Devise, to better match the Rails + Hotwire/Turbo defaults across the board.
* If you have a custom responder set on your application and expect it to affect Devise as well, you may need to override the Devise responder entirely with `config.responder = MyApplicationResponder`, so that it uses your custom one. The main reason Devise uses a custom responder is to be able to configure the statuses as described above, but you can also change that config on your own responder if you want. Check the `responders` readme for more info on that.
* If you have created a custom responder and/or failure app just to customize responses for better Hotwire/Turbo integration, they should no longer be necessary.
* `:turbo_stream` is now treated as a navigational format, so it works like HTML navigation when using Turbo. Note: if you relied on `:turbo_stream` to be treated as a non-navigational format before, you can reconfigure your `navigational_formats` in the Devise initializer file to exclude it.
* OmniAuth "Sign in with" links were changed to buttons that generate HTML forms with method=POST, instead of using link + method=POST that required rails-ujs to work. Since rails-ujs is no longer the default for new Rails apps, this allows the OmniAuth buttons to work in any scenario, with or without rails-ujs and/or Turbo. This only affects apps that are using the default `devise/shared/_links.html.erb` partial from Devise with OmniAuth enabled.
* The "Cancel my account" button was changed to include the `data-turbo-confirm` option, so that it works with both rails-ujs and Turbo by default.
* Devise does not provide "sign out" links/buttons in its shared views, but if you're using `sign_out_via` with `:delete` (the default), and are using links with `method: :delete`, those need to be updated with `data: { turbo_method: :delete }` instead for Turbo.
* Check [this upgrade guide](https://redirect.github.com/heartcombo/devise/wiki/How-To:-Upgrade-to-Devise-4.9.0-[Hotwire-Turbo-integration]) for more detailed information.
tigrish/devise-i18n (devise-i18n)

v1.12.1

Compare Source

  • Updated bn, et, fr, and ru translations.
  • Added Ruby 3.3 to test matrix.

v1.12.0

Compare Source

  • Fixed a regression that broke API-based controllers.
  • Dropped Ruby 2.6 from test matrix.

v1.11.1

Compare Source

  • Fixed a regression where model names were not translated.
  • Fixed the model name being inappropriately downcased in the errors partial in German.
  • Updated ar, cs, da, de, and en-GB translations.

v1.11.0

Compare Source

v1.10.3

Compare Source

  • Updated ar (Arabic), es (Spanish), es-CO (Spanish - Columbia), es-MX (Spanish - Mexico), fr (French), th (Thai), and uk (Ukrainian) translations.
  • Added es-CL (Spanish - Chile) and eo (Esperanto) translation.
  • Fixed a bug with relative paths when creating scoped views - https://github.com/tigrish/devise-i18n/pull/318
bkeepers/dotenv (dotenv-rails)

v2.8.1

Compare Source

v2.8.0

Compare Source

  • Drop support for Ruby 2.4, 2.5, and 2.6, which are EOL
  • Fix template (-t) handling of export declarations #​416
  • Unescape escaped characters when value is not quoted #​421
  • Add overload option for the CLI ($ dotenv --overload -f .env.local) #​445
thoughtbot/factory_bot_rails (factory_bot_rails)

v6.4.4: 6.4.4

Compare Source

What's Changed

New Contributors

Full Changelog: thoughtbot/factory_bot_rails@v6.4.3...v6.4.4

v6.4.3: 6.4.3

Compare Source

  • Changed: allow sequence definitions for ActiveRecord primary keys (Mike Burns).
  • Changed: Support Ruby 3.0+, Rails 6.1+ (Mike Burns)
  • Documentation improvements (obregonia1).
  • Internal: GitHub Actions improvements (Lorenzo Zabot, ydah).
  • Internal: RubyGems points to changelog (Tilo Sloboda).
  • Internal: Bump standard, rake, activerecord, appraisal, rspec-rails (Mike Burns).

v6.4.2

Compare Source

  • Fixed: Fix Rails 7.1.2 + monkey-patched ActiveRecord compatibility (Adif Sgaid, Benoit Tigeot)
  • Internal: Test against Rails 7.1 (y-yagi)
  • Internal: Fix links to old files after renaming the main branch to main (y-yagi)

v6.4.0: 6.4.0

Compare Source

v6.3.0: 6.3.0

Compare Source

  • Changed: reject sequence definitions for ActiveRecord primary keys (Sean Doyle).
  • Changed: factory_bot dependency to ~> 6.4 (Mike Burns).
  • Changed: upgrade dependencies (Daniel Colson).
  • Add: projections.json for Rails.vim (Caleb Hearth).
  • Docs: fix broken link (Edu Depetris).
  • Docs: mention Rails generator in docs (Edu Depetris).
  • Docs: fix typo (Yudai Takada).
  • Internal: skip Spring version 2.1.1 due to a bug in that release (Christina
    Entcheva, Daniel Colson).
  • Internal: test against Rails 6.1 (Antonis Berkakis).
  • Internal: test against Ruby 3 (Daniel Colson).
  • Internal: fewer warnings in Cucumber tests (Daniel Colson).
  • Internal: use GitHub Actions for CI (Mathieu Jobin).
  • Internal: a whole bunch of cleanup (Daniel Colson).
  • Internal: fix CI due to a Bundler output change (Mike Burns).
faker-ruby/faker (faker)

v3.5.1

Compare Source

Happy October! 🎃

This version drops support for Ruby < 3.0. We only support one EOL Ruby version at a time. Please upgrade to Ruby 3.0 to update to this and future versions of faker-ruby.

Besides that, this version removes deprecated generators, fixes some bugs, and adds a Security Policy.

Thanks to all contributors!

v3.4.2

Compare Source

Happy July with a new faker-ruby release.

This version:

  • introduces a breaking change for Faker::NationalHealthService.british_number (more details below)
  • adds translation for some generators
  • fixes bugs
Breaking changes

The NHS sets aside a range of numbers from 999 000 0000 to 999 999 9999 for test purposes. The old range could
produce NHS numbers that were in use by real patients in the UK/England and Wales. In this version, Faker::NationalHealthService.british_number uses the test range for creating NHS numbers rather than the previous 400 000 0010 to 499 999 9999 range.

Breaking change was introduced in "Add test range param to NHS numbers" by @​neanias in https://github.com/faker-ruby/faker/pull/2947

Improvements & Bug fixes
Update local dependencies

v3.4.1

Compare Source

What's changed
Bug fixes
Features
Update local dependencies

v3.3.1

Compare Source

Bug fixes
What's Changed
New Contributors

Full Changelog: faker-ruby/faker@v3.3.0...v3.3.1


v3.3.0

Compare Source

Bug Fixes
Features
What's changed
Update local dependencies
New Contributors

Full Changelog: faker-ruby/faker@v3.2.3...v3.3.0


[v3.2.3](https://redirect.github.com/faker-ruby/faker/blob/HEAD/CHANGELOG.md#


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" in timezone Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 19, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch from 964ca0b to aa0f44c Compare June 20, 2022 13:39
@wilco375 wilco375 enabled auto-merge (squash) June 22, 2022 14:45
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 7 times, most recently from 5afb18a to aeb68aa Compare September 1, 2022 22:25
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch from aeb68aa to 4214d2c Compare September 9, 2022 19:11
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch from 4214d2c to 700c17a Compare September 20, 2022 16:37
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 2 times, most recently from 8ba3811 to 8196fd9 Compare October 5, 2022 15:13
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 5 times, most recently from ebb0dd9 to cd554b5 Compare October 16, 2022 19:08
@wilco375 wilco375 self-requested a review October 16, 2022 19:11
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 9 times, most recently from 90b9218 to e8b4849 Compare October 21, 2022 02:48
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 5 times, most recently from 4bac2d8 to 03c5e47 Compare April 19, 2023 15:03
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 4 times, most recently from 33431ac to 61b21fb Compare April 28, 2023 14:46
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch from 61b21fb to 124e2cc Compare May 7, 2023 15:33
Copy link

codecov bot commented Nov 27, 2024

Codecov Report

Attention: Patch coverage is 0% with 1 line in your changes missing coverage. Please review.

Project coverage is 52.37%. Comparing base (56e54e6) to head (e98c127).

Files with missing lines Patch % Lines
app/jobs/credit_insufficient_notification_job.rb 0.00% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff            @@
##           staging     #745   +/-   ##
========================================
  Coverage    52.37%   52.37%           
========================================
  Files           55       55           
  Lines         1178     1178           
========================================
  Hits           617      617           
  Misses         561      561           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 5 times, most recently from 01ee7c0 to 5b8b797 Compare December 4, 2024 18:05
Copy link
Contributor Author

renovate bot commented Dec 5, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@lodewiges lodewiges force-pushed the renovate/all-minor-patch-bundler branch 3 times, most recently from d12c396 to 590e431 Compare December 5, 2024 02:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file status:ready to review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants