Skip to content

Commit

Permalink
Bump activesupport from 7.0.8 to 7.1.0 (#73)
Browse files Browse the repository at this point in the history
Bumps [activesupport](https://github.com/rails/rails) from 7.0.8 to 7.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/rails/rails/releases">activesupport's releases</a>.</em></p>
<blockquote>
<h2>7.1.0</h2>
<h2>Active Support</h2>
<ul>
<li>
<p>Fix <code>AS::MessagePack</code> with <code>ENV[&quot;RAILS_MAX_THREADS&quot;]</code>.</p>
<p><em>Jonathan Hefner</em></p>
</li>
<li>
<p>Add a new public API for broadcasting logs</p>
<p>This feature existed for a while but was until now a private API.
Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and
is used by default in the development environment to write logs both on STDOUT and in the
&quot;development.log&quot; file.</p>
<p>Basic usage:</p>
<pre lang="ruby"><code>stdout_logger = Logger.new(STDOUT)
file_logger = Logger.new(&quot;development.log&quot;)
broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
<p>broadcast.info(&quot;Hello!&quot;) # The &quot;Hello!&quot; message is written on STDOUT and in the log file.
</code></pre></p>
<p>Adding other sink(s) to the broadcast:</p>
<pre lang="ruby"><code>broadcast = ActiveSupport::BroadcastLogger.new
broadcast.broadcast_to(Logger.new(STDERR))
</code></pre>
<p>Remove a sink from the broadcast:</p>
<pre lang="ruby"><code>stdout_logger = Logger.new(STDOUT)
broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
<p>broadcast.stop_broadcasting_to(stdout_logger)
</code></pre></p>
<p><em>Edouard Chin</em></p>
</li>
<li>
<p>Fix Range#overlap? not taking empty ranges into account on Ruby &lt; 3.3</p>
<p><em>Nobuyoshi Nakada</em>, <em>Shouichi Kamiya</em>, <em>Hartley McGuire</em></p>
</li>
<li>
<p>Use Ruby 3.3 Range#overlap? if available</p>
<p><em>Yasuo Honda</em></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rails/rails/blob/v7.1.0/activesupport/CHANGELOG.md">activesupport's changelog</a>.</em></p>
<blockquote>
<h2>Rails 7.1.0 (October 05, 2023)</h2>
<ul>
<li>No changes.</li>
</ul>
<h2>Rails 7.1.0.rc2 (October 01, 2023)</h2>
<ul>
<li>
<p>Fix <code>AS::MessagePack</code> with <code>ENV[&quot;RAILS_MAX_THREADS&quot;]</code>.</p>
<p><em>Jonathan Hefner</em></p>
</li>
</ul>
<h2>Rails 7.1.0.rc1 (September 27, 2023)</h2>
<ul>
<li>
<p>Add a new public API for broadcasting logs</p>
<p>This feature existed for a while but was until now a private API.
Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and
is used by default in the development environment to write logs both on STDOUT and in the
&quot;development.log&quot; file.</p>
<p>Basic usage:</p>
<pre lang="ruby"><code>stdout_logger = Logger.new(STDOUT)
file_logger = Logger.new(&quot;development.log&quot;)
broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
<p>broadcast.info(&quot;Hello!&quot;) # The &quot;Hello!&quot; message is written on STDOUT and in the log file.
</code></pre></p>
<p>Adding other sink(s) to the broadcast:</p>
<pre lang="ruby"><code>broadcast = ActiveSupport::BroadcastLogger.new
broadcast.broadcast_to(Logger.new(STDERR))
</code></pre>
<p>Remove a sink from the broadcast:</p>
<pre lang="ruby"><code>stdout_logger = Logger.new(STDOUT)
broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
<p>broadcast.stop_broadcasting_to(stdout_logger)
</code></pre></p>
<p><em>Edouard Chin</em></p>
</li>
<li>
<p>Fix Range#overlap? not taking empty ranges into account on Ruby &lt; 3.3</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rails/rails/commit/d39db5d1891f7509cde2efc425c9d69bbb77e670"><code>d39db5d</code></a> Preparing for 7.1.0 release</li>
<li><a href="https://github.com/rails/rails/commit/1490788ecd064e3a01a5bc2e89473405330dd807"><code>1490788</code></a> Merge pull request <a href="https://redirect.github.com/rails/rails/issues/49470">#49470</a> from rails/rm-eager-load-model-schema</li>
<li><a href="https://github.com/rails/rails/commit/06e13c1fe2ff782b6d16c3d7a2f53925c7093ff5"><code>06e13c1</code></a> Merge pull request <a href="https://redirect.github.com/rails/rails/issues/49466">#49466</a> from ghiculescu/number_converter_big_number</li>
<li><a href="https://github.com/rails/rails/commit/665b1f3a87627e97865f800f2a2fd69bdf8c4852"><code>665b1f3</code></a> Merge pull request <a href="https://redirect.github.com/rails/rails/issues/49458">#49458</a> from eugeneius/broadcast_delegate_block</li>
<li><a href="https://github.com/rails/rails/commit/8340f8ffdc6279c566b2b37c59674ecb158b4618"><code>8340f8f</code></a> Preparing for 7.1.0.rc2 release</li>
<li><a href="https://github.com/rails/rails/commit/5f3ec415c6d2c17e3dd447cc6bd16a281ce1ae2b"><code>5f3ec41</code></a> Sync CHANGELOG</li>
<li><a href="https://github.com/rails/rails/commit/aa093f76b988f77a232129ce40f9852807b17c52"><code>aa093f7</code></a> Merge pull request <a href="https://redirect.github.com/rails/rails/issues/49447">#49447</a> from jonathanhefner/message_pack-fix-rails_max_threads</li>
<li><a href="https://github.com/rails/rails/commit/f5baa7a2ef3b10c172c125d0460f582dafe33900"><code>f5baa7a</code></a> Revert &quot;Also rescue TZInfo::ZoneinfoDirectoryNotFound when loading time zone ...</li>
<li><a href="https://github.com/rails/rails/commit/9a5ce7cde509fc8a6b7857334caa6d19fd1033f0"><code>9a5ce7c</code></a> Merge pull request <a href="https://redirect.github.com/rails/rails/issues/49417">#49417</a> from Edouard-chin/ec-logger-fix</li>
<li><a href="https://github.com/rails/rails/commit/e5386cb4024ed3f5f28ee8260a6377450363efdc"><code>e5386cb</code></a> Preparing for 7.1.0.rc1 release</li>
<li>Additional commits viewable in <a href="https://github.com/rails/rails/compare/v7.0.8...v7.1.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=activesupport&package-manager=bundler&previous-version=7.0.8&new-version=7.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
  • Loading branch information
dependabot[bot] authored Oct 5, 2023
1 parent cfa8369 commit f7d7227
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,28 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.8)
activesupport (7.1.0)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
base64 (0.1.1)
bigdecimal (3.1.4)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
diff-lcs (1.5.0)
drb (2.1.1)
ruby2_keywords
i18n (1.14.1)
concurrent-ruby (~> 1.0)
mini_portile2 (2.8.4)
minitest (5.20.0)
mutex_m (0.1.2)
nokogiri (1.15.4)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
Expand All @@ -37,6 +48,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
ruby2_keywords (0.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)

Expand Down

0 comments on commit f7d7227

Please sign in to comment.