Javi Martín
bee00db34f
Use a node package to install jquery-fileupload
...
Although the gem is called jquery-fileupload-rails, the node package is
called blueimp-file-upload.
Note we're using the same version as provided by the gem.
The jquery-fileupload gem provided a `basic.js` file (which we were
requiring), which had the following content:
```
//= require jquery-fileupload/vendor/jquery.ui.widget
//= require jquery-fileupload/jquery.iframe-transport
//= require jquery-fileupload/jquery.fileupload
``
This file isn't available in the Node.js package, so we're adapting its
contents in our application.js file. Since we're already requiring
jQuery UI widget, we're omitting that line.
2024-04-03 00:15:48 +02:00
Javi Martín
3a18ba1d4f
Bump autoprefixer-rails from 8.2.0 to 10.2.5.1
...
We're upgrading to this version in order because it's the first version
that works with our current version of execjs when running the
`autoprefixer:info` task. Since it's been such a long time since the
last time we upgraded autoprefixer-rails (version 8.2.0, which is the
version we were using, was released on March 2018), and we're getting a
warning when compiling the assets with the latest version, we're going
to do it gradually; version 10.2.5.1 was released on May 2021, so it
also seems like a reasonable middlepoint.
Note we're moving the `browserlist` file to `.browserlistrc` because
that's the expected locations in new versions of autoprefixer-rails.
Also note that we're changing this file so we support browsers released
in the last 7 years, so we still support more or less the same browsers
we supported before this change (about 98% of the browsers out there).
We might reduce it to 5 years in the future.
Bumps [autoprefixer-rails](https://github.com/ai/autoprefixer-rails ) from 8.2.0 to 10.2.5.1
- [Changelog](https://github.com/ai/autoprefixer-rails/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ai/autoprefixer-rails/compare/8.2.0...10.2.5.1
2024-04-02 18:15:14 +02:00
dependabot[bot]
f4203909db
Bump rubocop from 1.56.4 to 1.61.0
...
This version fixes false negatives for Lint/SymbolConversion when using
string interpolation, for Style/RedundantArgument when using the safe
navigation operator, for Style/RedundantParentheses when logical
operators are involved and for Style/RedundantReturn with lambda ending
with return. We're applying the new rules.
Bumps [rubocop](https://github.com/rubocop/rubocop ) from 1.56.4 to 1.61.0.
- [Release notes](https://github.com/rubocop/rubocop/releases )
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop/compare/v1.56.4...v1.61.0 )
---
updated-dependencies:
- dependency-name: rubocop
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-02 16:31:10 +02:00
Javi Martín
2fa713c644
Use node packages to install Foundation
...
Since Foundation hasn't released a new gem for years, we haven't been
able to upgrade Foundation to its most recent version.
Thanks to this change, we'll be able to do so.
Note we're using motion-ui version 2.0.3 because version 2.0.5 (the
latest at the moment) requires Dart Sass.
2024-04-02 14:41:42 +02:00
Javi Martín
f46558b4dd
Replace rails-assets.org with Node.js packages
...
Now that we use NPM, we don't need the wrapper provided by rails-assets
anymore.
2024-03-30 05:10:13 +01:00
dependabot[bot]
2ef88459cb
Bump ahoy_matey from 4.2.1 to 5.0.2
...
Bumps [ahoy_matey](https://github.com/ankane/ahoy ) from 4.2.1 to 5.0.2.
- [Changelog](https://github.com/ankane/ahoy/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ankane/ahoy/compare/v4.2.1...v5.0.2 )
---
updated-dependencies:
- dependency-name: ahoy_matey
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 17:36:37 +01:00
dependabot[bot]
6ac8455e8b
Bump dalli from 3.2.6 to 3.2.8
...
Bumps [dalli](https://github.com/petergoldstein/dalli ) from 3.2.6 to 3.2.8.
- [Changelog](https://github.com/petergoldstein/dalli/blob/main/CHANGELOG.md )
- [Commits](https://github.com/petergoldstein/dalli/compare/v3.2.6...v3.2.8 )
---
updated-dependencies:
- dependency-name: dalli
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 17:04:27 +01:00
dependabot[bot]
137d079869
Bump audited from 5.4.0 to 5.4.3
...
Bumps [audited](https://github.com/collectiveidea/audited ) from 5.4.0 to 5.4.3.
- [Changelog](https://github.com/collectiveidea/audited/blob/main/CHANGELOG.md )
- [Commits](https://github.com/collectiveidea/audited/compare/v5.4.0...v5.4.3 )
---
updated-dependencies:
- dependency-name: audited
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 16:51:29 +01:00
dependabot[bot]
d1b6d58a1f
Bump caxlsx from 3.4.1 to 4.1.0
...
Bumps [caxlsx](https://github.com/caxlsx/caxlsx ) from 3.4.1 to 4.1.0.
- [Changelog](https://github.com/caxlsx/caxlsx/blob/master/CHANGELOG.md )
- [Commits](https://github.com/caxlsx/caxlsx/compare/v3.4.1...v4.1.0 )
---
updated-dependencies:
- dependency-name: caxlsx
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 15:33:33 +00:00
Javi Martín
829c9b896f
Merge pull request #5414 from consuldemocracy/dependabot/bundler/savon-2.15.0
...
Bump savon from 2.14.0 to 2.15.0
2024-03-27 16:32:26 +01:00
dependabot[bot]
b25d4ea7e2
Bump invisible_captcha from 2.1.0 to 2.3.0
...
Bumps [invisible_captcha](https://github.com/markets/invisible_captcha ) from 2.1.0 to 2.3.0.
- [Changelog](https://github.com/markets/invisible_captcha/blob/master/CHANGELOG.md )
- [Commits](https://github.com/markets/invisible_captcha/compare/v2.1.0...v2.3.0 )
---
updated-dependencies:
- dependency-name: invisible_captcha
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 16:12:11 +01:00
dependabot[bot]
ecaf66541a
Bump savon from 2.14.0 to 2.15.0
...
Bumps [savon](https://github.com/savonrb/savon ) from 2.14.0 to 2.15.0.
- [Release notes](https://github.com/savonrb/savon/releases )
- [Changelog](https://github.com/savonrb/savon/blob/main/CHANGELOG.md )
- [Commits](https://github.com/savonrb/savon/compare/v2.14.0...v2.15.0 )
---
updated-dependencies:
- dependency-name: savon
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 15:10:19 +00:00
dependabot[bot]
20bc2cef53
Bump capistrano from 3.17.3 to 3.18.1
...
Bumps [capistrano](https://github.com/capistrano/capistrano ) from 3.17.3 to 3.18.1.
- [Release notes](https://github.com/capistrano/capistrano/releases )
- [Commits](https://github.com/capistrano/capistrano/compare/v3.17.3...v3.18.1 )
---
updated-dependencies:
- dependency-name: capistrano
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 15:48:29 +01:00
Javi Martín
c585eb0e26
Merge pull request #5418 from consuldemocracy/dependabot/bundler/wicked_pdf-2.8.0
...
Bump wicked_pdf from 2.7.0 to 2.8.0
2024-03-27 15:39:43 +01:00
Javi Martín
af2feee887
Merge pull request #5359 from consuldemocracy/dependabot/bundler/omniauth-2.1.2
...
Bump omniauth from 2.1.1 to 2.1.2
2024-03-27 15:35:56 +01:00
Javi Martín
e874c08025
Merge pull request #5343 from consuldemocracy/dependabot/bundler/airbrake-13.0.4
...
Bump airbrake from 13.0.3 to 13.0.4
2024-03-27 15:31:20 +01:00
Javi Martín
ea2916df6d
Merge pull request #5300 from consuldemocracy/dependabot/bundler/delayed_job_active_record-4.1.8
...
Bump delayed_job_active_record from 4.1.7 to 4.1.8
2024-03-27 15:09:28 +01:00
Javi Martín
2f59fde4e2
Merge pull request #5444 from consuldemocracy/dependabot/bundler/exiftool_vendored-12.80.0
...
Bump exiftool_vendored from 12.60.0 to 12.80.0
2024-03-23 21:59:58 +01:00
dependabot[bot]
594dcbd367
Bump delayed_job_active_record from 4.1.7 to 4.1.8
...
Bumps [delayed_job_active_record](https://github.com/collectiveidea/delayed_job_active_record ) from 4.1.7 to 4.1.8.
- [Commits](https://github.com/collectiveidea/delayed_job_active_record/compare/v4.1.7...v4.1.8 )
---
updated-dependencies:
- dependency-name: delayed_job_active_record
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 03:31:17 +00:00
dependabot[bot]
7f725b9eee
Bump acts-as-taggable-on from 9.0.1 to 10.0.0
...
Bumps [acts-as-taggable-on](https://github.com/mbleigh/acts-as-taggable-on ) from 9.0.1 to 10.0.0.
- [Release notes](https://github.com/mbleigh/acts-as-taggable-on/releases )
- [Changelog](https://github.com/mbleigh/acts-as-taggable-on/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mbleigh/acts-as-taggable-on/compare/v9.0.1...v10.0.0 )
---
updated-dependencies:
- dependency-name: acts-as-taggable-on
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 03:38:13 +01:00
dependabot[bot]
0b30b6a86b
Bump pronto from 0.11.1 to 0.11.2
...
Note we aren't bumping the rugged gem (which Dependabot automatically
did) because it causes Pronto to stop working with GitHub Actions.
Bumps [pronto](https://github.com/prontolabs/pronto ) from 0.11.1 to 0.11.2.
- [Release notes](https://github.com/prontolabs/pronto/releases )
- [Changelog](https://github.com/prontolabs/pronto/blob/master/CHANGELOG.md )
- [Commits](https://github.com/prontolabs/pronto/compare/v0.11.1...v0.11.2 )
---
updated-dependencies:
- dependency-name: pronto
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 03:23:50 +01:00
dependabot[bot]
070cb31858
Bump knapsack_pro from 5.7.0 to 7.0.1
...
Bumps [knapsack_pro](https://github.com/KnapsackPro/knapsack_pro-ruby ) from 5.7.0 to 7.0.1.
- [Changelog](https://github.com/KnapsackPro/knapsack_pro-ruby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v5.7.0...v7.0.1 )
---
updated-dependencies:
- dependency-name: knapsack_pro
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 02:01:18 +00:00
dependabot[bot]
68285aae06
Bump rubocop-performance from 1.19.1 to 1.20.2
...
Note we're removing the Performance/StringIdentifierArgument rule
because now it also replaces methods in interpolation, and we don't
particularly prefer using `send(:"#{method}_name")` over
`send("#{method}_name)`. We actually use the latter about two thirds of
the time.
We'll add this rule again if it ever offers the option to ignore the
cases where interpolation is used, although it's highly doubtful that'll
ever happen because this rule is meant for (insignificant) performance
gains and not for code clarity.
Bumps [rubocop-performance](https://github.com/rubocop/rubocop-performance ) from 1.19.1 to 1.20.2.
- [Release notes](https://github.com/rubocop/rubocop-performance/releases )
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-performance/compare/v1.19.1...v1.20.2 )
---
updated-dependencies:
- dependency-name: rubocop-performance
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 02:43:24 +01:00
Javi Martín
897b5fe872
Merge pull request #5434 from consuldemocracy/dependabot/bundler/rspec-rails-6.1.2
...
Bump rspec-rails from 5.1.2 to 6.1.2
2024-03-23 02:42:57 +01:00
dependabot[bot]
7473c9edf1
Bump rspec-rails from 5.1.2 to 6.1.2
...
Bumps [rspec-rails](https://github.com/rspec/rspec-rails ) from 5.1.2 to 6.1.2.
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md )
- [Commits](https://github.com/rspec/rspec-rails/compare/v5.1.2...v6.1.2 )
---
updated-dependencies:
- dependency-name: rspec-rails
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 01:17:56 +00:00
dependabot[bot]
006816c56e
Bump globalize from 6.2.1 to 6.3.0
...
Bumps [globalize](https://github.com/globalize/globalize ) from 6.2.1 to 6.3.0.
- [Changelog](https://github.com/globalize/globalize/blob/main/CHANGELOG.md )
- [Commits](https://github.com/globalize/globalize/compare/v6.2.1...v6.3.0 )
---
updated-dependencies:
- dependency-name: globalize
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 01:17:14 +00:00
dependabot[bot]
797e9cb7e8
Bump responders from 3.1.0 to 3.1.1
...
Bumps [responders](https://github.com/heartcombo/responders ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/heartcombo/responders/releases )
- [Changelog](https://github.com/heartcombo/responders/blob/main/CHANGELOG.md )
- [Commits](https://github.com/heartcombo/responders/compare/v3.1.0...v3.1.1 )
---
updated-dependencies:
- dependency-name: responders
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 00:59:00 +00:00
dependabot[bot]
9f2f63cc69
Bump paranoia from 2.6.2 to 2.6.3
...
Bumps [paranoia](https://github.com/rubysherpas/paranoia ) from 2.6.2 to 2.6.3.
- [Release notes](https://github.com/rubysherpas/paranoia/releases )
- [Changelog](https://github.com/rubysherpas/paranoia/blob/core/CHANGELOG.md )
- [Commits](https://github.com/rubysherpas/paranoia/compare/v2.6.2...v2.6.3 )
---
updated-dependencies:
- dependency-name: paranoia
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 00:39:08 +00:00
dependabot[bot]
a145531f17
Bump exiftool_vendored from 12.60.0 to 12.80.0
...
Bumps [exiftool_vendored](https://github.com/exiftool-rb/exiftool_vendored.rb ) from 12.60.0 to 12.80.0.
- [Commits](https://github.com/exiftool-rb/exiftool_vendored.rb/compare/v12.60.0...v12.80.0 )
---
updated-dependencies:
- dependency-name: exiftool_vendored
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 00:33:14 +00:00
dependabot[bot]
965283d81d
Bump devise from 4.9.2 to 4.9.3
...
Bumps [devise](https://github.com/heartcombo/devise ) from 4.9.2 to 4.9.3.
- [Release notes](https://github.com/heartcombo/devise/releases )
- [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md )
- [Commits](https://github.com/heartcombo/devise/compare/v4.9.2...v4.9.3 )
---
updated-dependencies:
- dependency-name: devise
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 01:12:35 +01:00
Javi Martín
8ae6b6daef
Merge pull request #5338 from consuldemocracy/dependabot/bundler/spring-4.1.3
...
Bump spring from 2.1.1 to 4.1.3
2024-03-23 01:12:25 +01:00
Javi Martín
e4e0cb5d47
Don't use spring in the test environment
...
Spring now (since version 3, I think) requires `config.cache_classes =
false` in order to work. However, that means that tests would be slower
for developers who don't use spring (like me).
I'd personally vote for removing spring completely (Rails removed it as
a default installation option in August 2021 [1]), but for now we're
keeping it for backwards compatibility.
[1] See pull request 42997 in https://github.com/rails/rails
2024-03-23 00:58:49 +01:00
dependabot[bot]
c87f7a7e9a
Bump spring from 2.1.1 to 4.1.3
...
Bumps [spring](https://github.com/rails/spring ) from 2.1.1 to 4.1.3.
- [Release notes](https://github.com/rails/spring/releases )
- [Changelog](https://github.com/rails/spring/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rails/spring/compare/v2.1.1...v4.1.3 )
---
updated-dependencies:
- dependency-name: spring
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 00:58:48 +01:00
dependabot[bot]
84097bb002
Bump pg from 1.4.3 to 1.4.6
...
Bumps [pg](https://github.com/ged/ruby-pg ) from 1.4.3 to 1.4.6.
- [Changelog](https://github.com/ged/ruby-pg/blob/master/History.md )
- [Commits](https://github.com/ged/ruby-pg/compare/v1.4.3...v1.4.6 )
---
updated-dependencies:
- dependency-name: pg
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-23 00:36:40 +01:00
dependabot[bot]
8e63bd9d20
Bump graphql from 1.12.14 to 1.13.22
...
Bumps [graphql](https://github.com/rmosolgo/graphql-ruby ) from 1.12.14 to 1.13.22.
- [Release notes](https://github.com/rmosolgo/graphql-ruby/releases )
- [Changelog](https://github.com/rmosolgo/graphql-ruby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rmosolgo/graphql-ruby/compare/v1.12.14...v1.13.22 )
---
updated-dependencies:
- dependency-name: graphql
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-22 22:56:42 +01:00
dependabot[bot]
01b193c77c
Bump wicked_pdf from 2.7.0 to 2.8.0
...
Bumps [wicked_pdf](https://github.com/mileszs/wicked_pdf ) from 2.7.0 to 2.8.0.
- [Release notes](https://github.com/mileszs/wicked_pdf/releases )
- [Changelog](https://github.com/mileszs/wicked_pdf/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mileszs/wicked_pdf/commits )
---
updated-dependencies:
- dependency-name: wicked_pdf
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-19 18:45:23 +00:00
dependabot[bot]
3e7422ea96
Bump omniauth from 2.1.1 to 2.1.2
...
Bumps [omniauth](https://github.com/omniauth/omniauth ) from 2.1.1 to 2.1.2.
- [Release notes](https://github.com/omniauth/omniauth/releases )
- [Commits](https://github.com/omniauth/omniauth/compare/v2.1.1...v2.1.2 )
---
updated-dependencies:
- dependency-name: omniauth
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-19 02:40:22 +00:00
dependabot[bot]
d68a9d0f13
Bump airbrake from 13.0.3 to 13.0.4
...
Bumps [airbrake](https://github.com/airbrake/airbrake ) from 13.0.3 to 13.0.4.
- [Changelog](https://github.com/airbrake/airbrake/blob/master/CHANGELOG.md )
- [Commits](https://github.com/airbrake/airbrake/commits/v.13.0.4 )
---
updated-dependencies:
- dependency-name: airbrake
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-19 02:39:59 +00:00
dependabot[bot]
52ec5094f0
Bump view_component from 3.6.0 to 3.11.0
...
Bumps [view_component](https://github.com/viewcomponent/view_component ) from 3.6.0 to 3.11.0.
- [Release notes](https://github.com/viewcomponent/view_component/releases )
- [Changelog](https://github.com/ViewComponent/view_component/blob/main/docs/CHANGELOG.md )
- [Commits](https://github.com/viewcomponent/view_component/compare/v3.6.0...v3.11.0 )
---
updated-dependencies:
- dependency-name: view_component
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 17:34:25 +01:00
dependabot[bot]
331784e926
Bump bullet from 7.0.7 to 7.1.6
...
Bumps [bullet](https://github.com/flyerhzm/bullet ) from 7.0.7 to 7.1.6.
- [Changelog](https://github.com/flyerhzm/bullet/blob/main/CHANGELOG.md )
- [Commits](https://github.com/flyerhzm/bullet/compare/7.0.7...7.1.6 )
---
updated-dependencies:
- dependency-name: bullet
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 03:00:10 +00:00
dependabot[bot]
ac9472cc0b
Bump pdf-reader from 2.11.0 to 2.12.0
...
Bumps [pdf-reader](https://github.com/yob/pdf-reader ) from 2.11.0 to 2.12.0.
- [Changelog](https://github.com/yob/pdf-reader/blob/main/CHANGELOG )
- [Commits](https://github.com/yob/pdf-reader/compare/v2.11.0...v2.12.0 )
---
updated-dependencies:
- dependency-name: pdf-reader
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 03:19:02 +01:00
dependabot[bot]
518eb333b4
Bump faker from 3.2.1 to 3.2.3
...
Bumps [faker](https://github.com/faker-ruby/faker ) from 3.2.1 to 3.2.3.
- [Release notes](https://github.com/faker-ruby/faker/releases )
- [Changelog](https://github.com/faker-ruby/faker/blob/main/CHANGELOG.md )
- [Commits](https://github.com/faker-ruby/faker/compare/v3.2.1...v3.2.3 )
---
updated-dependencies:
- dependency-name: faker
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 02:00:07 +00:00
dependabot[bot]
56311eeefb
Bump factory_bot_rails from 6.2.0 to 6.4.3
...
Bumps [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails ) from 6.2.0 to 6.4.3.
- [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases )
- [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md )
- [Commits](https://github.com/thoughtbot/factory_bot_rails/compare/v6.2.0...v6.4.3 )
---
updated-dependencies:
- dependency-name: factory_bot_rails
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 01:21:14 +00:00
dependabot[bot]
99b9167e72
Bump mdl from 0.12.0 to 0.13.0
...
Bumps [mdl](https://github.com/mivok/markdownlint ) from 0.12.0 to 0.13.0.
- [Changelog](https://github.com/markdownlint/markdownlint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/mivok/markdownlint/compare/v0.12.0...v0.13.0 )
---
updated-dependencies:
- dependency-name: mdl
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-02 00:51:07 +00:00
dependabot[bot]
bbb4c84ddb
Bump rubocop-rails from 2.21.2 to 2.23.1
...
Bumps [rubocop-rails](https://github.com/rubocop/rubocop-rails ) from 2.21.2 to 2.23.1.
- [Release notes](https://github.com/rubocop/rubocop-rails/releases )
- [Changelog](https://github.com/rubocop/rubocop-rails/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-rails/compare/v2.21.2...v2.23.1 )
---
updated-dependencies:
- dependency-name: rubocop-rails
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-01 23:46:40 +00:00
dependabot[bot]
139da18b19
Bump capybara from 3.39.2 to 3.40.0
...
Bumps [capybara](https://github.com/teamcapybara/capybara ) from 3.39.2 to 3.40.0.
- [Changelog](https://github.com/teamcapybara/capybara/blob/master/History.md )
- [Commits](https://github.com/teamcapybara/capybara/compare/3.39.2...3.40.0 )
---
updated-dependencies:
- dependency-name: capybara
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-01 19:53:06 +00:00
dependabot[bot]
86b72ad7be
Bump rubocop-rspec from 2.24.1 to 2.27.0
...
Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec ) from 2.24.1 to 2.27.0.
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases )
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.24.1...v2.27.0 )
---
updated-dependencies:
- dependency-name: rubocop-rspec
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-01 19:22:10 +00:00
dependabot[bot]
7fc40ef3d3
Bump rubocop-factory_bot from 2.24.0 to 2.25.1
...
Bumps [rubocop-factory_bot](https://github.com/rubocop/rubocop-factory_bot ) from 2.24.0 to 2.25.1.
- [Release notes](https://github.com/rubocop/rubocop-factory_bot/releases )
- [Changelog](https://github.com/rubocop/rubocop-factory_bot/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-factory_bot/compare/v2.24.0...v2.25.1 )
---
updated-dependencies:
- dependency-name: rubocop-factory_bot
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-01 18:09:55 +00:00
dependabot[bot]
5772e1b14e
Bump rubocop-capybara from 2.19.0 to 2.20.0
...
Note that this version changed the default enforced styles for
ClickLinkOrButtonStyle and NegationMatcher, so we're now specifying
them.
Bumps [rubocop-capybara](https://github.com/rubocop/rubocop-capybara ) from 2.19.0 to 2.20.0.
- [Release notes](https://github.com/rubocop/rubocop-capybara/releases )
- [Changelog](https://github.com/rubocop/rubocop-capybara/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop-capybara/compare/v2.19.0...v2.20.0 )
---
updated-dependencies:
- dependency-name: rubocop-capybara
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-01 18:38:13 +01:00
Javi Martín
9ecab3bac6
Bump Rails to version 6.1.7.7
2024-02-28 16:04:38 +01:00