Skip to content

Commit 2b828af

Browse files
committed
Try more aggressive approach
1 parent 217c129 commit 2b828af

18 files changed

+3
-172
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,17 @@ jobs:
3535
- dalli3
3636
- redis_5
3737
- redis_4
38-
- connection_pool_dalli
3938
- active_support_8_1_redis_cache_store
40-
- active_support_8_1_redis_cache_store_pooled
4139
- active_support_8_0_redis_cache_store
42-
- active_support_8_0_redis_cache_store_pooled
4340
- active_support_7_2_redis_cache_store
44-
- active_support_7_2_redis_cache_store_pooled
4541
- active_support_7_1_redis_cache_store
46-
- active_support_7_1_redis_cache_store_pooled
4742
- active_support_7_0_redis_cache_store
48-
- active_support_7_0_redis_cache_store_pooled
4943
- redis_store
5044
exclude:
5145
- gemfile: rails_7_0
5246
ruby: '3.4'
5347
- gemfile: active_support_7_0_redis_cache_store
5448
ruby: '3.4'
55-
- gemfile: active_support_7_0_redis_cache_store_pooled
56-
ruby: '3.4'
5749
- gemfile: rails_7_2
5850
ruby: '3.0'
5951
- gemfile: rails_7_2
@@ -62,10 +54,6 @@ jobs:
6254
ruby: '3.0'
6355
- gemfile: active_support_7_2_redis_cache_store
6456
ruby: '2.7'
65-
- gemfile: active_support_7_2_redis_cache_store_pooled
66-
ruby: '3.0'
67-
- gemfile: active_support_7_2_redis_cache_store_pooled
68-
ruby: '2.7'
6957
- gemfile: rails_8_0
7058
ruby: '3.1'
7159
- gemfile: rails_8_0
@@ -78,12 +66,6 @@ jobs:
7866
ruby: '3.0'
7967
- gemfile: active_support_8_0_redis_cache_store
8068
ruby: '2.7'
81-
- gemfile: active_support_8_0_redis_cache_store_pooled
82-
ruby: '3.1'
83-
- gemfile: active_support_8_0_redis_cache_store_pooled
84-
ruby: '3.0'
85-
- gemfile: active_support_8_0_redis_cache_store_pooled
86-
ruby: '2.7'
8769
- gemfile: rails_8_1
8870
ruby: '3.1'
8971
- gemfile: rails_8_1
@@ -96,12 +78,6 @@ jobs:
9678
ruby: '3.0'
9779
- gemfile: active_support_8_1_redis_cache_store
9880
ruby: '2.7'
99-
- gemfile: active_support_8_1_redis_cache_store_pooled
100-
ruby: '3.1'
101-
- gemfile: active_support_8_1_redis_cache_store_pooled
102-
ruby: '3.0'
103-
- gemfile: active_support_8_1_redis_cache_store_pooled
104-
ruby: '2.7'
10581
env:
10682
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
10783
steps:

Appraisals

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -29,98 +29,42 @@ appraise "rails_7-0" do
2929
end
3030

3131
appraise "dalli3" do
32-
# Direct version requirement on connection_pool
33-
# can be removed once https://github.com/petergoldstein/dalli/pull/1049 is fixed and released
34-
gem "connection_pool", "~> 2.5"
3532
gem "dalli", "~> 3.0"
3633
end
3734

3835
appraise "redis_5" do
39-
# Direct version requirement on connection_pool
40-
# can be removed once https://github.com/rails/rails#56291 is fixed and released
41-
gem "connection_pool", "~> 2.5"
4236
gem "redis", "~> 5.0"
4337
end
4438

4539
appraise "redis_4" do
46-
# Direct version requirement on connection_pool
47-
# can be removed once https://github.com/rails/rails#56291 is fixed and released
48-
gem "connection_pool", "~> 2.5"
4940
gem "redis", "~> 4.0"
5041
end
5142

