Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build(deps): Bump the bundler-dev group with 5 updates (#3774)
Bumps the bundler-dev group with 5 updates: | Package | From | To | | --- | --- | --- | | [dotenv-rails](https://github.com/bkeepers/dotenv) | `2.8.1` | `3.0.2` | | [ruby-lsp](https://github.com/Shopify/ruby-lsp) | `0.14.0` | `0.14.1` | | [dotenv](https://github.com/bkeepers/dotenv) | `2.8.1` | `3.0.2` | | [prism](https://github.com/ruby/prism) | `0.21.0` | `0.24.0` | | [sorbet-runtime](https://github.com/sorbet/sorbet) | `0.5.11247` | `0.5.11262` | Updates `dotenv-rails` from 2.8.1 to 3.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bkeepers/dotenv/releases">dotenv-rails's releases</a>.</em></p> <blockquote> <h2>3.0.2</h2> <h2>What's Changed</h2> <ul> <li>Restore ability to mutate Dotenv::Rails.files by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/486">bkeepers/dotenv#486</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.1...v3.0.2">https://github.com/bkeepers/dotenv/compare/v3.0.1...v3.0.2</a></p> <h2>3.0.1</h2> <h2>What's Changed</h2> <ul> <li>Disable autorestore if using climate_control or ice_age by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/483">bkeepers/dotenv#483</a></li> <li>Join files to Rails.root at load time by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/484">bkeepers/dotenv#484</a></li> <li>Manually check optional Rails dependency version by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/481">bkeepers/dotenv#481</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1">https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1</a></p> <h2>3.0.0</h2> <p>See <a href="https://redirect.github.com/bkeepers/dotenv/issues/476">#476</a> for more details and to discuss this release.</p> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> <li><code>\n</code> is no longer expanded into a newline in quoted strings. Use multi-line strings with real line breaks, or set <code>DOTENV_LINEBREAK_MODE=legacy</code> to preserve the old behavior. <a href="https://github.com/nitsujri"><code>@nitsujri</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> <li><code>ENV</code> will be <a href="https://github.com/bkeepers/dotenv#autorestore-in-tests">automatically restored between tests</a> (<code>ActiveSupport::TestCase</code> and <code>Rspec</code>). <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/475">bkeepers/dotenv#475</a></li> <li>Fixed precedence when using <code>Dotenv::Rails.overload</code>. So now <code>.env.development.local</code> will overwrite <code>.env.local</code>, which will overwrite <code>.env.development</code>, which will overwrite <code>.env</code>. <a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> - <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li>The instrumentation event <code>dotenv.load</code> has been renamed to <code>load.dotenv</code> to properly make use of namespaces in <a href="https://guides.rubyonrails.org/active_support_instrumentation.html">ActiveSupport::Notifications</a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a></li> </ul> <p><strong>Other improvements</strong></p> <ul> <li>All changes to ENV will be logged in Rails apps. <a href="https://redirect.github.com/bkeepers/dotenv/pull/473">bkeepers/dotenv#473</a></li> <li>Fixed an issue where <code>rake</code> loaded development files (<code>.env*development</code>) for test-related tasks. <a href="https://redirect.github.com/bkeepers/dotenv/pull/470">bkeepers/dotenv#470</a></li> <li>Add <code>-i</code>/<code>--ignore</code> option to <code>dotenv</code> CLI to optionally ignore missing files. <a href="https://github.com/stevenharman"><code>@stevenharman</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li>You can <a href="https://github.com/bkeepers/dotenv#customizing-rails">customize which files get loaded</a> by setting <code>Dotenv::Rails.files</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>The <code>dotenv-rails</code> gem is now superfluous. It's not technically deprecated yet and will continue to work, but the <code>dotenv</code> gem does the same thing. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv::Railtie</code> has been deprecated. Use <code>Dotenv::Rails</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv.overload</code> has been replaced with <code>overwrite</code>. <code>overload</code> will still work and is not technically deprecated, but documentation refers to <code>Dotenv.overwrite</code> now. <a href="https://redirect.github.com/bkeepers/dotenv/pull/469">bkeepers/dotenv#469</a></li> </ul> <p><strong>New Contributors</strong></p> <ul> <li><a href="https://github.com/stevenharman"><code>@stevenharman</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li><a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li><a href="https://github.com/nitsujri"><code>@nitsujri</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta">https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta</a></p> <h2>3.0.0.beta</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bkeepers/dotenv/blob/main/Changelog.md">dotenv-rails's changelog</a>.</em></p> <blockquote> <h2>3.0.2</h2> <ul> <li>Fix: Restore ability to mutate Dotenv::Rails.files by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/486">bkeepers/dotenv#486</a></li> </ul> <h2>3.0.1</h2> <p><strong>What's Changed</strong></p> <ul> <li>Disable autorestore if using climate_control or ice_age by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/483">bkeepers/dotenv#483</a></li> <li>Join files to Rails.root at load time by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/484">bkeepers/dotenv#484</a></li> <li>Manually check optional Rails dependency version by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/481">bkeepers/dotenv#481</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1">https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1</a></p> <h2>3.0.0</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> <li><code>\n</code> is no longer expanded into a newline in quoted strings. Use multi-line strings with real line breaks, or set <code>DOTENV_LINEBREAK_MODE=legacy</code> to preserve the old behavior. <a href="https://github.com/nitsujri"><code>@nitsujri</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> <li><code>ENV</code> will be <a href="https://github.com/bkeepers/dotenv#autorestore-in-tests">automatically restored between tests</a> (<code>ActiveSupport::TestCase</code> and <code>Rspec</code>). <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/475">bkeepers/dotenv#475</a></li> <li>Fixed precedence when using <code>Dotenv::Rails.overload</code>. So now <code>.env.development.local</code> will overwrite <code>.env.local</code>, which will overwrite <code>.env.development</code>, which will overwrite <code>.env</code>. <a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> - <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li>The instrumentation event <code>dotenv.load</code> has been renamed to <code>load.dotenv</code> to properly make use of namespaces in <a href="https://guides.rubyonrails.org/active_support_instrumentation.html">ActiveSupport::Notifications</a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a></li> </ul> <p><strong>Other improvements</strong></p> <ul> <li>All changes to ENV will be logged in Rails apps. <a href="https://redirect.github.com/bkeepers/dotenv/pull/473">bkeepers/dotenv#473</a></li> <li>Fixed an issue where <code>rake</code> loaded development files (<code>.env*development</code>) for test-related tasks. <a href="https://redirect.github.com/bkeepers/dotenv/pull/470">bkeepers/dotenv#470</a></li> <li>Add <code>-i</code>/<code>--ignore</code> option to <code>dotenv</code> CLI to optionally ignore missing files. <a href="https://github.com/stevenharman"><code>@stevenharman</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li>You can <a href="https://github.com/bkeepers/dotenv#customizing-rails">customize which files get loaded</a> by setting <code>Dotenv::Rails.files</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>The <code>dotenv-rails</code> gem is now superfluous. It's not technically deprecated yet and will continue to work, but the <code>dotenv</code> gem does the same thing. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv::Railtie</code> has been deprecated. Use <code>Dotenv::Rails</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv.overload</code> has been replaced with <code>overwrite</code>. <code>overload</code> will still work and is not technically deprecated, but documentation refers to <code>Dotenv.overwrite</code> now. <a href="https://redirect.github.com/bkeepers/dotenv/pull/469">bkeepers/dotenv#469</a></li> </ul> <p><strong>New Contributors</strong></p> <ul> <li><a href="https://github.com/stevenharman"><code>@stevenharman</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li><a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li><a href="https://github.com/nitsujri"><code>@nitsujri</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0">https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bkeepers/dotenv/commit/6dd03851298c4bd250c36ef14ba253892db04063"><code>6dd0385</code></a> Prepare for 3.0.2</li> <li><a href="https://github.com/bkeepers/dotenv/commit/6a5615dcaba54582cf8d809ccd65ced9f18332fe"><code>6a5615d</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/486">#486</a> from bkeepers/mutate-rails-files</li> <li><a href="https://github.com/bkeepers/dotenv/commit/069ec4f8e41a9860ceba35b0fc297652db6552fa"><code>069ec4f</code></a> Restore ability to mutate Dotenv::Rails.files</li> <li><a href="https://github.com/bkeepers/dotenv/commit/09caa4d08403770bf70bdd9f4b2404ea99e5312f"><code>09caa4d</code></a> Prepare for 3.0.1 release</li> <li><a href="https://github.com/bkeepers/dotenv/commit/ac8ea7662f453a82ecd80505e7f03305e1e18a81"><code>ac8ea76</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/481">#481</a> from bkeepers/check-optional-rails</li> <li><a href="https://github.com/bkeepers/dotenv/commit/3a2500c2f92c860e6f037590643713baab1af0b5"><code>3a2500c</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/484">#484</a> from bkeepers/rails-root</li> <li><a href="https://github.com/bkeepers/dotenv/commit/229cfc342cbe822c6a9903fc721d911f6ee9df26"><code>229cfc3</code></a> Join files to Rails.root at load time</li> <li><a href="https://github.com/bkeepers/dotenv/commit/cb8cd5803bdc510c9335003ea840b237193b4e03"><code>cb8cd58</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/483">#483</a> from bkeepers/autorestore-cc</li> <li><a href="https://github.com/bkeepers/dotenv/commit/86390d29019afb271e48cb64fd304c056e5846ba"><code>86390d2</code></a> Disable autorestore if using climate_control or ice_age</li> <li><a href="https://github.com/bkeepers/dotenv/commit/f55afd89bf7cca411d5edb8ecce56d5dde349738"><code>f55afd8</code></a> Manually check optional Rails dependency version</li> <li>Additional commits viewable in <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.2">compare view</a></li> </ul> </details> <br /> Updates `ruby-lsp` from 0.14.0 to 0.14.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Shopify/ruby-lsp/releases">ruby-lsp's releases</a>.</em></p> <blockquote> <h2>v0.14.1</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>🐛 Bug Fixes</h3> <ul> <li>Handle self receiver and string arguments for attribute accessors in document symbol by <a href="https://github.com/henriquebcustodio"><code>@henriquebcustodio</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1366">Shopify/ruby-lsp#1366</a></li> <li>Handle missing constant nodes in document symbol by <a href="https://github.com/snutij"><code>@snutij</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1359">Shopify/ruby-lsp#1359</a></li> <li>Fix handle resolve multiple methods by <a href="https://github.com/snutij"><code>@snutij</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1380">Shopify/ruby-lsp#1380</a></li> </ul> <h3>🛠 Other Changes</h3> <ul> <li>replaced occurrences of node.slice with node.full_name by <a href="https://github.com/haiderashfaq"><code>@haiderashfaq</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1287">Shopify/ruby-lsp#1287</a></li> <li>Update show syntax tree gif by <a href="https://github.com/gmcgibbon"><code>@gmcgibbon</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1376">Shopify/ruby-lsp#1376</a></li> <li>Add note about finding other community addons by <a href="https://github.com/vinistock"><code>@vinistock</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1377">Shopify/ruby-lsp#1377</a></li> <li>Update RubyLsp::Requests::CodeLens demo gif by <a href="https://github.com/gmcgibbon"><code>@gmcgibbon</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1378">Shopify/ruby-lsp#1378</a></li> <li>Use Snapper generator for RDoc documentation by <a href="https://github.com/vinistock"><code>@vinistock</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1384">Shopify/ruby-lsp#1384</a></li> <li>Automatically install <code>ruby-lsp-rails</code> as part of custom bundle by <a href="https://github.com/andyw8"><code>@andyw8</code></a> in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1381">Shopify/ruby-lsp#1381</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/gmcgibbon"><code>@gmcgibbon</code></a> made their first contribution in <a href="https://redirect.github.com/Shopify/ruby-lsp/pull/1376">Shopify/ruby-lsp#1376</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/Shopify/ruby-lsp/compare/v0.14.0...v0.14.1">https://github.com/Shopify/ruby-lsp/compare/v0.14.0...v0.14.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Shopify/ruby-lsp/commit/e43ac5287577a6652768048ca9eb8b81a40e7d82"><code>e43ac52</code></a> Automatically install <code>ruby-lsp-rails</code> as part of custom bundle (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1381">#1381</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/c9d9a8500fdf199574613f668c42f914167c71c6"><code>c9d9a85</code></a> Bump version to v0.14.1</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/20c5b612dad0729b6f2d91b325f8f96ffe722b24"><code>20c5b61</code></a> Bump Prism to 0.24 (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1385">#1385</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/feb2f8a1b5165d00e38db957033777c15211b2e4"><code>feb2f8a</code></a> Use Snapper generator for RDoc documentation (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1384">#1384</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/64b63bbbf981e24ecfef3926c85cb57c74454deb"><code>64b63bb</code></a> Fix handle resolve multiple methods (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1380">#1380</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/c1ae8fdcdb238d128a519fdde02741a011e47c74"><code>c1ae8fd</code></a> Update RubyLsp::Requests::CodeLens demo gif (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1378">#1378</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/1e364b50985e330766937d183babf5c784fcd9fa"><code>1e364b5</code></a> Handle missing constant nodes in document symbol (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1359">#1359</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/dc98d5aa3a9e1d5d010375e8af3464fc6de0054d"><code>dc98d5a</code></a> Add note about finding other community addons (<a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1377">#1377</a>)</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/a8d3f2ad453bab1be59a94adeee4775fc0811559"><code>a8d3f2a</code></a> Merge pull request <a href="https://redirect.github.com/Shopify/ruby-lsp/issues/1375">#1375</a> from Shopify/dependabot/bundler/minor-and-patch-a2c8...</li> <li><a href="https://github.com/Shopify/ruby-lsp/commit/dad0c8c63886f317eaa79ef424cdbe7736594b2a"><code>dad0c8c</code></a> Reinsert windows platforms</li> <li>Additional commits viewable in <a href="https://github.com/Shopify/ruby-lsp/compare/v0.14.0...v0.14.1">compare view</a></li> </ul> </details> <br /> Updates `dotenv` from 2.8.1 to 3.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bkeepers/dotenv/releases">dotenv's releases</a>.</em></p> <blockquote> <h2>3.0.2</h2> <h2>What's Changed</h2> <ul> <li>Restore ability to mutate Dotenv::Rails.files by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/486">bkeepers/dotenv#486</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.1...v3.0.2">https://github.com/bkeepers/dotenv/compare/v3.0.1...v3.0.2</a></p> <h2>3.0.1</h2> <h2>What's Changed</h2> <ul> <li>Disable autorestore if using climate_control or ice_age by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/483">bkeepers/dotenv#483</a></li> <li>Join files to Rails.root at load time by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/484">bkeepers/dotenv#484</a></li> <li>Manually check optional Rails dependency version by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/481">bkeepers/dotenv#481</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1">https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1</a></p> <h2>3.0.0</h2> <p>See <a href="https://redirect.github.com/bkeepers/dotenv/issues/476">#476</a> for more details and to discuss this release.</p> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> <li><code>\n</code> is no longer expanded into a newline in quoted strings. Use multi-line strings with real line breaks, or set <code>DOTENV_LINEBREAK_MODE=legacy</code> to preserve the old behavior. <a href="https://github.com/nitsujri"><code>@nitsujri</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> <li><code>ENV</code> will be <a href="https://github.com/bkeepers/dotenv#autorestore-in-tests">automatically restored between tests</a> (<code>ActiveSupport::TestCase</code> and <code>Rspec</code>). <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/475">bkeepers/dotenv#475</a></li> <li>Fixed precedence when using <code>Dotenv::Rails.overload</code>. So now <code>.env.development.local</code> will overwrite <code>.env.local</code>, which will overwrite <code>.env.development</code>, which will overwrite <code>.env</code>. <a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> - <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li>The instrumentation event <code>dotenv.load</code> has been renamed to <code>load.dotenv</code> to properly make use of namespaces in <a href="https://guides.rubyonrails.org/active_support_instrumentation.html">ActiveSupport::Notifications</a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a></li> </ul> <p><strong>Other improvements</strong></p> <ul> <li>All changes to ENV will be logged in Rails apps. <a href="https://redirect.github.com/bkeepers/dotenv/pull/473">bkeepers/dotenv#473</a></li> <li>Fixed an issue where <code>rake</code> loaded development files (<code>.env*development</code>) for test-related tasks. <a href="https://redirect.github.com/bkeepers/dotenv/pull/470">bkeepers/dotenv#470</a></li> <li>Add <code>-i</code>/<code>--ignore</code> option to <code>dotenv</code> CLI to optionally ignore missing files. <a href="https://github.com/stevenharman"><code>@stevenharman</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li>You can <a href="https://github.com/bkeepers/dotenv#customizing-rails">customize which files get loaded</a> by setting <code>Dotenv::Rails.files</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>The <code>dotenv-rails</code> gem is now superfluous. It's not technically deprecated yet and will continue to work, but the <code>dotenv</code> gem does the same thing. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv::Railtie</code> has been deprecated. Use <code>Dotenv::Rails</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv.overload</code> has been replaced with <code>overwrite</code>. <code>overload</code> will still work and is not technically deprecated, but documentation refers to <code>Dotenv.overwrite</code> now. <a href="https://redirect.github.com/bkeepers/dotenv/pull/469">bkeepers/dotenv#469</a></li> </ul> <p><strong>New Contributors</strong></p> <ul> <li><a href="https://github.com/stevenharman"><code>@stevenharman</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li><a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li><a href="https://github.com/nitsujri"><code>@nitsujri</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta">https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0.beta</a></p> <h2>3.0.0.beta</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bkeepers/dotenv/blob/main/Changelog.md">dotenv's changelog</a>.</em></p> <blockquote> <h2>3.0.2</h2> <ul> <li>Fix: Restore ability to mutate Dotenv::Rails.files by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/486">bkeepers/dotenv#486</a></li> </ul> <h2>3.0.1</h2> <p><strong>What's Changed</strong></p> <ul> <li>Disable autorestore if using climate_control or ice_age by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/483">bkeepers/dotenv#483</a></li> <li>Join files to Rails.root at load time by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/484">bkeepers/dotenv#484</a></li> <li>Manually check optional Rails dependency version by <a href="https://github.com/bkeepers"><code>@bkeepers</code></a> in <a href="https://redirect.github.com/bkeepers/dotenv/pull/481">bkeepers/dotenv#481</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1">https://github.com/bkeepers/dotenv/compare/v3.0.0...v3.0.1</a></p> <h2>3.0.0</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Ruby >= 3.0 and Rails >= 6.1 are now required. Lock dotenv to <code>~> 2.0</code> if you are using an outdated Ruby or Rails version. <a href="https://redirect.github.com/bkeepers/dotenv/pull/466">bkeepers/dotenv#466</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/471">bkeepers/dotenv#471</a></li> <li><code>\n</code> is no longer expanded into a newline in quoted strings. Use multi-line strings with real line breaks, or set <code>DOTENV_LINEBREAK_MODE=legacy</code> to preserve the old behavior. <a href="https://github.com/nitsujri"><code>@nitsujri</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> <li><code>ENV</code> will be <a href="https://github.com/bkeepers/dotenv#autorestore-in-tests">automatically restored between tests</a> (<code>ActiveSupport::TestCase</code> and <code>Rspec</code>). <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a>, <a href="https://redirect.github.com/bkeepers/dotenv/pull/475">bkeepers/dotenv#475</a></li> <li>Fixed precedence when using <code>Dotenv::Rails.overload</code>. So now <code>.env.development.local</code> will overwrite <code>.env.local</code>, which will overwrite <code>.env.development</code>, which will overwrite <code>.env</code>. <a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> - <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li>The instrumentation event <code>dotenv.load</code> has been renamed to <code>load.dotenv</code> to properly make use of namespaces in <a href="https://guides.rubyonrails.org/active_support_instrumentation.html">ActiveSupport::Notifications</a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/472">bkeepers/dotenv#472</a></li> </ul> <p><strong>Other improvements</strong></p> <ul> <li>All changes to ENV will be logged in Rails apps. <a href="https://redirect.github.com/bkeepers/dotenv/pull/473">bkeepers/dotenv#473</a></li> <li>Fixed an issue where <code>rake</code> loaded development files (<code>.env*development</code>) for test-related tasks. <a href="https://redirect.github.com/bkeepers/dotenv/pull/470">bkeepers/dotenv#470</a></li> <li>Add <code>-i</code>/<code>--ignore</code> option to <code>dotenv</code> CLI to optionally ignore missing files. <a href="https://github.com/stevenharman"><code>@stevenharman</code></a> <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li>You can <a href="https://github.com/bkeepers/dotenv#customizing-rails">customize which files get loaded</a> by setting <code>Dotenv::Rails.files</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>The <code>dotenv-rails</code> gem is now superfluous. It's not technically deprecated yet and will continue to work, but the <code>dotenv</code> gem does the same thing. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv::Railtie</code> has been deprecated. Use <code>Dotenv::Rails</code>. <a href="https://redirect.github.com/bkeepers/dotenv/pull/468">bkeepers/dotenv#468</a></li> <li><code>Dotenv.overload</code> has been replaced with <code>overwrite</code>. <code>overload</code> will still work and is not technically deprecated, but documentation refers to <code>Dotenv.overwrite</code> now. <a href="https://redirect.github.com/bkeepers/dotenv/pull/469">bkeepers/dotenv#469</a></li> </ul> <p><strong>New Contributors</strong></p> <ul> <li><a href="https://github.com/stevenharman"><code>@stevenharman</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/463">bkeepers/dotenv#463</a></li> <li><a href="https://github.com/eriklovmo"><code>@eriklovmo</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/460">bkeepers/dotenv#460</a></li> <li><a href="https://github.com/nitsujri"><code>@nitsujri</code></a> made their first contribution in <a href="https://redirect.github.com/bkeepers/dotenv/pull/423">bkeepers/dotenv#423</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0">https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bkeepers/dotenv/commit/6dd03851298c4bd250c36ef14ba253892db04063"><code>6dd0385</code></a> Prepare for 3.0.2</li> <li><a href="https://github.com/bkeepers/dotenv/commit/6a5615dcaba54582cf8d809ccd65ced9f18332fe"><code>6a5615d</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/486">#486</a> from bkeepers/mutate-rails-files</li> <li><a href="https://github.com/bkeepers/dotenv/commit/069ec4f8e41a9860ceba35b0fc297652db6552fa"><code>069ec4f</code></a> Restore ability to mutate Dotenv::Rails.files</li> <li><a href="https://github.com/bkeepers/dotenv/commit/09caa4d08403770bf70bdd9f4b2404ea99e5312f"><code>09caa4d</code></a> Prepare for 3.0.1 release</li> <li><a href="https://github.com/bkeepers/dotenv/commit/ac8ea7662f453a82ecd80505e7f03305e1e18a81"><code>ac8ea76</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/481">#481</a> from bkeepers/check-optional-rails</li> <li><a href="https://github.com/bkeepers/dotenv/commit/3a2500c2f92c860e6f037590643713baab1af0b5"><code>3a2500c</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/484">#484</a> from bkeepers/rails-root</li> <li><a href="https://github.com/bkeepers/dotenv/commit/229cfc342cbe822c6a9903fc721d911f6ee9df26"><code>229cfc3</code></a> Join files to Rails.root at load time</li> <li><a href="https://github.com/bkeepers/dotenv/commit/cb8cd5803bdc510c9335003ea840b237193b4e03"><code>cb8cd58</code></a> Merge pull request <a href="https://redirect.github.com/bkeepers/dotenv/issues/483">#483</a> from bkeepers/autorestore-cc</li> <li><a href="https://github.com/bkeepers/dotenv/commit/86390d29019afb271e48cb64fd304c056e5846ba"><code>86390d2</code></a> Disable autorestore if using climate_control or ice_age</li> <li><a href="https://github.com/bkeepers/dotenv/commit/f55afd89bf7cca411d5edb8ecce56d5dde349738"><code>f55afd8</code></a> Manually check optional Rails dependency version</li> <li>Additional commits viewable in <a href="https://github.com/bkeepers/dotenv/compare/v2.8.1...v3.0.2">compare view</a></li> </ul> </details> <br /> Updates `prism` from 0.21.0 to 0.24.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ruby/prism/releases">prism's releases</a>.</em></p> <blockquote> <h2>v0.24.0</h2> <h2>Added</h2> <ul> <li>More support for <code>Prism::Translation::Ripper</code> is added.</li> <li>Support multiple versions for <code>Prism::Translation::Parser</code>.</li> <li>Improved memory usage in the FFI backend.</li> <li>Very large speed and memory improvements for creating the Ruby AST.</li> </ul> <h2>Changed</h2> <ul> <li>Fix location for empty symbol in hash key.</li> <li>Fix parsing a rescue modifier on the value of an assignment when the LHS is a method call with arguments and no parentheses.</li> </ul> <h2>v0.23.0</h2> <h2>Added</h2> <ul> <li>More support for <code>Prism::RipperCompat</code> is added.</li> <li>A significantly faster offset cache for <code>Prism::Translation::Parser</code> is added for files with multibyte characters.</li> <li><code>Prism::Translation::RubyParser</code> is added.</li> <li><code>Prism::ConstantPathTarget#full_name</code> is added.</li> <li><code>version: "3.4.0"</code> is added as an option that is an alias for <code>version: "latest"</code>.</li> <li>Four new APIs are added to <code>Prism::Location</code>: <ul> <li><code>Prism::Location#start_code_units_offset</code></li> <li><code>Prism::Location#end_code_units_offset</code></li> <li><code>Prism::Location#start_code_units_column</code></li> <li><code>Prism::Location#end_code_units_column</code></li> </ul> </li> <li>Invalid multibyte characters are now validated within strings, lists, and heredocs.</li> </ul> <h2>Changed</h2> <ul> <li>When defining <code>def !@</code>, the <code>name_loc</code> was previously only pointing to <code>!</code>, but now includes the <code>@</code>. The <code>name</code> is the same.</li> <li><code>Prism::RipperCompat</code> has been moved to <code>Prism::Translation::Ripper</code>.</li> <li>Many of the error messages that prism produces have been changed to match the error messages that CRuby produces.</li> </ul> <h2>v0.22.0</h2> <h2>Added</h2> <ul> <li>More support for <code>Prism::RipperCompat</code> is added.</li> <li>Support for Ruby 2.7 has been added, and the minimum Ruby requirement has been lowered to 2.7.</li> </ul> <h2>Changed</h2> <ul> <li>The error for an invalid source encoding has a new <code>:argument</code> level to indicate it raises an argument error.</li> <li><code>BeginNode</code> nodes that are used when a class, singleton class, module, method definition, or block have an inline <code>rescue</code>/<code>ensure</code>/<code>else</code> now have their opening locations set to the beginning of the respective keyword.</li> <li>Improved error messages for invalid characters.</li> <li><code>Prism.parse_file</code> and similar APIs will raise more appropriate errors when the file does not exist or cannot be mapped.</li> <li>Correctly handle the <code>recover</code> parameter for <code>Prism::Translation::Parser</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ruby/prism/blob/main/CHANGELOG.md">prism's changelog</a>.</em></p> <blockquote> <h2>[0.24.0] - 2024-02-15</h2> <h3>Added</h3> <ul> <li>More support for <code>Prism::Translation::Ripper</code> is added.</li> <li>Support multiple versions for <code>Prism::Translation::Parser</code>.</li> <li>Improved memory usage in the FFI backend.</li> <li>Very large speed and memory improvements for creating the Ruby AST.</li> </ul> <h3>Changed</h3> <ul> <li>Fix location for empty symbol in hash key.</li> <li>Fix parsing a rescue modifier on the value of an assignment when the LHS is a method call with arguments and no parentheses.</li> </ul> <h2>[0.23.0] - 2024-02-14</h2> <h3>Added</h3> <ul> <li>More support for <code>Prism::RipperCompat</code> is added.</li> <li>A significantly faster offset cache for <code>Prism::Translation::Parser</code> is added for files with multibyte characters.</li> <li><code>Prism::Translation::RubyParser</code> is added.</li> <li><code>Prism::ConstantPathTarget#full_name</code> is added.</li> <li><code>version: "3.4.0"</code> is added as an option that is an alias for <code>version: "latest"</code>.</li> <li>Four new APIs are added to <code>Prism::Location</code>: <ul> <li><code>Prism::Location#start_code_units_offset</code></li> <li><code>Prism::Location#end_code_units_offset</code></li> <li><code>Prism::Location#start_code_units_column</code></li> <li><code>Prism::Location#end_code_units_column</code></li> </ul> </li> <li>Invalid multibyte characters are now validated within strings, lists, and heredocs.</li> </ul> <h3>Changed</h3> <ul> <li>When defining <code>def !@</code>, the <code>name_loc</code> was previously only pointing to <code>!</code>, but now includes the <code>@</code>. The <code>name</code> is the same.</li> <li><code>Prism::RipperCompat</code> has been moved to <code>Prism::Translation::Ripper</code>.</li> <li>Many of the error messages that prism produces have been changed to match the error messages that CRuby produces.</li> </ul> <h2>[0.22.0] - 2024-02-07</h2> <h3>Added</h3> <ul> <li>More support for <code>Prism::RipperCompat</code> is added.</li> <li>Support for Ruby 2.7 has been added, and the minimum Ruby requirement has been lowered to 2.7.</li> </ul> <h3>Changed</h3> <ul> <li>The error for an invalid source encoding has a new <code>:argument</code> level to indicate it raises an argument error.</li> <li><code>BeginNode</code> nodes that are used when a class, singleton class, module, method definition, or block have an inline <code>rescue</code>/<code>ensure</code>/<code>else</code> now have their opening locations set to the beginning of the respective keyword.</li> <li>Improved error messages for invalid characters.</li> <li><code>Prism.parse_file</code> and similar APIs will raise more appropriate errors when the file does not exist or cannot be mapped.</li> <li>Correctly handle the <code>recover</code> parameter for <code>Prism::Translation::Parser</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ruby/prism/commit/20b06022135ae1d22fafaceddaf0b94e230a6f55"><code>20b0602</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2431">#2431</a> from ruby/new-version</li> <li><a href="https://github.com/ruby/prism/commit/3c727a4a33f6adb9367fa36ad48a860604ab8151"><code>3c727a4</code></a> Bump to v0.24.0</li> <li><a href="https://github.com/ruby/prism/commit/64b03810a5640d86798c640a07e4783e451be7c8"><code>64b0381</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2428">#2428</a> from ruby/speed</li> <li><a href="https://github.com/ruby/prism/commit/8e3aad9e270d915cce45b77dbf1493ab23e3b524"><code>8e3aad9</code></a> Fix up invalid syntax</li> <li><a href="https://github.com/ruby/prism/commit/f03cceb5be4a03f2ece0f2f9753312ae52aec188"><code>f03cceb</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2422">#2422</a> from maxprokopiev/fix-empty-symbols</li> <li><a href="https://github.com/ruby/prism/commit/0e0a50c2a81bf42a8e2c6f03df6930b821f9218e"><code>0e0a50c</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2423">#2423</a> from noahgibbs/ripper_compat_equiv_testing</li> <li><a href="https://github.com/ruby/prism/commit/cf821ee56be5dc8c5acfde95bcaf9098259330cb"><code>cf821ee</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2426">#2426</a> from eregon/faster-ffi</li> <li><a href="https://github.com/ruby/prism/commit/184fcdf88a648ea7cb5e1a07939bab9f00ca8d3d"><code>184fcdf</code></a> Merge pull request <a href="https://redirect.github.com/ruby/prism/issues/2419">#2419</a> from koic/support_multi_versioning_for_prism_transla...</li> <li><a href="https://github.com/ruby/prism/commit/de203dca83a939effa9cca8a8be33c0c94a5f418"><code>de203dc</code></a> Speed up creating Ruby AST</li> <li><a href="https://github.com/ruby/prism/commit/9002b3c47d745ca12e9263ba99c4892259b486f6"><code>9002b3c</code></a> Avoid extra String copies in the FFI backend</li> <li>Additional commits viewable in <a href="https://github.com/ruby/prism/compare/v0.21.0...v0.24.0">compare view</a></li> </ul> </details> <br /> Updates `sorbet-runtime` from 0.5.11247 to 0.5.11262 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sorbet/sorbet/releases">sorbet-runtime's releases</a>.</em></p> <blockquote> <h2>sorbet 0.5.11261.20240215173800-82059fc97</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11261', :group => :development gem 'sorbet-runtime', '0.5.11261' </code></pre> <h2>sorbet 0.5.11260.20240215152049-8ba8dd0dd</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11260', :group => :development gem 'sorbet-runtime', '0.5.11260' </code></pre> <h2>sorbet 0.5.11259.20240215132458-d90eff7df</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11259', :group => :development gem 'sorbet-runtime', '0.5.11259' </code></pre> <h2>sorbet 0.5.11258.20240214200345-e9740f057</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11258', :group => :development gem 'sorbet-runtime', '0.5.11258' </code></pre> <h2>sorbet 0.5.11257.20240214112445-0d8b602c7</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11257', :group => :development gem 'sorbet-runtime', '0.5.11257' </code></pre> <h2>sorbet 0.5.11256.20240214083952-9a8357a7a</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11256', :group => :development gem 'sorbet-runtime', '0.5.11256' </code></pre> <h2>sorbet 0.5.11255.20240213171857-83fbacf87</h2> <p>To use Sorbet add this line to your Gemfile:</p> <pre><code>gem 'sorbet', '0.5.11255', :group => :development gem 'sorbet-runtime', '0.5.11255' </code></pre> <h2>sorbet 0.5.11254.20240213155444-dd0bad20c</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sorbet/sorbet/commits">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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information