Skip to content
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

Prep for v1.5.0 #66

Merged
merged 1 commit into from
Jan 8, 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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Tap
run: |-
mkdir -p $(brew --repo)/Library/Taps/citest
Expand Down
8 changes: 4 additions & 4 deletions Formula/sqitch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
class Sqitch < Formula
desc "Sensible database change management"
homepage "https://sqitch.org/"
url "https://www.cpan.org/authors/id/D/DW/DWHEELER/App-Sqitch-v1.4.1.tar.gz"
sha256 "caf31cc8f772e3a4c9d4b3ff3a8f684a6eb5b1b3c261f4ddc0f90a88c36007c6"
url "https://www.cpan.org/authors/id/D/DW/DWHEELER/App-Sqitch-v1.5.0.tar.gz"
sha256 "a158871693edf1e9ffe3ad03e798b56500737b801c0a288c63f811ef9a140184"
license "MIT"
head "https://github.com/sqitchers/sqitch.git", branch: "develop"

Expand All @@ -22,10 +22,11 @@ class Sqitch < Formula
option "with-snowflake-support", "Support for managing Snowflake databases"
option "with-std-env", "Build against custom non-Homebrew dependencies"

depends_on "openssl@3"
depends_on "cpm" => :build
depends_on FirebirdReq if build.with? "firebird-support"
depends_on "libpq" if build.with? "postgres-support"
depends_on "mysql-client" if build.with? "mysql-support"
depends_on "mariadb" if build.with? "mysql-support"
depends_on OracleReq if build.with? "oracle-support"
depends_on "perl"
depends_on "sqlite" if build.with? "sqlite-support"
Expand All @@ -34,7 +35,6 @@ class Sqitch < Formula

if build.head?
depends_on "gettext" => :build
depends_on "openssl@3" => :build
end

if build.with? "vertica-support"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ client at runtime.
brew install sqitch --with-mysql-support
```

Support for managing [MySQL](https://www.mysql.com) databases. This feature
optionally depends on the Homebrew `mysql-client` formula, both to build the
necessary database driver at build time, and to use the `mysql` client to
manage databases at runtime. It does not install the Homebrew MySQL server.
Support for managing [MySQL](https://www.mysql.com) and
[MariaDB](https://mariadb.com) databases. This feature optionally depends on
the Homebrew `mariadb` formula to build the necessary database driver at build
time and to use the `mysql` client to manage databases at runtime. It does not
install the Homebrew MySQL server.

### `--with-firebird-support`

Expand Down
Loading