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

Update to LibreSSL 3.9.1 #106

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
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 .github/workflows/breakage-against-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: libressl 3.x with ponyc main
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:latest
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.1:latest
steps:
- uses: actions/checkout@v4.1.1
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: libressl 3.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:release
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.1:release
steps:
- uses: actions/checkout@v4.1.1
- name: Test
Expand Down
3 changes: 3 additions & 0 deletions .release-notes/next-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Update to LibreSSL 3.9.1 on Windows

The version of LibreSSL used on Windows was updated to 3.9.1 to keep in sync with the `net_ssl` package.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this library will be documented in this file. This projec

### Changed

- - Update to LibreSSL 3.9.1 on Windows ([PR #106](https://github.com/ponylang/crypto/pull/106))

## [1.2.2] - 2023-04-27

Expand Down
4 changes: 2 additions & 2 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function BuildTest

function BuildLibs
{
$libreSsl = "libressl-3.7.3"
$libreSsl = "libressl-3.9.1"

if (-not (Test-Path "$rootDir/crypto.lib"))
{
Expand Down Expand Up @@ -175,7 +175,7 @@ function BuildLibs
}

# copy to the root dir (i.e. PONYPATH) for linking
Copy-Item -Force -Path "$libsDir/lib/crypto-50.lib" -Destination "$rootDir/crypto.lib"
Copy-Item -Force -Path "$libsDir/lib/crypto.lib" -Destination "$rootDir/crypto.lib"
}
}

Expand Down
Loading