Skip to content

Commit 333e347

Browse files
committed
Switch NativeTLS to Rustls
1 parent 4366729 commit 333e347

File tree

13 files changed

+198
-325
lines changed

13 files changed

+198
-325
lines changed

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
uses: docker/metadata-action@v4
4545
with:
4646
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
47+
flavor: |
48+
latest=${{ !contains(github.ref, 'beta') || !contains(github.ref, 'alpha') || !contains(github.ref, 'rc') }}
4749
tags: |
4850
type=ref,event=branch
4951
type=ref,event=pr
@@ -87,4 +89,4 @@ jobs:
8789
name: ${{ steps.extract_changelog.outputs.version_name }}
8890
body_path: ./RELEASE_CHANGELOG
8991
draft: true
90-
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
92+
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') || contains(github.ref, 'rc') }}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ This file is a running track of new features and fixes to each version of the pa
44

55
This project follows [Semantic Versioning](http://semver.org) guidelines.
66

7+
## v2.3.2-rc.1
8+
9+
### Changes
10+
11+
- Switched from NativeTLS to Rustls for TLS verification. Should hopefully resolve the issue with Coterm exiting with no
12+
errors.
13+
714
## v2.3.1
815

916
### Changes

0 commit comments

Comments
 (0)