Skip to content

Commit 286aacb

Browse files
authored
Bump version to 1.25.0 and update changelog (#1367)
## What's Changed * Enable redis `tcp_nodelay` by @jaymell in #1316 * server: Simplify short-circuiting logic for Option::None by @svix-jplatte in #1318 * Improve database error classification by @svix-jplatte in #1317 * server: Remove unwraps in redis queue module by @svix-jplatte in #1319 * Improve error message by @jaymell in #1320 * Update OpenAPI spec and regenerate libs by @svix-lucho in #1321 * Add NullableBool function by @dacohen in #1322 * bridge: Upgrade omniqueue and related dependencies by @svix-jplatte in #1326 * Make config type, variant names less confusing by @svix-jplatte in #1327 * Redis updates by @jaymell in #1328 * More redis updates by @jaymell in #1329 * bridge: More config cleanup by @svix-jplatte in #1330 * Python: update deps and switch to ruff. by @tasn in #1332 * bridge: Update Cargo.lock by @svix-jplatte in #1334 * Bump locked dependencies again by @svix-jplatte in #1336 * server: Update Cargo.lock by @svix-jplatte in #1337 * build(deps): bump braces from 3.0.2 to 3.0.3 in /javascript by @dependabot in #1335 * bridge: Add Kafka as an input by @svix-jplatte in #1333 * rust: Add Svix::background_task by @svix-jplatte in #1341 * bridge: Reduce deno dependencies by @svix-jplatte in #1343 * rust: Add `Svix::with_token` to allow changing api token by @svix-aaron1011 in #1339 * build(deps): bump ws from 7.4.6 to 7.5.10 in /javascript by @dependabot in #1338 * bridge: Upgrade wiremock dev-dependency by @svix-jplatte in #1344 * bridge: Error refactoring by @svix-jplatte in #1342 * bridge: Add kafka receiver output by @svix-jplatte in #1345 * bridge: Cargo manifest cleanup by @svix-jplatte in #1346 * bridge: Remove build step from CI workflow by @svix-jplatte in #1347 * Fix `Recover Failed Webhooks` response by @jaymell in #1349 * Libs(Go): adjust Go linter by @svix-onelson in #1351 * Libs(Go): pluralize GO_MODULES in superlinter by @svix-onelson in #1353 * build(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 by @dependabot in #1294 * `Recover Failed Webhooks` use configurable `until` by @jaymell in #1352 * Update comments in KafkaConsumer by @svix-jplatte in #1354 * Replace ctype_digit for PHP 8.1 deprecation of non-string arguments by @jterry in #1355 * CI: add something to run php tests by @svix-onelson in #1356 * js: Apply workaround for incomplete fetch support in Cloudflare Worker by @svix-jplatte in #1359 * Bump certifi from 2023.07.22 to 2024.7.4 in /python by @svix-jplatte in #1358 * ci: Update GitHub actions revs for php-ci by @svix-jplatte in #1360 * build(deps): bump zerovec from 0.10.2 to 0.10.4 in /server by @dependabot in #1361 * Server: bump zerovec-derive by @svix-onelson in #1362 * bridge: Add kafka to example configs, config tests by @svix-jplatte in #1357 * Libs: bump spec by @svix-onelson in #1366 ## New Contributors * @dacohen made their first contribution in #1322 * @jterry made their first contribution in #1355 **Full Changelog**: v1.24.0...v1.25.0
1 parent 555b588 commit 286aacb

File tree

19 files changed

+35
-23
lines changed

19 files changed

+35
-23
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.0
1+
1.25.0

ChangeLog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
## Next
44
*
55

6+
## Version 1.25.0
7+
* Server: Enable redis `tcp_nodelay`
8+
* Server: Improve database error classification
9+
* Server: Update dependencies
10+
* Bridge: Upgrade omniqueue and other dependencies
11+
* Bridge: Add Kafka as an input
12+
* Libs/Javascript: Apply workaround for incomplete fetch support in Cloudflare Worker
13+
* Libs/Go: Add NullableBool function
14+
* Libs/Python: Update dependencies and switch to ruff
15+
* Libs/Rust: Add `Svix::with_token` to allow changing API token
16+
* Libs/PHP: Replace ctype_digit for PHP 8.1 deprecation of non-string arguments
17+
618
## Version 1.24.0
719
* Server: Update redis health check
820
* Server: Clean up tracing spans for HTTP requests

bridge/Cargo.lock

Lines changed: 1 addition & 1 deletion
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.24.0"
3+
version = "1.25.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
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
55
<PackageId>Svix</PackageId>
6-
<Version>1.24.0</Version>
6+
<Version>1.25.0</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

go/internal/version/version.go

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

3-
const Version = "1.24.0"
3+
const Version = "1.25.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.24.0</version>
54+
<version>1.25.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.24.0"
64+
implementation "com.svix:svix:1.25.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.24.0
2+
VERSION_NAME=1.25.0
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL=git@github.com:svix/svix-webhooks.git

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

Lines changed: 1 addition & 1 deletion
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.24.0";
8+
public static final String VERSION = "1.25.0";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

javascript/package.json

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

0 commit comments

Comments
 (0)