From 239af2aad5c6948709fa43e148549affb2940a31 Mon Sep 17 00:00:00 2001 From: Stan Hu <stanhu@gmail.com> Date: Thu, 2 Jun 2022 15:37:25 -0700 Subject: [PATCH] Upgrade re2 gem to v1.4.0 * Changes: https://github.com/mudge/re2/blob/main/CHANGELOG.md * Diff: https://my.diffend.io/gems/re2/1.2.0/1.4.0 This fixes a few minor bugs and improves support for building on an Apple M1. Changelog: changed --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 50ef52835222d..e13c42ed96ff1 100644 --- a/Gemfile +++ b/Gemfile @@ -219,7 +219,7 @@ gem 'ruby-progressbar', '~> 1.10' gem 'settingslogic', '~> 2.0.9' # Linear-time regex library for untrusted regular expressions -gem 're2', '~> 1.2.0' +gem 're2', '~> 1.4.0' # Misc diff --git a/Gemfile.lock b/Gemfile.lock index 41794b552ca44..61aaed678cc99 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1026,7 +1026,7 @@ GEM rbtree (0.4.4) rchardet (1.8.0) rdoc (6.3.2) - re2 (1.2.0) + re2 (1.4.0) recaptcha (4.13.1) json recursive-open-struct (1.1.3) @@ -1621,7 +1621,7 @@ DEPENDENCIES rainbow (~> 3.0) rbtrace (~> 0.4) rdoc (~> 6.3.2) - re2 (~> 1.2.0) + re2 (~> 1.4.0) recaptcha (~> 4.11) redis (~> 4.4.0) redis-actionpack (~> 5.2.0) -- GitLab