Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.17.0 and update changelog #1187

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.16.0
1.17.0
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,11 @@
## Next
*

## Version 1.17.0
* Server: Upgrade hyper to 0.14.28
* Libs/Rust: **[Important]** Fix a bug in the webhook signature verification method where certain signatures could bypass the verification.
* Libs/Java: **[Breaking]** Use Java time instead of threetenbp. This removes the need to import threetenbp to use the library. Depending on how the lib is used, it might require migrating uses of threetenbp to Java 8 Date-Time APIs.

## Version 1.16.0
* Server: Add `tag` parameter to list-message for Go, JavaScript, and Python.
* Server: improvements to the expired message cleaner.
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.16.0"
version = "1.17.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<PackageId>Svix</PackageId>
<Version>1.16.0</Version>
<Version>1.17.0</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
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.16.0"
const Version = "1.17.0"
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix</groupId>
<artifactId>svix</artifactId>
<version>1.16.0</version>
<version>1.17.0</version>
<scope>compile</scope>
</dependency>
```
@@ -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.16.0"
implementation "com.svix:svix:1.17.0"
```

# Development
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.16.0
VERSION_NAME=1.17.0

POM_URL=https://github.com/svix/svix-webhooks
POM_SCM_URL=git@github.com:svix/svix-webhooks.git
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
@@ -5,7 +5,7 @@
import com.svix.internal.auth.HttpBearerAuth;

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

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

# Development
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.16.0
VERSION_NAME=1.17.0

POM_URL=https://github.com/svix/svix-webhooks
POM_SCM_URL=git@github.com:svix/svix-webhooks.git
2 changes: 1 addition & 1 deletion kotlin/lib/src/main/kotlin/SvixOptions.kt
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ data class SvixOptions(
val numRetries: Int? = null
) {

private val version = "1.16.0"
private val version = "1.17.0"

var serverUrl: String
get() = this.wantedServerUrl ?: DEFAULT_URL
2 changes: 1 addition & 1 deletion python/svix/__init__.py
Original file line number Diff line number Diff line change
@@ -37,4 +37,4 @@
"WebhookVerificationError",
]

__version__ = "1.16.0"
__version__ = "1.17.0"
4 changes: 2 additions & 2 deletions ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PATH
remote: .
specs:
svix (1.16.0)
svix (1.17.0)
typhoeus (~> 1.0, >= 1.0.1)

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.4.4)
ethon (0.14.0)
ffi (>= 1.16.0)
ffi (>= 1.17.0)
ffi (1.15.1)
rake (13.0.6)
rspec (3.10.0)
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.16.0"
VERSION = "1.17.0"
end
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix"
version = "1.16.0"
version = "1.17.0"
authors = ["Svix Inc. <oss@svix.com>"]
edition = "2021"
description="Svix webhooks API client and webhook verification library"
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.16.0"
version = "1.17.0"
license = "MIT"
description = "Svix webhooks server"

Loading