From 1a2102ed35b78b2353eb3138c902191798ade949 Mon Sep 17 00:00:00 2001 From: Jakob Haahr Taankvist Date: Tue, 27 Feb 2024 14:32:56 +0100 Subject: [PATCH] Release v1.2.8 --- CHANGELOG.md | 8 ++++++++ internal/version.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f534af9..0ef53f4b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v1.2.8] - 2024-02-27 +- Support two-legged OAuth flow (#1304) +- Expose method to get default worker options (#1311) +- Added CloseTime filter to shadower (#1309) +- Making Workflow and Activity registration optional when they are mocked (#1256) +- Addressing difference in workflow interceptors when using the testkit (#1257) +- remove time.Sleep from tests (#1305) + ## [v1.2.7] - 2023-12-6 ### Changed - Upgraded cassandra image to 4.1.3 in docker compose files #1301 diff --git a/internal/version.go b/internal/version.go index b92f7257e..cad28c990 100644 --- a/internal/version.go +++ b/internal/version.go @@ -43,7 +43,7 @@ package internal // Due to all of this unreliability, this should be used as strictly informational // metadata, e.g. for caller version monitoring, never behavioral (use // FeatureVersion or feature flags instead). -const LibraryVersion = "1.2.7" +const LibraryVersion = "1.2.8" // FeatureVersion is a semver that informs the server of what high-level behaviors // this client supports.