re2 2.23.0-x86_64-linux-gnu → 2.24.0-x86_64-linux-gnu

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 56272741687a7162b4edc4db172fac75431d672eabaeec71d13014c594645be5
4
- data.tar.gz: ca0c07046e15ddb23bdcf0b1223594b21c090a0a274d401deafae838fc517c93
3
+ metadata.gz: 72fb9c1043581686814a891f0443e91c800a4f10e31e242f2b00aa715cf26899
4
+ data.tar.gz: 8e2fbc7091b0aee3097eaa9ed6ef343f5f8319aacdd0cd41bbfce9af3de3a725
5
5
  SHA512:
6
- metadata.gz: 8d69727d4cfba8128212ded9337ae509c7b1b84074536ee37be7a839c104f08a821d334a961cdddf8afece1fa74550510f75224f6c1d1c7cdbdc6b858701794b
7
- data.tar.gz: 910b20c5dff9d19dbd5e9bef73584bacac2736deb7b12d195f15b286b4ada5afb2cb409169a10f59fcd75e4f62f32e4c90375719cbbac17f498aad3a6337bbc0
6
+ metadata.gz: 000b65451dac326e63f6f4ae8fc14ae987522ebbb64e930a2a86bcd75ab75c63764acf0e558f9abfa915d52d34538c55f7119fda4bfde26b592d8fd4b6789b54
7
+ data.tar.gz: 77a343154f4a350db71e92c9c8996b0f31c6328a49426bee5bd52f0848b056bbd0faa9e952bc4d1e63dc41410db26be5caa61457309bb00e5050fd967ebfa0b2
data/README.md CHANGED
@@ -6,7 +6,7 @@ Python".
6
6
 
7
7
  [![Build Status](https://github.com/mudge/re2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/re2/actions)
8
8
 
9
- **Current version:** 2.23.0
9
+ **Current version:** 2.24.0
10
10
  **Bundled RE2 version:** libre2.11 (2025-11-05)
11
11
 
12
12
  ```ruby
data/dependencies.yml CHANGED
@@ -3,5 +3,5 @@ libre2:
3
3
  version: '2025-11-05'
4
4
  sha256: 87f6029d2f6de8aa023654240a03ada90e876ce9a4676e258dd01ea4c26ffd67
5
5
  abseil:
6
- version: '20250814.1'
7
- sha256: 1692f77d1739bacf3f94337188b78583cf09bab7e420d2dc6c5605a4f86785a1
6
+ version: '20260107.1'
7
+ sha256: 4314e2a7cbac89cac25a2f2322870f343d81579756ceff7f431803c2c9090195
data/ext/re2/extconf.rb CHANGED
@@ -110,7 +110,7 @@ module RE2
110
110
  process_recipe(abseil_recipe) do |recipe|
111
111
  recipe.configure_options << '-DABSL_PROPAGATE_CXX_STD=ON'
112
112
  # Workaround for https://github.com/abseil/abseil-cpp/issues/1510
113
- recipe.configure_options << '-DCMAKE_CXX_FLAGS=-DABSL_FORCE_WAITER_MODE=4' if MiniPortile.windows?
113
+ recipe.configure_options << '-DCMAKE_CXX_FLAGS=-DABSL_FORCE_WAITER_MODE=4 -D_WIN32_WINNT=0x0601' if MiniPortile.windows?
114
114
  end
115
115
 
116
116
  process_recipe(re2_recipe) do |recipe|