From 178d24d8a16eb96ae2c17dceac3e58f1f2205132 Mon Sep 17 00:00:00 2001 From: svix-lucho <133019767+svix-lucho@users.noreply.github.com> Date: Fri, 9 Aug 2024 12:43:53 -0300 Subject: [PATCH] Bump version to 1.29.0 and update changelog (#1398) ## Version 1.29.0 * Bridge: Rebuild RabbitMQ producer on error * Server: Add support for SOCKS5 proxies * Libs/C#: add GetAppPortalAccess* methods to IAuthentication interface * Libs/Go: expose `with_content` for `Message.List` * Libs/Go: expose `with_msg` param on `MessageAttempt.ListByEndpoint` * Libs/Go: expose `order` in `Integtation.List` and `EventType.List` * Libs/Go: return response body for recover/replay * Libs/Go: expose `tag` for `MessageAttempt` list endpoints * Libs/Javascript: Publish src to npm to make it available for source maps * Libs/Python: ensure datetimes have a timezone --- .version | 2 +- ChangeLog.md | 12 ++++++++++++ bridge/Cargo.lock | 2 +- bridge/svix-bridge/Cargo.toml | 2 +- csharp/Svix/Svix.csproj | 2 +- go/internal/version/version.go | 2 +- java/README.md | 4 ++-- java/gradle.properties | 2 +- java/lib/src/main/java/com/svix/Svix.java | 2 +- javascript/package.json | 2 +- javascript/src/index.ts | 6 +++--- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 4 ++-- ruby/lib/svix/version.rb | 2 +- rust/Cargo.toml | 2 +- server/Cargo.lock | 2 +- server/svix-server/Cargo.toml | 2 +- 19 files changed, 35 insertions(+), 23 deletions(-) diff --git a/.version b/.version index 3c71e4721..72f3c1dac 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.28.0 \ No newline at end of file +1.29.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 2f7aa4aeb..d88294eaf 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,18 @@ ## Next * +## Version 1.29.0 +* Bridge: Rebuild RabbitMQ producer on error +* Server: Add support for SOCKS5 proxies +* Libs/C#: add GetAppPortalAccess* methods to IAuthentication interface +* Libs/Go: expose `with_content` for `Message.List` +* Libs/Go: expose `with_msg` param on `MessageAttempt.ListByEndpoint` +* Libs/Go: expose `order` in `Integtation.List` and `EventType.List` +* Libs/Go: return response body for recover/replay +* Libs/Go: expose `tag` for `MessageAttempt` list endpoints +* Libs/Javascript: Publish src to npm to make it available for source maps +* Libs/Python: ensure datetimes have a timezone + ## Version 1.28.0 * Libs: Update OpenAPI spec diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 7d681b548..7e8c998ec 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.28.0" +version = "1.29.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index df2a4e5ee..ea53e99cb 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.28.0" +version = "1.29.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index fab7d265d..309872d68 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.28.0 + 1.29.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 57b276140..fb5d654af 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.28.0" +const Version = "1.29.0" diff --git a/java/README.md b/java/README.md index 341417d05..222c2a88e 100644 --- a/java/README.md +++ b/java/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix svix - 1.28.0 + 1.29.0 compile ``` @@ -61,7 +61,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix:svix:1.28.0" +implementation "com.svix:svix:1.29.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index bc8db60c7..fdab1ec36 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.28.0 +VERSION_NAME=1.29.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/java/lib/src/main/java/com/svix/Svix.java b/java/lib/src/main/java/com/svix/Svix.java index d41f40c6b..e8054e501 100644 --- a/java/lib/src/main/java/com/svix/Svix.java +++ b/java/lib/src/main/java/com/svix/Svix.java @@ -5,7 +5,7 @@ import com.svix.internal.auth.HttpBearerAuth; public final class Svix { - public static final String VERSION = "1.28.0"; + public static final String VERSION = "1.29.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 0489f1e85..260a716c0 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.28.0", + "version": "1.29.0", "description": "Svix webhooks API client and webhook verification library", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/index.ts b/javascript/src/index.ts index 60ccb0251..e59ef7f2f 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -77,7 +77,7 @@ import * as base64 from "@stablelib/base64"; import * as sha256 from "fast-sha256"; const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes -const VERSION = "1.28.0"; +const VERSION = "1.29.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { @@ -402,7 +402,7 @@ class Endpoint { } /** - * @deprecated Since version 1.28.0. Use `headersUpdate` instead. + * @deprecated Since version 1.29.0. Use `headersUpdate` instead. */ public updateHeaders( appId: string, @@ -429,7 +429,7 @@ class Endpoint { } /** - * @deprecated Since version 1.28.0. Use `headersPatch` instead. + * @deprecated Since version 1.29.0. Use `headersPatch` instead. */ public patchHeaders( appId: string, diff --git a/kotlin/README.md b/kotlin/README.md index 0422943fe..8abbcc550 100644 --- a/kotlin/README.md +++ b/kotlin/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix.kotlin svix-kotlin - 1.28.0 + 1.29.0 compile ``` @@ -61,7 +61,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix.kotlin:svix-kotlin:1.28.0" +implementation "com.svix.kotlin:svix-kotlin:1.29.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 1e0d450be..668789415 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.28.0 +VERSION_NAME=1.29.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 387af7506..775307aa5 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.28.0" +__version__ = "1.29.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 53a6edb49..8b764dcf0 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.28.0) + svix (1.29.0) typhoeus (~> 1.0, >= 1.0.1) GEM @@ -9,7 +9,7 @@ GEM specs: diff-lcs (1.4.4) ethon (0.14.0) - ffi (>= 1.28.0) + ffi (>= 1.29.0) ffi (1.15.1) rake (13.0.6) rspec (3.10.0) diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 174d85956..ecde6c6ea 100644 --- a/ruby/lib/svix/version.rb +++ b/ruby/lib/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "1.28.0" + VERSION = "1.29.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index b3f1d7867..2b460ef48 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.28.0" +version = "1.29.0" authors = ["Svix Inc. "] edition = "2021" description = "Svix webhooks API client and webhook verification library" diff --git a/server/Cargo.lock b/server/Cargo.lock index 3b165ee14..5f50f74dc 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4830,7 +4830,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.28.0" +version = "1.29.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 5854f5d3f..db6e32c0a 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.28.0" +version = "1.29.0" license = "MIT" description = "Svix webhooks server"