diff --git a/.version b/.version index 65cda2e63..aa4ceb303 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.64.2 \ No newline at end of file +0.65.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index bbc95f892..7d7708405 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,13 @@ ## Next * +## Version 0.65.0 +* Server: support "upsert" of entities on PUT methods. +* Server: support PATCH methods on entities for partial updates. +* Server: allow overriding redis_dsn for separate queue and cache DSNs. +* Libs: support "upsert" of entities on PUT methods. +* Libs/Ruby: fix region auto-detection. + ## Version 0.64.2 * Server: change the dashboard authentication payload to note that the server is self hosted. * Libs/JavaScript: fix issue when signing/verifying payloads with high Unicode codepoints (e.g. some new emoji) diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 7be6234d6..5c17e4ff0 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.64.2 + 0.65.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 1d9fe0578..7727944b8 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.64.2" +const Version = "0.65.0" diff --git a/java/README.md b/java/README.md index ca63aaa78..5b165d609 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.64.2 + 0.65.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:0.64.2" +implementation "com.svix:svix:0.65.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 09806bc61..7879d37a8 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.64.2 +VERSION_NAME=0.65.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 c5fbe1dea..eda143dd4 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.64.2"; + public static final String VERSION = "0.65.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index b2cdd0822..124b9cb32 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.64.2", + "version": "0.65.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 464184c7f..508283ce2 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.64.2"; +const VERSION = "0.65.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { diff --git a/kotlin/README.md b/kotlin/README.md index 75fb86340..0c7d87a6a 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.64.2 + 0.65.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:0.64.2" +implementation "com.svix.kotlin:svix-kotlin:0.65.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 57a936951..a24fe3eaf 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.64.2 +VERSION_NAME=0.65.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 259e6e885..0575143e3 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.64.2" + private val version = "0.65.0" var serverUrl: String get() = this.wantedServerUrl ?: DEFAULT_URL diff --git a/python/svix/__init__.py b/python/svix/__init__.py index b55a72ccb..7b7c1a22a 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "0.64.2" +__version__ = "0.65.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index f305ec24c..0a36b93a3 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.64.2) + svix (0.65.0) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 297480bf7..22a2b8fe4 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.64.2" + VERSION = "0.65.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 150e679a8..4b9ba6fc9 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "0.64.2" +version = "0.65.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 869b7a171..27c75c6a7 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2934,7 +2934,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "0.64.2" +version = "0.65.0" dependencies = [ "anyhow", "axum", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index a548acd43..83bfcf508 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.64.2" +version = "0.65.0" license = "MIT" description = "Svix webhooks server"