Skip to content

Commit

Permalink
Bump version to 1.39.0 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-lucho committed Nov 6, 2024
1 parent f5a3554 commit 4679aaf
Show file tree
Hide file tree
Showing 19 changed files with 32 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.38.0
1.39.0
10 changes: 10 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## Next
*

## Version 1.39.0
* Libs: Add operational webhook endpoint API
* Libs/Rust: **[Breaking]** Models for PATCH endpoints now have `Option<Option<T>>` fields to allow explicitly sending nulls to unset those fields.
* Libs/Go: **[Breaking]** Nullable arrays are once again represented by `[]T` instead of `*[]T`. Serialization handles the empty case correctly.
* Libs: Upgrade `openapi-generator` to 7.9.0, with dependency upgrades and internal changes in the SDKs.
* Server: Add Redis sentinel support
* Server: Add OTEL metrics for Redis queues
* Server: Add Redis DLQ support
* Server: Several dependency upgrades and CI improvements

## Version 1.38.0
* Server: Increase max endpoint rotations
* Server: Return 409 on duplicate message insert
Expand Down
2 changes: 1 addition & 1 deletion bridge/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bridge/svix-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix-bridge"
version = "1.38.0"
version = "1.39.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<PackageId>Svix</PackageId>
<Version>1.38.0</Version>
<Version>1.39.0</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion go/internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "1.38.0"
const Version = "1.39.0"
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix</groupId>
<artifactId>svix</artifactId>
<version>1.38.0</version>
<version>1.39.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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.38.0"
implementation "com.svix:svix:1.39.0"
```

# Development
Expand Down
2 changes: 1 addition & 1 deletion java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix
VERSION_NAME=1.38.0
VERSION_NAME=1.39.0

POM_URL=https://github.com/svix/svix-webhooks
POM_SCM_URL=git@github.com:svix/svix-webhooks.git
Expand Down
2 changes: 1 addition & 1 deletion java/lib/src/main/java/com/svix/Svix.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.svix.internal.auth.HttpBearerAuth;

public final class Svix {
public static final String VERSION = "1.38.0";
public static final String VERSION = "1.39.0";
private final Application application;
private final Authentication authentication;
private final Endpoint endpoint;
Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svix",
"version": "1.38.0",
"version": "1.39.0",
"description": "Svix webhooks API client and webhook verification library",
"author": "svix",
"repository": "https://github.com/svix/svix-libs",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,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.38.0";
const VERSION = "1.39.0";

class UserAgentMiddleware implements Middleware {
public pre(context: RequestContext): Promise<RequestContext> {
Expand Down
4 changes: 2 additions & 2 deletions kotlin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix.kotlin</groupId>
<artifactId>svix-kotlin</artifactId>
<version>1.38.0</version>
<version>1.39.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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.38.0"
implementation "com.svix.kotlin:svix-kotlin:1.39.0"
```

# Development
Expand Down
2 changes: 1 addition & 1 deletion kotlin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix.kotlin
VERSION_NAME=1.38.0
VERSION_NAME=1.39.0

POM_URL=https://github.com/svix/svix-webhooks
POM_SCM_URL=git@github.com:svix/svix-webhooks.git
Expand Down
2 changes: 1 addition & 1 deletion python/svix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
"WebhookVerificationError",
]

__version__ = "1.38.0"
__version__ = "1.39.0"
2 changes: 1 addition & 1 deletion ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
svix (1.38.0)
svix (1.39.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/svix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Svix
VERSION = "1.38.0"
VERSION = "1.39.0"
end
6 changes: 3 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix"
version = "1.38.0"
version = "1.39.0"
authors = ["Svix Inc. <oss@svix.com>"]
edition = "2021"
description = "Svix webhooks API client and webhook verification library"
Expand Down Expand Up @@ -37,11 +37,11 @@ serde_repr = "0.1"
thiserror = "1.0.30"
time = "0.3"
url = "2.2"
tokio = { version = "1.38.0", features = ["time"] }
tokio = { version = "1.39.0", features = ["time"] }
serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] }

[dev-dependencies]
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.39.0", features = ["macros"] }

[package.metadata.cargo-public-api-crates]
allowed = [
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/svix-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix-server"
version = "1.38.0"
version = "1.39.0"
description = "Svix webhooks server"
publish = false
edition.workspace = true
Expand Down

0 comments on commit 4679aaf

Please sign in to comment.