From ab14d13f21aa2409ef000f6bbe2c9ee77057701f Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 6 Dec 2024 15:50:01 +0100 Subject: [PATCH] Version 1.43.0 --- .version | 2 +- ChangeLog.md | 19 +++++++++++++++++++ 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 | 2 +- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 2 +- ruby/lib/svix/version.rb | 2 +- rust/Cargo.toml | 2 +- server/Cargo.lock | 2 +- server/svix-server/Cargo.toml | 2 +- 19 files changed, 39 insertions(+), 20 deletions(-) diff --git a/.version b/.version index 1933dfa14..f2725482b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.42.0 \ No newline at end of file +1.43.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 7237ca803..866e2ccf7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,25 @@ ## Next * +## Version 1.43.0 +* Libs/Go: Add convenient construction of messages with pre-serialized payload ([#1538]) +* Libs/JavaScript: Add convenient construction of messages with pre-serialized payload ([#1539]) +* Libs/Java: Add convenient construction of messages with pre-serialized payload ([#1544]) +* Libs/C#: Bump .NET target to 8.0 ([#1546]) +* Libs/C#: Add convenient construction of messages with pre-serialized payload ([#1545]) +* Libs/Python: Add convenient construction of messages with pre-serialized payload ([#1540]) +* Libs/Ruby: Add convenient construction of messages with pre-serialized payload ([#1541]) +* Libs/JavaScript: Compile svix package for ESM and CommonJS, reducing bundle sizes ([#1549]) + +[#1538]: https://github.com/svix/svix-webhooks/pull/1538 +[#1539]: https://github.com/svix/svix-webhooks/pull/1539 +[#1540]: https://github.com/svix/svix-webhooks/pull/1540 +[#1541]: https://github.com/svix/svix-webhooks/pull/1541 +[#1544]: https://github.com/svix/svix-webhooks/pull/1544 +[#1545]: https://github.com/svix/svix-webhooks/pull/1545 +[#1546]: https://github.com/svix/svix-webhooks/pull/1546 +[#1549]: https://github.com/svix/svix-webhooks/pull/1549 + ## Version 1.42.0 * Server: Return 413 on large payloads ([#1530]) * Libs/Python: Fix sync / async mismatch for op-webhook-endpoint API ([#1535]) diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index ace3ea3fa..d37a95a4a 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4010,7 +4010,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.42.0" +version = "1.43.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index e734162a7..c7d8bdaaa 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.42.0" +version = "1.43.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 5ff849fd6..c5ced2e2b 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net8.0 Svix - 1.42.0 + 1.43.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index eaf36fc76..c4e5d85bf 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.42.0" +const Version = "1.43.0" diff --git a/java/README.md b/java/README.md index ec57c5334..bc218d332 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.42.0 + 1.43.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.42.0" +implementation "com.svix:svix:1.43.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 954a3d1aa..3a1ff510c 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.42.0 +VERSION_NAME=1.43.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 b181dd603..357992d42 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.42.0"; + public static final String VERSION = "1.43.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index f6e89cf05..9ea6707fc 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.42.0", + "version": "1.43.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 dcec4cc97..b91aeaf61 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -84,7 +84,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.42.0"; +const VERSION = "1.43.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index c28cbb716..017bd43f9 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.42.0 + 1.43.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.42.0" +implementation "com.svix.kotlin:svix-kotlin:1.43.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 3992aa5ac..7e12ae73a 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.42.0 +VERSION_NAME=1.43.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 a7c8fb347..52935705b 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.42.0" +__version__ = "1.43.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index fddab3272..dc892e54a 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.42.0) + svix (1.43.0) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index fb0c2a1e7..4907ee39f 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.42.0" + VERSION = "1.43.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 9fcc4cad5..d6e6bc34c 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.42.0" +version = "1.43.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 2806b5b29..9323138b8 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4797,7 +4797,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.42.0" +version = "1.43.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 1cdbf5828..06e69112f 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.42.0" +version = "1.43.0" description = "Svix webhooks server" publish = false edition.workspace = true