diff --git a/.version b/.version index 9c235b491..ebc91b48b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.39.0 \ No newline at end of file +1.40.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index a7ec02664..67df008f2 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,11 @@ ## Next * +## 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 +* Server: exit early if endpoints don't exist by @jaymell in https://github.com/svix/svix-webhooks/pull/1515 + ## Version 1.39.0 * Libs: Add operational webhook endpoint API * Libs/Rust: **[Breaking]** Models for PATCH endpoints now have `Option>` fields to allow explicitly sending nulls to unset those fields. diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 51a06fe13..4b7e338a3 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.39.0" +version = "1.40.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 478300363..2723a2482 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.39.0 + 1.40.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 2060b1cac..fe0983b5e 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.39.0" +const Version = "1.40.0" diff --git a/java/README.md b/java/README.md index 3ee380f2c..6b890a18f 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.39.0 + 1.40.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.39.0" +implementation "com.svix:svix:1.40.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 3148f8db2..00ffd91c1 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.39.0 +VERSION_NAME=1.40.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 3e7922163..79915fccc 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.39.0"; + public static final String VERSION = "1.40.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index e3ca9ce6e..5bc4bf1f1 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.39.0", + "version": "1.40.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 d1e253f6f..21beaa515 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.39.0"; +const VERSION = "1.40.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index d67435421..79dbcb579 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.39.0 + 1.40.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.39.0" +implementation "com.svix.kotlin:svix-kotlin:1.40.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 87643aaa8..3ba1cd6c3 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.39.0 +VERSION_NAME=1.40.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 388076f2a..7885fdf5b 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.39.0" +__version__ = "1.40.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index e1ddf72bc..b04ca434a 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.39.0) + svix (1.40.0) GEM remote: https://rubygems.org/ diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index da5ef4fef..b72faf1b2 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.39.0" + VERSION = "1.40.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 25e5c3678..b3b75aab9 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.39.0" +version = "1.40.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.39.0", features = ["time"] } +tokio = { version = "1.40.0", features = ["time"] } serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] } [dev-dependencies] -tokio = { version = "1.39.0", features = ["macros"] } +tokio = { version = "1.40.0", features = ["macros"] } [package.metadata.cargo-public-api-crates] allowed = [ diff --git a/server/Cargo.lock b/server/Cargo.lock index 141f0f05d..55ee8e417 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4765,7 +4765,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.39.0" +version = "1.40.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index c9fc80843..992f6d0d2 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.39.0" +version = "1.40.0" description = "Svix webhooks server" publish = false edition.workspace = true