Bumps the dependencies group with 4 updates: 
[omniauth-apple](https://github.com/nhosoya/omniauth-apple), 
[aws-sdk-s3](https://github.com/aws/aws-sdk-ruby), 
[minitest](https://github.com/minitest/minitest) and 
[minitest-focus](https://github.com/seattlerb/minitest-focus).

Updates `omniauth-apple` from 1.3.0 to 1.4.0
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a 
href="https://github.com/nhosoya/omniauth-apple/commits">compare 
view</a></li>
</ul>
</details>
<br />

Updates `aws-sdk-s3` from 1.209.0 to 1.210.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a 
href="https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3/CHANGELOG.md">aws-sdk-s3's
 changelog</a>.</em></p>
<blockquote>
<h2>1.210.1 (2026-01-06)</h2>
<ul>
<li>Issue - Normalize response encoding to UTF-8 for proper XML error 
parsing in HTTP 200 responses.</li>
</ul>
<h2>1.210.0 (2026-01-05)</h2>
<ul>
<li>
<p>Feature - Code Generated Changes, see 
<code>./build_tools</code> or 
<code>aws-sdk-core</code>'s CHANGELOG.md for details.</p>
</li>
<li>
<p>Feature - Added <code>:http_chunk_size</code> parameter to 
<code>TransferManager#upload_file</code> to control the buffer size 
when streaming request bodies over HTTP. Larger chunk sizes may improve network 
throughput at the cost of higher memory usage (Ruby MRI only).</p>
</li>
<li>
<p>Feature - Improved memory efficiency when calculating request 
checksums for large file uploads (Ruby MRI only).</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a 
href="https://github.com/aws/aws-sdk-ruby/commits">compare 
view</a></li>
</ul>
</details>
<br />

Updates `minitest` from 5.27.0 to 6.0.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a 
href="https://github.com/minitest/minitest/blob/master/History.rdoc">minitest's
 changelog</a>.</em></p>
<blockquote>
<p>=== 6.0.1 / 2025-12-26</p>
<ul>
<li>
<p>1 minor enhancement:</p>
<ul>
<li>Added new rake task <code>test:fu</code> to 
Minitest::TestTask, to only run
tests with FU (focused units?) in their name. This should mostly
obviate the need for the minitest-focus plugin.</li>
</ul>
</li>
<li>
<p>5 bug fixes:</p>
<ul>
<li>Fixed --help and --version exiting 1. (grosser)</li>
<li>Fixed method signature of Minitest::Benchmark.run. 
(flavorjones)</li>
<li>Flush stdout/stderr before exit./bin/minitest -Ilib ./bug1046.rb:1 
< /dev/null (grosser)</li>
<li>Improved usage banner output by reordering and 
reformatting.</li>
<li>Normalize paths while processing file.rb:line args.</li>
</ul>
</li>
</ul>
<p>=== 6.0.0 / 2025-12-17</p>
<p>This is a major release. Read this.</p>
<p>Please give feedback here: <a 
href="https://redirect.github.com/minitest/minitest/issues/1040">minitest/minitest#1040</a></p>
<p>Oh god... here we go... (again)</p>
<ul>
<li>
<p>8 deaths in the family(!!):</p>
<ul>
<li>Deleted MiniTest and MiniTest::Unit::TestCase compatibility 
namespaces.</li>
<li>Deleted all use of Marshal for serialization.</li>
<li>Deleted maglev? and rubinius? guard methods. LOL.</li>
<li>Deleted all minitest/spec expectations from Object. Use 
_/value/expect.</li>
<li>Dropped minitest/mock.rb. This has been extracted to the 
minitest-mock gem.</li>
<li>assert_equal(nil, value) no longer allowed. Use assert_nil to be 
explicit.</li>
<li>Removed assert_send. Use assert_predicate or 
assert_operator.</li>
<li>Removed Minitest::Test#class_name.</li>
</ul>
</li>
<li>
<p>7 major (oft incompatible) changes:</p>
<ul>
<li>Big: Major refactored MT6's run path!
<ul>
<li>Minitest.__run -> Minitest.run_all_suites</li>
<li>Runnable.run -> Runnable.run_suite & 
Runnable.filter_runnable_methods</li>
<li>Runnable.run_one_method -> Runnable.run</li>
<li>Removed Minitest.run_one_method (might bring it back to 
raise?)</li>
</ul>
</li>
<li>Removed deprecated <!-- raw HTML omitted 
-->ENV["N"]<!-- raw HTML omitted --> to specify 
number of parallel tests. Use MT_CPU.</li>
<li>Renamed +options[:filter]+ to +options[:include]+, added <!-- raw 
HTML omitted -->--include<!-- raw HTML omitted --> cmdline option.
<ul>
<li><!-- raw HTML omitted -->--name<!-- raw HTML omitted --> 
is still handled, but that will be removed in the future.</li>
</ul>
</li>
<li>Renamed Minitest::Runnable#test_order to #run_order.</li>
<li>If #message is passed a proc then that proc overrides all other 
output.
<ul>
<li>They are no longer chained!</li>
<li>And it does less for formatting of your output.</li>
</ul>
</li>
<li>Removed reporter arg from with_info_handler as it has never(?) been 
used. (HACK?)</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a 
href="https://github.com/minitest/minitest/commit/edd37ce7240a645054485b8c470927765e65351b"><code>edd37ce</code></a>
 prepped for release</li>
<li><a 
href="https://github.com/minitest/minitest/commit/248c9e2d60d428d66e05284520012f7e93cfe2bc"><code>248c9e2</code></a>
 - Fixed method signature of Minitest::Benchmark.run. (flavorjones)</li>
<li><a 
href="https://github.com/minitest/minitest/commit/18bbdb12c057e4c1debd69049955bc4e8ae0ff71"><code>18bbdb1</code></a>
 - Flush stdout/stderr before exit./bin/minitest -Ilib ./bug1046.rb:1 < 
/dev/n...</li>
<li><a 
href="https://github.com/minitest/minitest/commit/50a1b1f99f57622b24a3a66d76c248ef2599503f"><code>50a1b1f</code></a>
 - Normalize paths while processing file.rb:line args.</li>
<li><a 
href="https://github.com/minitest/minitest/commit/372b997e3eeb52e9486a653793bf7d0541545ec6"><code>372b997</code></a>
 - Fixed --help and --version exiting 1. (grosser)</li>
<li><a 
href="https://github.com/minitest/minitest/commit/c05a8986b24fddcb3f58379af1356a79920cd210"><code>c05a898</code></a>
 - Improved usage banner output by reordering and reformatting.</li>
<li><a 
href="https://github.com/minitest/minitest/commit/692c2e781c928b9db4758b432efa96d2dc11dbea"><code>692c2e7</code></a>
 + Added new rake task <code>test:fu</code> to Minitest::TestTask, 
to only run tests with...</li>
<li><a 
href="https://github.com/minitest/minitest/commit/5bbab5cc4e99fd2b43ecdd386c7dc81f2db5072c"><code>5bbab5c</code></a>
 Fix format of History.rdoc. (y-yagi)</li>
<li><a 
href="https://github.com/minitest/minitest/commit/2f3d88eeed8a55ed504e362c42e150eaa623ecd5"><code>2f3d88e</code></a>
 prepped for release</li>
<li><a 
href="https://github.com/minitest/minitest/commit/756f9652e4b38937d8027944a57e66c431a0c321"><code>756f965</code></a>
 Add Hoe's :cov plugin and start to look at gaps</li>
<li>Additional commits viewable in <a 
href="https://github.com/minitest/minitest/compare/v5.27.0...v6.0.1">compare
 view</a></li>
</ul>
</details>
<br />

Updates `minitest-focus` from 1.4.0 to 1.4.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a 
href="https://github.com/minitest/minitest-focus/blob/master/History.rdoc">minitest-focus's
 changelog</a>.</em></p>
<blockquote>
<p>=== 1.4.1 / 2025-12-31</p>
<ul>
<li>
<p>4 bug fixes:</p>
<ul>
<li>MT6: Load focus plugin if minitest/focus is required. 
(mattbrictson)</li>
<li>Loosened the minitest dependency to include MT6.</li>
<li>Dropped MT4.</li>
<li>MT6: Minor option processing fixes.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a 
href="https://github.com/minitest/minitest-focus/commit/3ae1eb4b69b313b5a052a4a8606d1a34e902fa5e"><code>3ae1eb4</code></a>
 prepped for release</li>
<li><a 
href="https://github.com/minitest/minitest-focus/commit/d80b151ccb78de224829cecf7168bcae47eb41f8"><code>d80b151</code></a>
 - Load focus plugin if minitest/focus is required. (mattbrictson)</li>
<li><a 
href="https://github.com/minitest/minitest-focus/commit/abb452aadba325e9a63febd6b96b80c0f12c4288"><code>abb452a</code></a>
 - Minor option processing fixes for MT6.</li>
<li><a 
href="https://github.com/minitest/minitest-focus/commit/40913ad09313ec5a46b9df74fcda5fb5dbfc2b39"><code>40913ad</code></a>
 - Loosened the minitest dependency to include MT6. Dropped MT4</li>
<li><a 
href="https://github.com/minitest/minitest-focus/commit/02cbbc41519c04bf46b1bf14042e2a0ceddb7763"><code>02cbbc4</code></a>
 Gave History and README rdoc extension.</li>
<li>See full diff in <a 
href="https://github.com/seattlerb/minitest-focus/compare/v1.4.0...v1.4.1">compare
 view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have 
been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block 
automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You 
can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this 
group update PR and stop Dependabot creating any more for the specific 
dependency's major version (unless you unignore this specific 
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this 
group update PR and stop Dependabot creating any more for the specific 
dependency's minor version (unless you unignore this specific 
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR 
and stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will 
remove the ignore condition of the specified dependency and ignore conditions


</details>
You can view, comment on, or merge this pull request online at:

  https://github.com/openstreetmap/openstreetmap-website/pull/6690

-- Commit Summary --

  * Bump the dependencies group with 4 updates

-- File Changes --

    M Gemfile.lock (34)

-- Patch Links --

https://github.com/openstreetmap/openstreetmap-website/pull/6690.patch
https://github.com/openstreetmap/openstreetmap-website/pull/6690.diff

-- 
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6690
You are receiving this because you are subscribed to this thread.

Message ID: <openstreetmap/openstreetmap-website/pull/[email protected]>
_______________________________________________
rails-dev mailing list
[email protected]
https://lists.openstreetmap.org/listinfo/rails-dev

Reply via email to