diff --git a/.version b/.version index f88cf52e6..cd99d386a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.13.0 \ No newline at end of file +1.14.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 379c8b116..d82c839d7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,15 +3,18 @@ ## Next * +## Version 1.14.0 +* Server: separate out the message content to its own model. +* Libs: expose two new Statistics endpoints. +* Libs/Csharp: implement "hard delete" event types. +* Libs/Ruby: accept additional options on message get. +* Libs/Go: fix transformation partial update function. +* Libs/Kotlin: fix errors with APIs that return no content (like endpoint delete). + ## Version 1.13.0 * Server: Fix tracking of backtrace in some error cases. * Libs/Go: expose `EventType.DeleteWithOptions` -## New Contributors -* @rolznz made their first contribution in https://github.com/svix/svix-webhooks/pull/1077 - -**Full Changelog**: https://github.com/svix/svix-webhooks/compare/v1.12.0...v3324 - ## Version 1.12.0 * Libs: update OpenAPI spec diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 9c5b0b788..bc465edec 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -5644,7 +5644,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.13.0" +version = "1.14.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 87b110114..e04a74e45 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.13.0" +version = "1.14.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 8576e05cd..658a90a9c 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.13.0 + 1.14.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 1ba1d2353..dc3ca4ef3 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.13.0" +const Version = "1.14.0" diff --git a/java/README.md b/java/README.md index 993362a4a..db6815c0d 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.13.0 + 1.14.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.13.0" +implementation "com.svix:svix:1.14.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index a715bf4a6..3fdef337d 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.13.0 +VERSION_NAME=1.14.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 0430f0ef4..90e47295b 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.13.0"; + public static final String VERSION = "1.14.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 404164f68..e8090a4a1 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.13.0", + "version": "1.14.0", "description": "Svix API client", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/index.ts b/javascript/src/index.ts index 9dc447a6d..79065ca68 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.13.0"; +const VERSION = "1.14.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index b25a7c1c8..a67f3ef07 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.13.0 + 1.14.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.13.0" +implementation "com.svix.kotlin:svix-kotlin:1.14.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 437e3c95d..3d4b7a9a6 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.13.0 +VERSION_NAME=1.14.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 431cd9db1..aa7f1469a 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.13.0" + private val version = "1.14.0" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index d025aef0e..53d02003c 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.13.0" +__version__ = "1.14.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index db308a440..d0c093fd5 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.13.0) + svix (1.14.0) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 176519c12..bb30baef9 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.13.0" + VERSION = "1.14.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 9554c56b3..18f02a5d5 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.13.0" +version = "1.14.0" authors = ["Svix Inc. "] edition = "2021" description="Rust library for interacting with the Svix API and verifying webhook signatures." diff --git a/server/Cargo.lock b/server/Cargo.lock index bb33b8428..720799f22 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4076,7 +4076,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.13.0" +version = "1.14.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 0de1c9203..c30b0e3bf 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.13.0" +version = "1.14.0" license = "MIT" description = "Svix webhooks server"