diff --git a/.version b/.version index d19d08901..71bd5d9ee 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.15.0 \ No newline at end of file +1.16.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 68de425bf..193183706 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,12 @@ ## Next * +## Version 1.16.0 +* Server: Add `tag` parameter to list-message for Go, JavaScript, and Python. +* Server: improvements to the expired message cleaner. +* Libs: update OpenAPI spec and libs. +* Libs/Javascript: Fix thrown error message when API status code is unknown. + ## Version 1.15.0 * Libs: update OpenAPI spec and libs. diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index d52bc99ef..90b5c08e0 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -5643,7 +5643,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.15.0" +version = "1.16.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 3532f5684..1655d1a8e 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.15.0" +version = "1.16.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 1a941e9a6..730492dcb 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.15.0 + 1.16.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 81e005bbd..7ad972355 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.15.0" +const Version = "1.16.0" diff --git a/java/README.md b/java/README.md index 13293e4dc..178384706 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.15.0 + 1.16.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.15.0" +implementation "com.svix:svix:1.16.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 4e18a5e9c..46928f21a 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.15.0 +VERSION_NAME=1.16.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 801f2e530..edce6cb61 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.15.0"; + public static final String VERSION = "1.16.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 762c8aa04..67ebeae68 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.15.0", + "version": "1.16.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 d1fec9029..a08e1f648 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -76,7 +76,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.15.0"; +const VERSION = "1.16.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 7c8e4f19f..d39c79ba3 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.15.0 + 1.16.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.15.0" +implementation "com.svix.kotlin:svix-kotlin:1.16.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 559f4a265..c3b2b33bc 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.15.0 +VERSION_NAME=1.16.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/kotlin/lib/src/main/kotlin/SvixOptions.kt b/kotlin/lib/src/main/kotlin/SvixOptions.kt index b194545f2..8ddf02f60 100644 --- a/kotlin/lib/src/main/kotlin/SvixOptions.kt +++ b/kotlin/lib/src/main/kotlin/SvixOptions.kt @@ -6,7 +6,7 @@ data class SvixOptions( val numRetries: Int? = null ) { - private val version = "1.15.0" + private val version = "1.16.0" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index c12e598da..f1b17484e 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.15.0" +__version__ = "1.16.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 13d1d0449..7cb6699d0 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.15.0) + svix (1.16.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.15.0) + ffi (>= 1.16.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 cfa386f37..b3e58cda3 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.15.0" + VERSION = "1.16.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 415f08079..c04e31c61 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.15.0" +version = "1.16.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 b946e037b..6cd40353c 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4255,7 +4255,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.15.0" +version = "1.16.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 08e3785b4..56aae5072 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.15.0" +version = "1.16.0" license = "MIT" description = "Svix webhooks server"