From ba79f869b98ab40729fe4b96b12c5d67cc0c6a40 Mon Sep 17 00:00:00 2001 From: svix-lucho <133019767+svix-lucho@users.noreply.github.com> Date: Wed, 31 Jul 2024 11:26:09 -0300 Subject: [PATCH] Bump version to 1.26.0 and update changelog (#1376) ## What's Changed * Bridge: add `/events` poller by @svix-onelson in https://github.com/svix/svix-webhooks/pull/1363 * server: Optimize all external host dependencies for faster rebuilds by @svix-jplatte in https://github.com/svix/svix-webhooks/pull/1365 * Bridge: log svix client errors as error, not trace by @svix-onelson in https://github.com/svix/svix-webhooks/pull/1368 * Bump Cargo lockfiles by @svix-jplatte in https://github.com/svix/svix-webhooks/pull/1370 * server: add configuration to for changing service name on OpenTelemetry by @LeoZ100 in https://github.com/svix/svix-webhooks/pull/1371 * build(deps): bump openssl from 0.10.64 to 0.10.66 in /bridge by @dependabot in https://github.com/svix/svix-webhooks/pull/1372 * bridge: Require type field for kafka input, output by @svix-jplatte in https://github.com/svix/svix-webhooks/pull/1374 * Bump OpenAPI spec and regenerate libs by @svix-lucho in https://github.com/svix/svix-webhooks/pull/1375 ## New Contributors * @LeoZ100 made their first contribution in https://github.com/svix/svix-webhooks/pull/1371 **Full Changelog**: https://github.com/svix/svix-webhooks/compare/v1.25.0...v1.26.0 --- .version | 2 +- ChangeLog.md | 5 +++++ bridge/Cargo.lock | 2 +- bridge/svix-bridge/Cargo.toml | 2 +- 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 | 6 +++--- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 4 ++-- ruby/lib/svix/version.rb | 2 +- rust/Cargo.toml | 2 +- server/Cargo.lock | 10 +++++----- server/svix-server/Cargo.toml | 2 +- 19 files changed, 32 insertions(+), 27 deletions(-) diff --git a/.version b/.version index f2538f8b5..bc584045a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.25.0 \ No newline at end of file +1.26.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index c6bf6d02b..0a4251b01 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,11 @@ ## Next * +## Version 1.26.0 +* Server: add configuration to for changing service name on OpenTelemetry +* Bridge: add `/events` poller +* Bridge: log svix client errors as error, not trace + ## Version 1.25.0 * Server: Enable redis `tcp_nodelay` * Server: Improve database error classification diff --git a/bridge/Cargo.lock b/bridge/Cargo.lock index 9ea77d9e2..dd962e035 100644 --- a/bridge/Cargo.lock +++ b/bridge/Cargo.lock @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "svix-bridge" -version = "1.25.0" +version = "1.26.0" dependencies = [ "anyhow", "axum", diff --git a/bridge/svix-bridge/Cargo.toml b/bridge/svix-bridge/Cargo.toml index 1d4c89bdb..a822d0f2e 100644 --- a/bridge/svix-bridge/Cargo.toml +++ b/bridge/svix-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-bridge" -version = "1.25.0" +version = "1.26.0" edition = "2021" publish = false diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index c1cf38716..068508b5c 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0;netstandard2.0 Svix - 1.25.0 + 1.26.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index 97007f664..5783ce9e6 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "1.25.0" +const Version = "1.26.0" diff --git a/java/README.md b/java/README.md index 968b10750..c85764210 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.25.0 + 1.26.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.25.0" +implementation "com.svix:svix:1.26.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index 9a91e609a..d8cf7d282 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=1.25.0 +VERSION_NAME=1.26.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 efb27b554..4bb7706e0 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.25.0"; + public static final String VERSION = "1.26.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index ddbb63dbc..21027d394 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "1.25.0", + "version": "1.26.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 75bcb6f30..1b590ecb7 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -77,7 +77,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.25.0"; +const VERSION = "1.26.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { @@ -402,7 +402,7 @@ class Endpoint { } /** - * @deprecated Since version 1.25.0. Use `headersUpdate` instead. + * @deprecated Since version 1.26.0. Use `headersUpdate` instead. */ public updateHeaders( appId: string, @@ -429,7 +429,7 @@ class Endpoint { } /** - * @deprecated Since version 1.25.0. Use `headersPatch` instead. + * @deprecated Since version 1.26.0. Use `headersPatch` instead. */ public patchHeaders( appId: string, diff --git a/kotlin/README.md b/kotlin/README.md index 18d69ae99..8ff8982af 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.25.0 + 1.26.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.25.0" +implementation "com.svix.kotlin:svix-kotlin:1.26.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index c4e4096da..7eccb15ac 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=1.25.0 +VERSION_NAME=1.26.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 3aedf8140..6696e925e 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -37,4 +37,4 @@ "WebhookVerificationError", ] -__version__ = "1.25.0" +__version__ = "1.26.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 0d40e3d06..d09349cee 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (1.25.0) + svix (1.26.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.25.0) + ffi (>= 1.26.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 89ea59051..71ec50ab2 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.25.0" + VERSION = "1.26.0" end diff --git a/rust/Cargo.toml b/rust/Cargo.toml index c74abda7d..23397cfbc 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix" -version = "1.25.0" +version = "1.26.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 1c59f4f75..ca7f75d4b 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2853,9 +2853,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl" -version = "0.10.64" +version = "0.10.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" dependencies = [ "bitflags 2.6.0", "cfg-if", @@ -2885,9 +2885,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.102" +version = "0.9.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", @@ -4791,7 +4791,7 @@ dependencies = [ [[package]] name = "svix-server" -version = "1.25.0" +version = "1.26.0" dependencies = [ "aide", "anyhow", diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 6d3fa0f7e..3fb52d303 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "1.25.0" +version = "1.26.0" license = "MIT" description = "Svix webhooks server"