Skip to content

Commit efff8b0

Browse files
authored
Version 1.43.0 (#1552)
## What's changed * Libs/Go: Add convenient construction of messages with pre-serialized payload ([#1538]) * Libs/Go: Reduce the use of `NullableX` types to where they actually have a use ([#1543]) * Libs/JavaScript: Add convenient construction of messages with pre-serialized payload ([#1539]) * Libs/Java: Add convenient construction of messages with pre-serialized payload ([#1544]) * Libs/C#: Bump .NET target to 8.0 ([#1546]) * Libs/C#: Add convenient construction of messages with pre-serialized payload ([#1545]) * Libs/Python: Add convenient construction of messages with pre-serialized payload ([#1540]) * Libs/Ruby: Add convenient construction of messages with pre-serialized payload ([#1541]) * Libs/JavaScript: Compile svix package for ESM and CommonJS, reducing bundle sizes ([#1549]) [#1538]: #1538 [#1543]: #1543 [#1539]: #1539 [#1540]: #1540 [#1541]: #1541 [#1544]: #1544 [#1545]: #1545 [#1546]: #1546 [#1549]: #1549
2 parents 22bdf85 + 88429e7 commit efff8b0

File tree

19 files changed

+41
-20
lines changed

19 files changed

+41
-20
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.42.0
1+
1.43.0

ChangeLog.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
## Next
44
*
55

6+
## Version 1.43.0
7+
* Libs/Go: Add convenient construction of messages with pre-serialized payload ([#1538])
8+
* Libs/Go: Reduce the use of `NullableX` types to where they actually have a use ([#1543])
9+
* Libs/JavaScript: Add convenient construction of messages with pre-serialized payload ([#1539])
10+
* Libs/Java: Add convenient construction of messages with pre-serialized payload ([#1544])
11+
* Libs/C#: Bump .NET target to 8.0 ([#1546])
12+
* Libs/C#: Add convenient construction of messages with pre-serialized payload ([#1545])
13+
* Libs/Python: Add convenient construction of messages with pre-serialized payload ([#1540])
14+
* Libs/Ruby: Add convenient construction of messages with pre-serialized payload ([#1541])
15+
* Libs/JavaScript: Compile svix package for ESM and CommonJS, reducing bundle sizes ([#1549])
16+
17+
[#1538]: https://github.com/svix/svix-webhooks/pull/1538
18+
[#1543]: https://github.com/svix/svix-webhooks/pull/1543
19+
[#1539]: https://github.com/svix/svix-webhooks/pull/1539
20+
[#1540]: https://github.com/svix/svix-webhooks/pull/1540
21+
[#1541]: https://github.com/svix/svix-webhooks/pull/1541
22+
[#1544]: https://github.com/svix/svix-webhooks/pull/1544
23+
[#1545]: https://github.com/svix/svix-webhooks/pull/1545
24+
[#1546]: https://github.com/svix/svix-webhooks/pull/1546
25+
[#1549]: https://github.com/svix/svix-webhooks/pull/1549
26+
627
## Version 1.42.0
728
* Server: Return 413 on large payloads ([#1530])
829
* Libs/Python: Fix sync / async mismatch for op-webhook-endpoint API ([#1535])

bridge/Cargo.lock

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

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.42.0"
3+
version = "1.43.0"
44
edition = "2021"
55
publish = false
66

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.42.0</Version>
6+
<Version>1.43.0</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

go/internal/version/version.go

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

3-
const Version = "1.42.0"
3+
const Version = "1.43.0"

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.42.0</version>
54+
<version>1.43.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.42.0"
64+
implementation "com.svix:svix:1.43.0"
6565
```
6666

6767
# Development

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.42.0
2+
VERSION_NAME=1.43.0
33

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

java/lib/src/main/java/com/svix/Svix.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.svix.internal.auth.HttpBearerAuth;
66

77
public final class Svix {
8-
public static final String VERSION = "1.42.0";
8+
public static final String VERSION = "1.43.0";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

javascript/package.json

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

javascript/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ import * as base64 from "@stablelib/base64";
8484
import * as sha256 from "fast-sha256";
8585

8686
const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes
87-
const VERSION = "1.42.0";
87+
const VERSION = "1.43.0";
8888

8989
class UserAgentMiddleware implements Middleware {
9090
public pre(context: RequestContext): Promise<RequestContext> {

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.42.0</version>
54+
<version>1.43.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.kotlin:svix-kotlin:1.42.0"
64+
implementation "com.svix.kotlin:svix-kotlin:1.43.0"
6565
```
6666

6767
# Development

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.42.0
2+
VERSION_NAME=1.43.0
33

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

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.42.0"
40+
__version__ = "1.43.0"

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.42.0)
4+
svix (1.43.0)
55

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

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.42.0"
4+
VERSION = "1.43.0"
55
end

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.42.0"
3+
version = "1.43.0"
44
authors = ["Svix Inc. <[email protected]>"]
55
edition = "2021"
66
description = "Svix webhooks API client and webhook verification library"

server/Cargo.lock

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

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.42.0"
3+
version = "1.43.0"
44
description = "Svix webhooks server"
55
publish = false
66
edition.workspace = true

0 commit comments

Comments
 (0)