Skip to content

Commit 1aeb130

Browse files
authored
Bump to v1.68.0 (#1948)
## Version 1.68.0 * Server: Ensure messagecontent expiration is set * Libs/PHP: Handle Badly Formatted Signatures by @rodnaph in #1942 * Libs/All: Automatically send an idempotency key on all outgoing post requests ## New Contributors * @rodnaph made their first contribution in #1942
2 parents 7a6e9f5 + a26f453 commit 1aeb130

File tree

25 files changed

+35
-30
lines changed

25 files changed

+35
-30
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.67.0
1+
1.68.0

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Version 1.68.0
4+
* Server: Ensure messagecontent expiration is set
5+
* Libs/PHP: Handle Badly Formatted Signatures by @rodnaph in https://github.com/svix/svix-webhooks/pull/1942
6+
* Libs/All: Automatically send an idempotency key on all outgoing post requests
7+
38
## Version 1.67.0
49
* Libs/Go: Disable HTTP/2 for API calls because it was causing issues for some users
510
* Libs/Python: Enable configuring a proxy for API requests

bridge/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridge/svix-bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-bridge"
3-
version = "1.67.0"
3+
version = "1.68.0"
44
edition = "2021"
55
publish = false
66

csharp/Svix/Svix.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
44
<PackageId>Svix</PackageId>
5-
<Version>1.67.0</Version>
5+
<Version>1.68.0</Version>
66
<Authors>Svix</Authors>
77
<Company>Svix</Company>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

csharp/Svix/Version.cs

Lines changed: 1 addition & 1 deletion
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.67.0";
5+
public const string version = "1.68.0";
66
}
77
}

go/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package svix
22

3-
const Version = "1.67.0"
3+
const Version = "1.68.0"

java/README.md

Lines changed: 2 additions & 2 deletions
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.67.0</version>
54+
<version>1.68.0</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.67.0"
64+
implementation "com.svix:svix:1.68.0"
6565
```
6666

6767
# Development

java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix
2-
VERSION_NAME=1.67.0
2+
VERSION_NAME=1.68.0
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL=git@github.com:svix/svix-webhooks.git
Lines changed: 1 addition & 1 deletion
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.67.0";
4+
public static final String VERSION = "1.68.0";
55
}

0 commit comments

Comments
 (0)