Skip to content

Redis 8.0.0. #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -124,4 +124,4 @@ jobs:
- name: Test uninstall
run: |
brew uninstall ${{ matrix.cask }}
brew untap ${{ vars.REDIS_TAP }}
brew untap redis/redis
13 changes: 6 additions & 7 deletions Casks/redis.rb
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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
Expand Down