sequel_pg 1.17.1 → 1.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 56786474673577561d1a782036554d0b76e235e532ef9b59a0ef2d5432b02bbf
4
- data.tar.gz: 9c5f8b66b218938fc302e0428f62a3b2817cf7a1994bfc9e08740ed58703b351
3
+ metadata.gz: 61a49fada0595f92d8452ff231ff0d44ffadf59a887671c9d86178d957f95f44
4
+ data.tar.gz: 8969b6f0b9492e2f9edb087b57ef7b13993d61eeaabb9a0291478c1a227448ff
5
5
  SHA512:
6
- metadata.gz: 21eaa799a903c49beb82b0979160b89158990853fe430ad9d491627b926a7706869ad1ade114c1446e6fb0b379bede780505155d0780b89d8d77bbecffe25f31
7
- data.tar.gz: 750785782d68a8207286b929b0770df17315aa864bfcc25bc318d0562f655c16f636f4541353438ad626f1cd119f0262638386c9b48aae76a159c32c65157a7d
6
+ metadata.gz: 7d5f69fd6e5f2a7dd3b067ca423c85ed2d9fc2f3af9ae191a19507ac3635e654699e5dac6c90ba1f910d5619cf8242a039e07752bfccbfed8c2a57a280fe0bb3
7
+ data.tar.gz: 899259457171fafd01c689f234da55255a06a4408ab7e58bcbdf8df94a409884a46ce3e613a2faabe9fbec350b65188d3d8a3e1821832b74d7ff9d145bbb16ef
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.17.2 (2025-03-14)
2
+
3
+ * Add explicit arguments to PQfreemem casts to avoid compilation issues when using the C23 standard (jeremyevans) (#59)
4
+
1
5
  === 1.17.1 (2023-01-05)
2
6
 
3
7
  * Modify LDFLAGS when building on MacOS to allow undefined functions (delphaber) (#53)
data/README.rdoc CHANGED
@@ -77,7 +77,7 @@ variables to specify the shared library and header directories.
77
77
 
78
78
  == Running the specs
79
79
 
80
- sequel_pg is designed to replace a part of Sequel, so it shold be tested
80
+ sequel_pg is designed to replace a part of Sequel, so it should be tested
81
81
  using Sequel's specs (the spec_postgres rake task). There is a spec_cov
82
82
  task that assumes you have Sequel checked out at ../sequel, and uses a
83
83
  small spec suite for parts of sequel_pg not covered by Sequel's specs.
@@ -1,4 +1,4 @@
1
- #define SEQUEL_PG_VERSION_INTEGER 11701
1
+ #define SEQUEL_PG_VERSION_INTEGER 11702
2
2
 
3
3
  #include <string.h>
4
4
  #include <stdio.h>
@@ -879,7 +879,7 @@ static VALUE spg__array_col_value(char *v, size_t length, VALUE converter, int e
879
879
  break;
880
880
  case 17: /* bytea */
881
881
  bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
882
- rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)())PQfreemem, (VALUE)bi.blob_string);
882
+ rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
883
883
  break;
884
884
  case 20: /* integer */
885
885
  case 21:
@@ -1031,7 +1031,7 @@ static VALUE spg__col_value(VALUE self, PGresult *res, int i, int j, VALUE* colc
1031
1031
  break;
1032
1032
  case 17: /* bytea */
1033
1033
  bi.blob_string = (char *)PQunescapeBytea((unsigned char*)v, &bi.length);
1034
- rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)())PQfreemem, (VALUE)bi.blob_string);
1034
+ rv = rb_ensure(spg_create_Blob, (VALUE)&bi, (VALUE(*)(VALUE))PQfreemem, (VALUE)bi.blob_string);
1035
1035
  break;
1036
1036
  case 20: /* integer */
1037
1037
  case 21:
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel_pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.1
4
+ version: 1.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-01-04 00:00:00.000000000 Z
10
+ date: 2025-03-14 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: pg
@@ -79,7 +78,6 @@ metadata:
79
78
  documentation_uri: https://github.com/jeremyevans/sequel_pg/blob/master/README.rdoc
80
79
  mailing_list_uri: https://github.com/jeremyevans/sequel_pg/discussions
81
80
  source_code_uri: https://github.com/jeremyevans/sequel_pg
82
- post_install_message:
83
81
  rdoc_options:
84
82
  - "--quiet"
85
83
  - "--line-numbers"
@@ -101,8 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
99
  - !ruby/object:Gem::Version
102
100
  version: '0'
103
101
  requirements: []
104
- rubygems_version: 3.4.1
105
- signing_key:
102
+ rubygems_version: 3.6.2
106
103
  specification_version: 4
107
104
  summary: Faster SELECTs when using Sequel with pg
108
105
  test_files: []