52-
appraise "connection_pool_dalli" do
53-
gem "connection_pool", "~> 2.2"
54-
gem "dalli", "~> 3.0"
55-
end
56-
5743
appraise "active_support_8-1_redis_cache_store" do
5844
gem "activesupport", "~> 8.1.0"
59-
# Direct version requirement on connection_pool
60-
# can be removed once https://github.com/rails/rails#56291 is fixed and released
61-
gem "connection_pool", "~> 2.5"
62-
gem "redis", "~> 5.0"
63-
end
64-
65-
appraise "active_support_8-1_redis_cache_store_pooled" do
66-
gem "activesupport", "~> 8.1.0"
67-
gem "connection_pool", "~> 2.2"
6845
gem "redis", "~> 5.0"
6946
end
7047

7148
appraise "active_support_8-0_redis_cache_store" do
7249
gem "activesupport", "~> 8.0.0"
73-
# Direct version requirement on connection_pool
74-
# can be removed once https://github.com/rails/rails#56291 is fixed and released
75-
gem "connection_pool", "~> 2.5"
76-
gem "redis", "~> 5.0"
77-
end
78-
79-
appraise "active_support_8-0_redis_cache_store_pooled" do
80-
gem "activesupport", "~> 8.0.0"
81-
gem "connection_pool", "~> 2.2"
8250
gem "redis", "~> 5.0"
8351
end
8452

8553
appraise "active_support_7-2_redis_cache_store" do
8654
gem "activesupport", "~> 7.2.0"
87-
gem "connection_pool", "~> 2.5"
88-
gem "redis", "~> 5.0"
89-
end
90-
91-
appraise "active_support_7-2_redis_cache_store_pooled" do
92-
gem "activesupport", "~> 7.2.0"
93-
gem "connection_pool", "~> 2.2"
9455
gem "redis", "~> 5.0"
9556
end
9657

9758
appraise "active_support_7-1_redis_cache_store" do
9859
gem "activesupport", "~> 7.1.0"
99-
gem "connection_pool", "~> 2.5"
100-
gem "redis", "~> 5.0"
101-
end
102-
103-
appraise "active_support_7-1_redis_cache_store_pooled" do
104-
gem "activesupport", "~> 7.1.0"
105-
gem "connection_pool", "~> 2.2"
10660
gem "redis", "~> 5.0"
10761
end
10862

10963
appraise "active_support_7-0_redis_cache_store" do
11064
gem "activesupport", "~> 7.0.0"
111-
gem "connection_pool", "~> 2.5"
112-
gem "redis", "~> 5.0"
113-
end
114-
115-
appraise "active_support_7-0_redis_cache_store_pooled" do
116-
gem "activesupport", "~> 7.0.0"
117-
gem "connection_pool", "~> 2.2"
11865
gem "redis", "~> 5.0"
11966
end
12067

12168
appraise "redis_store" do
122-
# Direct version requirement on connection_pool
123-
# can be removed once https://github.com/rails/rails#56291 is fixed and released
124-
gem "connection_pool", "~> 2.5"
12569
gem "redis-store", "~> 1.5"
12670
end

gemfiles/active_support_7_0_redis_cache_store.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.0.0"
6-
gem "connection_pool", "~> 2.5"
76
gem "redis", "~> 5.0"
87

98
group :maintenance, optional: true do

gemfiles/active_support_7_0_redis_cache_store_pooled.gemfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

gemfiles/active_support_7_1_redis_cache_store.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.1.0"
6-
gem "connection_pool", "~> 2.5"
76
gem "redis", "~> 5.0"
87

98
group :maintenance, optional: true do

gemfiles/active_support_7_1_redis_cache_store_pooled.gemfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

gemfiles/active_support_7_2_redis_cache_store.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 7.2.0"
6-
gem "connection_pool", "~> 2.5"
76
gem "redis", "~> 5.0"
87

98
group :maintenance, optional: true do

gemfiles/active_support_7_2_redis_cache_store_pooled.gemfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

gemfiles/active_support_8_0_redis_cache_store.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
source "https://rubygems.org"
44

55
gem "activesupport", "~> 8.0.0"
6-
gem "connection_pool", "~> 2.5"
76
gem "redis", "~> 5.0"
87

98
group :maintenance, optional: true do

gemfiles/active_support_8_0_redis_cache_store_pooled.gemfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)