Skip to content

Commit

Permalink
Update to Postgresql-16.4 and OpenSSL-3.3.2 for Windows binary gems
Browse files Browse the repository at this point in the history
Add a missing change to History.md
  • Loading branch information
larskanis committed Sep 6, 2024
1 parent 7af75a4 commit cb35e3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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


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


## v1.5.6 [2024-03-01] Lars Kanis <lars@greiz-reinsdorf.de>
Expand Down
7 changes: 3 additions & 4 deletions Rakefile.cross
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class CrossLibrary < OpenStruct
self.host_platform = toolchain

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

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

# Static OpenSSL build vars
self.static_openssl_builddir = static_builddir + "openssl-#{openssl_version}"

self.openssl_source_uri =
URI( "http://www.openssl.org/source/openssl-#{openssl_version}.tar.gz" )
URI( "https://github.com/openssl/openssl/releases/download/openssl-#{openssl_version}/openssl-#{openssl_version}.tar.gz" )
self.openssl_tarball = static_sourcesdir + File.basename( openssl_source_uri.path )
self.openssl_makefile = static_openssl_builddir + 'Makefile'

Expand Down

0 comments on commit cb35e3f

Please sign in to comment.