Skip to content

Commit cb35e3f

Browse files
committed
Update to Postgresql-16.4 and OpenSSL-3.3.2 for Windows binary gems
Add a missing change to History.md
1 parent 7af75a4 commit cb35e3f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

History.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Fix host list duplication every time conn.reset is used. [#586](https://github.com/ged/ruby-pg/pull/586)
44
- Add default decoder for anonymous record types to BasicTypeRegistry [#579](https://github.com/ged/ruby-pg/pull/579)
5+
- Update Windows fat binary gem to OpenSSL-3.3.2 and PostgreSQL-16.4.
56

67

78
## v1.5.7 [2024-07-28] Lars Kanis <[email protected]>
@@ -14,6 +15,7 @@
1415
- Add missing PG::RollbackTransaction as an option to exit conn.transaction. [#560](https://github.com/ged/ruby-pg/pull/560)
1516
Usage like in rails: https://api.rubyonrails.org/classes/ActiveRecord/Rollback.html
1617
- Don't print a warning when bigdecimal is required on ruby-3.4+ [#574](https://github.com/ged/ruby-pg/pull/574)
18+
- Update Windows fat binary gem to OpenSSL-3.3.1 and PostgreSQL-16.3.
1719

1820

1921
## v1.5.6 [2024-03-01] Lars Kanis <[email protected]>

Rakefile.cross

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class CrossLibrary < OpenStruct
3131
self.host_platform = toolchain
3232

3333
# Cross-compilation constants
34-
self.openssl_version = ENV['OPENSSL_VERSION'] || '3.3.1'
35-
self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '16.3'
34+
self.openssl_version = ENV['OPENSSL_VERSION'] || '3.3.2'
35+
self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '16.4'
3636

3737
# Check if symlinks work in the current working directory.
3838
# This fails, if rake-compiler-dock is running on a Windows box.
@@ -52,9 +52,8 @@ class CrossLibrary < OpenStruct
5252

5353
# Static OpenSSL build vars
5454
self.static_openssl_builddir = static_builddir + "openssl-#{openssl_version}"
55-
5655
self.openssl_source_uri =
57-
URI( "http://www.openssl.org/source/openssl-#{openssl_version}.tar.gz" )
56+
URI( "https://github.com/openssl/openssl/releases/download/openssl-#{openssl_version}/openssl-#{openssl_version}.tar.gz" )
5857
self.openssl_tarball = static_sourcesdir + File.basename( openssl_source_uri.path )
5958
self.openssl_makefile = static_openssl_builddir + 'Makefile'
6059

0 commit comments

Comments
 (0)