From bf723484af9cc3aaeb4d7213f374b46e182bfcd8 Mon Sep 17 00:00:00 2001 From: jshearer Date: Thu, 19 Sep 2024 18:48:49 +0000 Subject: [PATCH] Release `0.5.3` ## What's Changed * Batch draft spec upserts, rather than attempting to paginate the response by @jshearer in https://github.com/estuary/flow/pull/1629 * use max build_id for validating local specs by @psFried in https://github.com/estuary/flow/pull/1636 * Update pagination to use 0-indexed inclusive ranges, and page by response length rather than fixed page size. by @jshearer in https://github.com/estuary/flow/pull/1637 --- Formula/flowctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/flowctl.rb b/Formula/flowctl.rb index 1eb91c5..3b578e8 100644 --- a/Formula/flowctl.rb +++ b/Formula/flowctl.rb @@ -3,15 +3,15 @@ class Flowctl < Formula homepage "https://github.com/estuary/flow" # When updating this formula to a new version, you need to update this url as well as the "sha256" and "version" below! # For example: "shasum -a 256 v0.3.2.tar.gz" - url "https://github.com/estuary/flow/archive/refs/tags/v0.5.1.tar.gz" - sha256 "ee16584353ac552795fdbcf66479fefa0f26251be0be4acc47dc81c69548270d" + url "https://github.com/estuary/flow/archive/refs/tags/v0.5.3.tar.gz" + sha256 "fd26c6054b5316ed863c8fe290fbc2febfc685c412296aa53d611eff5d01de42" license "Business Source License 1.1" - version "0.5.1" + version "0.5.3" on_macos do resource "flowctl-binary" do - url "https://github.com/estuary/flow/releases/download/v0.5.1/flowctl-multiarch-macos" - sha256 "f4788e6cbcbb22810689615351bc7b7bad53bc5d60cf41462bd9846d1c496ba8" + url "https://github.com/estuary/flow/releases/download/v0.5.3/flowctl-multiarch-macos" + sha256 "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5" end end @@ -20,8 +20,8 @@ class Flowctl < Formula raise "flowctl can only be installed on x86_64 linux systems, please reach out to support@estuary.dev if you need flowctl on arm" end resource "flowctl-binary" do - url "https://github.com/estuary/flow/releases/download/v0.5.1/flowctl-x86_64-linux" - sha256 "2f1280dd3c49e2fe654344be66395ec2ca50f0f04fad5757319366bbba47e0ed" + url "https://github.com/estuary/flow/releases/download/v0.5.3/flowctl-x86_64-linux" + sha256 "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5" end end