From 76f845f79a4abefaacfd0fd1e6c942689f26aaf0 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 17 Aug 2022 10:19:26 -0400 Subject: [PATCH] Bump version and update changelog. (#626) --- .version | 2 +- ChangeLog.md | 8 ++++++++ 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 +- kotlin/lib/src/main/kotlin/SvixOptions.kt | 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 +- 18 files changed, 27 insertions(+), 19 deletions(-) diff --git a/.version b/.version index aa4ceb303..ad4ae4497 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.65.0 \ No newline at end of file +0.65.1 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 7d7708405..9d963fbd6 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,14 @@ ## Next * +## Version 0.65.1 +* Server: fix validation errors to be more informative. +* Server: more strict message payload validation to match the libs. +* Server: fix issue with messages being signed with expired keys in some situations (not a security concern, just superfluous data being sent). +* Server: attach a unique ID to a request (used in logs) when none is provided in headers. +* Libs/Python: fix typo in Python lib causing auto-detection of EU servers to fail. +* Libs/C#: make logger optional when creating SvixClient. + ## Version 0.65.0 * Server: support "upsert" of entities on PUT methods. * Server: support PATCH methods on entities for partial updates. diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 5c17e4ff0..6d1f49bf5 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.65.0 + 0.65.1 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 7727944b8..ac3bed3ab 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.65.0" +const Version = "0.65.1" diff --git a/java/README.md b/java/README.md index 5b165d609..dd453d48c 100644 --- a/java/README.md +++ b/java/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix svix - 0.65.0 + 0.65.1 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:0.65.0" +implementation "com.svix:svix:0.65.1" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 7879d37a8..f7fcbb342 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.65.0 +VERSION_NAME=0.65.1 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 eda143dd4..07184378b 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 = "0.65.0"; + public static final String VERSION = "0.65.1"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index 124b9cb32..2204738cc 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.65.0", + "version": "0.65.1", "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 508283ce2..3311469ac 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -53,7 +53,7 @@ import * as base64 from "@stablelib/base64"; import * as sha256 from "fast-sha256"; const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes -const VERSION = "0.65.0"; +const VERSION = "0.65.1"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 0c7d87a6a..73cebf521 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 - 0.65.0 + 0.65.1 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:0.65.0" +implementation "com.svix.kotlin:svix-kotlin:0.65.1" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index a24fe3eaf..76e46592f 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.65.0 +VERSION_NAME=0.65.1 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 0575143e3..5a1bf44d5 100644 --- a/kotlin/lib/src/main/kotlin/SvixOptions.kt +++ b/kotlin/lib/src/main/kotlin/SvixOptions.kt @@ -1,7 +1,7 @@ package com.svix.kotlin data class SvixOptions(internal var wantedServerUrl: String? = null) { - private val version = "0.65.0" + private val version = "0.65.1" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 7b7c1a22a..cb53aa804 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "0.65.0" +__version__ = "0.65.1" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 0a36b93a3..b3c67b92c 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.65.0) + svix (0.65.1) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 22a2b8fe4..036a3da3a 100644 --- a/ruby/lib/svix/version.rb +++ b/ruby/lib/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "0.65.0" + VERSION = "0.65.1" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4b9ba6fc9..e2632ada2 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "0.65.0" +version = "0.65.1" 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 27c75c6a7..e1e6c35ad 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2934,7 +2934,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "0.65.0" +version = "0.65.1" dependencies = [ "anyhow", "axum", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 83bfcf508..66e59f747 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.65.0" +version = "0.65.1" license = "MIT" description = "Svix webhooks server"