In this version, we fixed warnings when used with Ruby 2.7 across the entire framework.
Following are the list of other changes, per-framework.
Active Support
Array#to_sentence no longer returns a frozen string.
Before:
['one', 'two'].to_sentence.frozen?
# => true
After:
['one', 'two'].to_sentence.frozen?
# => false
Nicolas Dular
Update ActiveSupport::Messages::Metadata#fresh? to work for cookies with expiry set when
ActiveSupport.parse_json_times = true.
Christian Gregg
Active Model
No changes.
Active Record
Recommend applications don't use the database kwarg in connected_to
The database kwarg in connected_to was meant to be used for one-off scripts but is often used in requests. This is really dangerous because it re-establishes a connection every time. It's deprecated in 6.1 and will be removed in 6.2 without replacement. This change soft deprecates it in 6.0 by removing documentation.
Eileen M. Uchitelle
Fix support for PostgreSQL 11+ partitioned indexes.
Sebastián Palma
Add support for beginless ranges, introduced in Ruby 2.7.
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 commands and options
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 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)
@dependabot use these labels will set the current labels as the default for future PRs for this repo and language
@dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
@dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
@dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/plashchynski/crono/pull/88
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 5/26/2020
**Status:** ❌ Closed
**Base:** `master` ← **Head:** `dependabot/bundler/activesupport-6.0.3.1`
---
### 📝 Commits (1)
- [`02e937f`](https://github.com/plashchynski/crono/commit/02e937f2de7ea5c4f2214310b32985b960f4d115) Bump activesupport from 5.0.0.1 to 6.0.3.1
### 📊 Changes
**1 file changed** (+15 additions, -14 deletions)
<details>
<summary>View changed files</summary>
📝 `Gemfile.lock` (+15 -14)
</details>
### 📄 Description
Bumps [activesupport](https://github.com/rails/rails) from 5.0.0.1 to 6.0.3.1.
<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>6.0.3</h2>
<p>In this version, we fixed warnings when used with Ruby 2.7 across the entire framework.</p>
<p>Following are the list of other changes, per-framework.</p>
<h2>Active Support</h2>
<ul>
<li>
<p><code>Array#to_sentence</code> no longer returns a frozen string.</p>
<p>Before:</p>
<pre><code>['one', 'two'].to_sentence.frozen?
# => true
</code></pre>
<p>After:</p>
<pre><code>['one', 'two'].to_sentence.frozen?
# => false
</code></pre>
<p><em>Nicolas Dular</em></p>
</li>
<li>
<p>Update <code>ActiveSupport::Messages::Metadata#fresh?</code> to work for cookies with expiry set when
<code>ActiveSupport.parse_json_times = true</code>.</p>
<p><em>Christian Gregg</em></p>
</li>
</ul>
<h2>Active Model</h2>
<ul>
<li>No changes.</li>
</ul>
<h2>Active Record</h2>
<ul>
<li>
<p>Recommend applications don't use the <code>database</code> kwarg in <code>connected_to</code></p>
<p>The database kwarg in <code>connected_to</code> was meant to be used for one-off scripts but is often used in requests. This is really dangerous because it re-establishes a connection every time. It's deprecated in 6.1 and will be removed in 6.2 without replacement. This change soft deprecates it in 6.0 by removing documentation.</p>
<p><em>Eileen M. Uchitelle</em></p>
</li>
<li>
<p>Fix support for PostgreSQL 11+ partitioned indexes.</p>
<p><em>Sebastián Palma</em></p>
</li>
<li>
<p>Add support for beginless ranges, introduced in Ruby 2.7.</p>
<p><em>Josh Goodall</em></p>
</li>
</ul>
</tr></table> ... (truncated)
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rails/rails/blob/v6.0.3.1/activesupport/CHANGELOG.md">activesupport's changelog</a>.</em></p>
<blockquote>
<h2>Rails 6.0.3.1 (May 18, 2020)</h2>
<ul>
<li>
<p>[CVE-2020-8165] Deprecate Marshal.load on raw cache read in RedisCacheStore</p>
</li>
<li>
<p>[CVE-2020-8165] Avoid Marshal.load on raw cache value in MemCacheStore</p>
</li>
</ul>
<h2>Rails 6.0.3 (May 06, 2020)</h2>
<ul>
<li>
<p><code>Array#to_sentence</code> no longer returns a frozen string.</p>
<p>Before:</p>
<pre><code>['one', 'two'].to_sentence.frozen?
# => true
</code></pre>
<p>After:</p>
<pre><code>['one', 'two'].to_sentence.frozen?
# => false
</code></pre>
<p><em>Nicolas Dular</em></p>
</li>
<li>
<p>Update <code>ActiveSupport::Messages::Metadata#fresh?</code> to work for cookies with expiry set when
<code>ActiveSupport.parse_json_times = true</code>.</p>
<p><em>Christian Gregg</em></p>
</li>
</ul>
<h2>Rails 6.0.2.2 (March 19, 2020)</h2>
<ul>
<li>No changes.</li>
</ul>
<h2>Rails 6.0.2.1 (December 18, 2019)</h2>
<ul>
<li>No changes.</li>
</ul>
<h2>Rails 6.0.2 (December 13, 2019)</h2>
<ul>
<li>
<p>Eager load translations during initialization.</p>
<p><em>Diego Plentz</em></p>
</li>
<li>
<p>Use per-thread CPU time clock on <code>ActiveSupport::Notifications</code>.</p>
<p><em>George Claghorn</em></p>
</li>
</ul>
<h2>Rails 6.0.1 (November 5, 2019)</h2>
</tr></table> ... (truncated)
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/rails/rails/commit/34991a6ae2fc68347c01ea7382fa89004159e019"><code>34991a6</code></a> Preparing for 6.0.3.1 release</li>
<li><a href="https://github.com/rails/rails/commit/2c8fe2ac0442bb78698dc9516882598020972014"><code>2c8fe2a</code></a> bumping version, updating changelog</li>
<li><a href="https://github.com/rails/rails/commit/0ad524ab6e350412f7093a14f7a358e5f50b0c3f"><code>0ad524a</code></a> update changelog</li>
<li><a href="https://github.com/rails/rails/commit/bd39a13cb9936e7261b271830950aae9bd0706bc"><code>bd39a13</code></a> activesupport: Deprecate Marshal.load on raw cache read in RedisCacheStore</li>
<li><a href="https://github.com/rails/rails/commit/0a7ce52486adb36984174bd51257a0069fe7a9db"><code>0a7ce52</code></a> activesupport: Avoid Marshal.load on raw cache value in MemCacheStore</li>
<li><a href="https://github.com/rails/rails/commit/b738f1930f3c82f51741ef7241c1fee691d7deb2"><code>b738f19</code></a> Preparing for 6.0.3 release</li>
<li><a href="https://github.com/rails/rails/commit/509b9da209a8481fef8310bc14d6c6cd27c629dc"><code>509b9da</code></a> Preparing for 6.0.3.rc1 release</li>
<li><a href="https://github.com/rails/rails/commit/02d07cccb736506b3dd6d465c8017c9010e74b28"><code>02d07cc</code></a> adds missing require [Fixes <a href="https://github-redirect.dependabot.com/rails/rails/issues/39042">#39042</a>]</li>
<li><a href="https://github.com/rails/rails/commit/f2f7bcc047fa42344742e508016c65ed54419ade"><code>f2f7bcc</code></a> Fix Builder::XmlMarkup lazy load in Array#to_xml</li>
<li><a href="https://github.com/rails/rails/commit/320734ea8a2cc518fe8f20b326d5c508afb40502"><code>320734e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rails/rails/issues/36941">#36941</a> from ts-3156/master</li>
<li>Additional commits viewable in <a href="https://github.com/rails/rails/compare/v5.0.0.1...v6.0.3.1">compare view</a></li>
</ul>
</details>
<br />
[](https://help.github.com/articles/configuring-automated-security-fixes)
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 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)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/plashchynski/crono/network/alerts).
</details>
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/plashchynski/crono/pull/88
Author: @dependabot[bot]
Created: 5/26/2020
Status: ❌ Closed
Base:
master← Head:dependabot/bundler/activesupport-6.0.3.1📝 Commits (1)
02e937fBump activesupport from 5.0.0.1 to 6.0.3.1📊 Changes
1 file changed (+15 additions, -14 deletions)
View changed files
📝
Gemfile.lock(+15 -14)📄 Description
Bumps activesupport from 5.0.0.1 to 6.0.3.1.
Release notes
Sourced from activesupport's releases.
Changelog
Sourced from activesupport's changelog.
Commits
34991a6Preparing for 6.0.3.1 release2c8fe2abumping version, updating changelog0ad524aupdate changelogbd39a13activesupport: Deprecate Marshal.load on raw cache read in RedisCacheStore0a7ce52activesupport: Avoid Marshal.load on raw cache value in MemCacheStoreb738f19Preparing for 6.0.3 release509b9daPreparing for 6.0.3.rc1 release02d07ccadds missing require [Fixes #39042]f2f7bccFix Builder::XmlMarkup lazy load in Array#to_xml320734eMerge pull request #36941 from ts-3156/masterDependabot 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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from the Security Alerts page.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.