From 8f2a1b73762c052ff8c68e36bc587cb364519d54 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 20 Nov 2024 15:20:18 +0100 Subject: [PATCH] Prepare release v1.41.0 --- .version | 2 +- ChangeLog.md | 6 ++++++ bridge/Cargo.lock | 4 ++-- 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 | 6 +++--- server/Cargo.lock | 4 ++-- server/svix-server/Cargo.toml | 2 +- 19 files changed, 30 insertions(+), 24 deletions(-) diff --git a/.version b/.version index ebc91b48b..d61cd4d4e 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.40.0 \ No newline at end of file +1.41.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 67df008f2..4aae24b17 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,12 @@ ## Next * +## Version 1.41.0 +* Libs/JS: Allow `iterator` and date parameters on list endpoints to be `null` (in addition to `undefined`) +* Libs/JS: Fix serialization of message `status` query parameters +* Libs/Rust: Revert many pointless type changes from `Option` to `Option>` that came with 1.39.0 +* Server: Improve error messages for configuration loading + ## Version 1.40.0 * Libs(JS): downgrade `@stablelib/base64` avoiding `ERR_REQUIRE_ESM` by @svix-onelson in https://github.com/svix/svix-webhooks/pull/1506 * Bridge: update ca-certificates by @jaymell in https://github.com/svix/svix-webhooks/pull/1507 diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 46e834bf6..3ebbeda0e 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "Inflector" @@ -4001,7 +4001,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.40.0" +version = "1.41.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 4b7e338a3..a332b1ab5 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.40.0" +version = "1.41.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 2723a2482..282ad7d2e 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.40.0 + 1.41.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index fe0983b5e..b9bf9c9a5 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.40.0" +const Version = "1.41.0" diff --git a/java/README.md b/java/README.md index 6b890a18f..f72c71722 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.40.0 + 1.41.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.40.0" +implementation "com.svix:svix:1.41.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 00ffd91c1..0e0d767d8 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.40.0 +VERSION_NAME=1.41.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 79915fccc..6ab9332eb 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.40.0"; + public static final String VERSION = "1.41.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 5bc4bf1f1..8074a5b86 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.40.0", + "version": "1.41.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 945a52520..7f2b641a8 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.40.0"; +const VERSION = "1.41.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 79dbcb579..c29c5cd50 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.40.0 + 1.41.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.40.0" +implementation "com.svix.kotlin:svix-kotlin:1.41.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 3ba1cd6c3..1e72d0ce1 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.40.0 +VERSION_NAME=1.41.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 7885fdf5b..24bd5d05a 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.40.0" +__version__ = "1.41.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index b04ca434a..699871341 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.40.0) + svix (1.41.0) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index b72faf1b2..dedc6e532 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.40.0" + VERSION = "1.41.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index b3b75aab9..312025725 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.40.0" +version = "1.41.0" authors = ["Svix Inc. "] edition = "2021" description = "Svix webhooks API client and webhook verification library" @@ -37,11 +37,11 @@ serde_repr = "0.1" thiserror = "1.0.30" time = "0.3" url = "2.2" -tokio = { version = "1.40.0", features = ["time"] } +tokio = { version = "1.41.0", features = ["time"] } serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] } [dev-dependencies] -tokio = { version = "1.40.0", features = ["macros"] } +tokio = { version = "1.41.0", features = ["macros"] } [package.metadata.cargo-public-api-crates] allowed = [ diff --git a/server/Cargo.lock b/server/Cargo.lock index 55ee8e417..ec1af0b31 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -4765,7 +4765,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.40.0" +version = "1.41.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index e1e3f466b..d0bc6feed 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.40.0" +version = "1.41.0" description = "Svix webhooks server" publish = false edition.workspace = true