From 2c4447863a8b7c9480361781cfcf8c69b0ef7a08 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Sun, 4 May 2025 10:36:36 +0300 Subject: [PATCH 1/2] Redis 8.0.0. --- Casks/redis.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Casks/redis.rb b/Casks/redis.rb index 06f52e8..bc5171c 100644 --- a/Casks/redis.rb +++ b/Casks/redis.rb @@ -1,13 +1,13 @@ cask "redis" do arch arm: "arm64", intel: "x86_64" - version "8.0-rc1" - sha256 arm: "c185dbeed8682658c170d7932507b2f2b7d90cdc4d8591a443f6cc1a0667f259", - intel: "68e6508c08963795d5e3e112173049dbb680a45f4600951f8e7bf6ff3891985d" + version "8.0.0" + sha256 arm: "e215d7df0a6af692b310b95c45b33b0cc5702682ce3245fee691551cd62c3201", + intel: "15e5d013a3a731a0d3e2323e2bbada7097da7a16e0ce775b24297dd0ecde502a" url "https://packages.redis.io/homebrew/redis-ce-#{version}-#{arch}.zip" - name "Redis Community Edition - Pre-Release" - desc "THIS IS A PRE-RELEASE VERSION!! Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps." + name "Redis Open Source" + desc "Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps." homepage "https://redis.io/" depends_on macos: ">= :ventura" @@ -82,8 +82,7 @@ end caveats <<~EOS - 🚨THIS IS A PRE-RELEASE VERSION!! BREAKING CHANGES MAY OCCUR WITHOUT NOTICE!!🚨 - Redis Community Edition has been successfully installed! + Redis Open Source has been successfully installed! The default configuration file has been copied to: #{HOMEBREW_PREFIX}/etc/redis.conf From b7eb383742187db30283d26476b2ac290de7c409 Mon Sep 17 00:00:00 2001 From: adamiBs Date: Sun, 4 May 2025 10:41:20 +0300 Subject: [PATCH 2/2] Update test tap name --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9172d2d..c107370 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: run: | export HOMEBREW_GITHUB_API_TOKEN=$GITHUB_TOKEN brew update - brew tap ${{ vars.REDIS_TAP }} . + brew tap redis/redis . - name: Install Redis CE run: | @@ -124,4 +124,4 @@ jobs: - name: Test uninstall run: | brew uninstall ${{ matrix.cask }} - brew untap ${{ vars.REDIS_TAP }} + brew untap redis/redis