From b0dc2e345c0219121ebf966b88dac63eea80c3e6 Mon Sep 17 00:00:00 2001 From: Taishi Kasuga Date: Fri, 27 Sep 2024 08:29:25 +0900 Subject: [PATCH] build: release 0.11.2 (#382) --- .github/workflows/test.yaml | 16 ++++++++-------- redis-cluster-client.gemspec | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c5b7aac..0cc9513 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,9 +32,16 @@ jobs: - {redis: '7.2', ruby: '3.3', driver: 'hiredis'} - {redis: '7.2', ruby: '3.3', driver: 'hiredis', compose: compose.ssl.yaml} - {redis: '7.2', ruby: '3.3', compose: compose.replica.yaml, replica: '2'} + - {task: test_cluster_state, pattern: 'PrimaryOnly', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} + - {task: test_cluster_state, pattern: 'Pooled', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} + - {task: test_cluster_state, pattern: 'ScaleReadRandom', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} + - {task: test_cluster_state, pattern: 'ScaleReadRandomWithPrimary', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} + - {task: test_cluster_state, pattern: 'ScaleReadLatency', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} + - {ruby: 'jruby'} + - {ruby: 'truffleruby'} + - {task: test_cluster_broken, restart: 'no', startup: '6'} - {redis: '8', ruby: '3.3', compose: compose.valkey.yaml, replica: '2'} - {redis: '7.2', ruby: '3.2', compose: compose.auth.yaml} - - {task: test_cluster_broken, restart: 'no', startup: '6'} - {redis: '7.0', ruby: '3.1'} - {redis: '6.2', ruby: '3.0'} - {redis: '5.0', ruby: '2.7'} @@ -42,13 +49,6 @@ jobs: - {task: test_cluster_scale, pattern: 'Pipeline', compose: compose.scale.yaml, startup: '8'} - {task: test_cluster_scale, pattern: 'Transaction', compose: compose.scale.yaml, startup: '8'} - {task: test_cluster_scale, pattern: 'PubSub', compose: compose.scale.yaml, startup: '8'} - - {ruby: 'jruby'} - - {ruby: 'truffleruby'} - - {task: test_cluster_state, pattern: 'PrimaryOnly', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} - - {task: test_cluster_state, pattern: 'Pooled', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} - - {task: test_cluster_state, pattern: 'ScaleReadRandom', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} - - {task: test_cluster_state, pattern: 'ScaleReadRandomWithPrimary', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} - - {task: test_cluster_state, pattern: 'ScaleReadLatency', compose: compose.valkey.yaml, redis: '8', replica: '2', startup: '9'} env: REDIS_VERSION: ${{ matrix.redis || '7.2' }} DOCKER_COMPOSE_FILE: ${{ matrix.compose || 'compose.yaml' }} diff --git a/redis-cluster-client.gemspec b/redis-cluster-client.gemspec index b55f2af..93fab2c 100644 --- a/redis-cluster-client.gemspec +++ b/redis-cluster-client.gemspec @@ -3,7 +3,7 @@ Gem::Specification.new do |s| s.name = 'redis-cluster-client' s.summary = 'A Redis cluster client for Ruby' - s.version = '0.11.1' + s.version = '0.11.2' s.license = 'MIT' s.homepage = 'https://github.com/redis-rb/redis-cluster-client' s.authors = ['Taishi Kasuga']