Skip to content

Commit 01c208b

Browse files
authored
Bump to v1.64.1 (#1891)
## Version 1.64.1 * Libs/JavaScript: Add `HTTPValidationError`, `HttpErrorOut`, `ValidationError` and `ApiException` to the top level exports. * Server: Add response duration tracking to webhook message attempts by @CodeMan62 in #1877 * Libs/Python: Specify minimum version of pydantic `pydantic >=2.10` in setup.py.
2 parents 1061d9f + 3f4681f commit 01c208b

File tree

25 files changed

+34
-29
lines changed

25 files changed

+34
-29
lines changed

Diff for: .version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.64.0
1+
1.64.1

Diff for: ChangeLog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Version 1.64.1
4+
* Libs/JavaScript: Add `HTTPValidationError`, `HttpErrorOut`, `ValidationError` and `ApiException` to the top level exports.
5+
* Server: Add response duration tracking to webhook message attempts by @CodeMan62 in https://github.com/svix/svix-webhooks/pull/1877
6+
* Libs/Python: Specify minimum version of pydantic `pydantic >=2.10` in setup.py.
7+
38
## Version 1.64.0
49
* CLI: Add interactive login with dashboard.svix.com
510

Diff for: bridge/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: bridge/svix-bridge/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-bridge"
3-
version = "1.64.0"
3+
version = "1.64.1"
44
edition = "2021"
55
publish = false
66

Diff for: csharp/Svix/Svix.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<PackageId>Svix</PackageId>
6-
<Version>1.64.0</Version>
6+
<Version>1.64.1</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

Diff for: csharp/Svix/Version.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace Svix
22
{
33
public static class Version
44
{
5-
public const string version = "1.64.0";
5+
public const string version = "1.64.1";
66
}
77
}

Diff for: go/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package svix
22

3-
const Version = "1.64.0"
3+
const Version = "1.64.1"

Diff for: java/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
<dependency>
5252
<groupId>com.svix</groupId>
5353
<artifactId>svix</artifactId>
54-
<version>1.64.0</version>
54+
<version>1.64.1</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
6161
Add this dependency to your project's build file:
6262

6363
```groovy
64-
implementation "com.svix:svix:1.64.0"
64+
implementation "com.svix:svix:1.64.1"
6565
```
6666

6767
# Development

Diff for: java/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix
2-
VERSION_NAME=1.64.0
2+
VERSION_NAME=1.64.1
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL[email protected]:svix/svix-webhooks.git

Diff for: java/lib/src/main/java/com/svix/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.svix;
22

33
public class Version {
4-
public static final String VERSION = "1.64.0";
4+
public static final String VERSION = "1.64.1";
55
}

Diff for: javascript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svix",
3-
"version": "1.64.0",
3+
"version": "1.64.1",
44
"description": "Svix webhooks API client and webhook verification library",
55
"author": "svix",
66
"repository": "https://github.com/svix/svix-libs",

Diff for: javascript/src/request.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import "svix-fetch";
22
import { ApiException } from "./util";
33
import { HttpErrorOut, HTTPValidationError } from "./HttpErrors";
44

5-
export const LIB_VERSION = "1.64.0";
5+
export const LIB_VERSION = "1.64.1";
66
const USER_AGENT = `svix-libs/${LIB_VERSION}/javascript`;
77

88
export enum HttpMethod {

Diff for: kotlin/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
<dependency>
5252
<groupId>com.svix.kotlin</groupId>
5353
<artifactId>svix-kotlin</artifactId>
54-
<version>1.64.0</version>
54+
<version>1.64.1</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
6161
Add this dependency to your project's build file:
6262

6363
```groovy
64-
implementation "com.svix.kotlin:svix-kotlin:1.64.0"
64+
implementation "com.svix.kotlin:svix-kotlin:1.64.1"
6565
```
6666

6767
# Development

Diff for: kotlin/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix.kotlin
2-
VERSION_NAME=1.64.0
2+
VERSION_NAME=1.64.1
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL[email protected]:svix/svix-webhooks.git

Diff for: kotlin/lib/src/main/kotlin/Version.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package com.svix.kotlin
22

3-
const val Version = "1.64.0"
3+
const val Version = "1.64.1"

Diff for: lib-openapi.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9547,7 +9547,7 @@
95479547
"info": {
95489548
"description": "Welcome to the Svix API documentation!\n\nUseful links: [Homepage](https://www.svix.com) | [Support email](mailto:[email protected]) | [Blog](https://www.svix.com/blog/) | [Slack Community](https://www.svix.com/slack/)\n\n# Introduction\n\nThis is the reference documentation and schemas for the [Svix webhook service](https://www.svix.com) API. For tutorials and other documentation please refer to [the documentation](https://docs.svix.com).\n\n## Main concepts\n\nIn Svix you have four important entities you will be interacting with:\n\n- `messages`: these are the webhooks being sent. They can have contents and a few other properties.\n- `application`: this is where `messages` are sent to. Usually you want to create one application for each user on your platform.\n- `endpoint`: endpoints are the URLs messages will be sent to. Each application can have multiple `endpoints` and each message sent to that application will be sent to all of them (unless they are not subscribed to the sent event type).\n- `event-type`: event types are identifiers denoting the type of the message being sent. Event types are primarily used to decide which events are sent to which endpoint.\n\n\n## Authentication\n\nGet your authentication token (`AUTH_TOKEN`) from the [Svix dashboard](https://dashboard.svix.com) and use it as part of the `Authorization` header as such: `Authorization: Bearer ${AUTH_TOKEN}`. For more information on authentication, please refer to the [authentication token docs](https://docs.svix.com/api-keys).\n\n<SecurityDefinitions />\n\n\n## Code samples\n\nThe code samples assume you already have the respective libraries installed and you know how to use them. For the latest information on how to do that, please refer to [the documentation](https://docs.svix.com/).\n\n\n## Idempotency\n\nSvix supports [idempotency](https://en.wikipedia.org/wiki/Idempotence) for safely retrying requests without accidentally performing the same operation twice. This is useful when an API call is disrupted in transit and you do not receive a response.\n\nTo perform an idempotent request, pass the idempotency key in the `Idempotency-Key` header to the request. The idempotency key should be a unique value generated by the client. You can create the key in however way you like, though we suggest using UUID v4, or any other string with enough entropy to avoid collisions.\n\nSvix's idempotency works by saving the resulting status code and body of the first request made for any given idempotency key for any successful request. Subsequent requests with the same key return the same result for a period of up to 12 hours.\n\nPlease note that idempotency is only supported for `POST` requests.\n\n\n## Cross-Origin Resource Sharing\n\nThis API features Cross-Origin Resource Sharing (CORS) implemented in compliance with [W3C spec](https://www.w3.org/TR/cors/). And that allows cross-domain communication from the browser. All responses have a wildcard same-origin which makes them completely public and accessible to everyone, including any code on any site.\n",
95499549
"title": "Svix API",
9550-
"version": "1.64.0",
9550+
"version": "1.64.1",
95519551
"x-logo": {
95529552
"altText": "Svix Logo",
95539553
"url": "https://www.svix.com/static/img/brand-padded.svg"

Diff for: python/svix/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
"WebhookVerificationError",
3838
]
3939

40-
__version__ = "1.64.0"
40+
__version__ = "1.64.1"

Diff for: ruby/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
svix (1.64.0)
4+
svix (1.64.1)
55

66
GEM
77
remote: https://rubygems.org/

Diff for: ruby/lib/svix/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Svix
4-
VERSION = "1.64.0"
4+
VERSION = "1.64.1"
55
end

Diff for: rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix"
3-
version = "1.64.0"
3+
version = "1.64.1"
44
authors = ["Svix Inc. <[email protected]>"]
55
edition = "2021"
66
description = "Svix webhooks API client and webhook verification library"

Diff for: server/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: server/svix-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-server"
3-
version = "1.64.0"
3+
version = "1.64.1"
44
description = "Svix webhooks server"
55
publish = false
66
edition.workspace = true

Diff for: svix-cli/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: svix-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "svix-cli"
33
description = "A CLI to interact with the Svix API."
44
homepage = "https://www.svix.com"
55
authors = ["Svix Inc. <[email protected]>"]
6-
version = "1.64.0"
6+
version = "1.64.1"
77
edition = "2021"
88
license = "MIT"
99
keywords = ["svix", "webhooks", "diahook"]

Diff for: svix-cli/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ A CLI to interact with the Svix API.
2424
Pre-built binaries are available for Linux, macOS via shell script installers.
2525

2626
```
27-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.64.0/svix-cli-installer.sh | sh
27+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.64.1/svix-cli-installer.sh | sh
2828
```
2929

3030
For Windows users, installation can be done via powershell:
3131

3232
```
33-
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.64.0/svix-cli-installer.ps1 | iex"
33+
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.64.1/svix-cli-installer.ps1 | iex"
3434
```
3535

3636
These scripts will install the binaries to `~/.svix/bin` and also add this directory to your `PATH` by default.

0 commit comments

Comments
 (0)