ruby-oci8 2.2.10-x64-mingw-ucrt → 2.2.12-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb3c0c69b65adb9084ea004ad9416e6938e63d36142b289dcf0c08687a353c05
4
- data.tar.gz: 1d6a2f347370c394a583fec28bbc7598e0170d5d3c7b7eac7c63244638359d5a
3
+ metadata.gz: '04932f0898a5fc41d3b52b76d1c6c1f32c8a5d9a5a96925630dec60d3c8123ea'
4
+ data.tar.gz: 834b8d87dd0a8b93e89281bb500037f521b2653bd75dab71f0486ca50f4cc3d7
5
5
  SHA512:
6
- metadata.gz: 87e4cd413b8280c604a3fd774968f32f6aec1849ce549ee628ccdc96d4e57ad113fa441baf1a335824a2292cac57dabeaba4952d0c534760594b289f4b7bae87
7
- data.tar.gz: 93bb70687e56121b8f266e5661c9618f17052bf124c5574742f4e9913a9e5458e5e56598f80447c8ce3cf604a0d8bb31bc8d48ef1e069dc83847e6c195bc4434
6
+ metadata.gz: 02af1a59a1d3c616e4ead15e51502008c546646f823d1cf51aeeff3f4415e824a644755092ef3c63ccd1dd03119d1075aef5c478c27f86659313778a53dba99e
7
+ data.tar.gz: ec1b24a280331f3d072dd6640d0bc83746d2ee4b9a0cc663847ee7a8d64e2325349911b12854ba3b636309087062824a898bf1896dee58c5791b9f92c7893c11
data/ChangeLog CHANGED
@@ -1,3 +1,5 @@
1
+ This file has not been not updated. See commit log at https://github.com/kubo/ruby-oci8.
2
+
1
3
  2020-12-30 Kubo Takehiro <kubo@jiubao.org>
2
4
  * NEWS: Add changes between 2.2.8 and 2.2.9.
3
5
  * lib/oci8/version.rb: Update to 2.2.9.
data/NEWS CHANGED
@@ -1,5 +1,21 @@
1
1
  # @markup markdown
2
2
 
3
+ 2.2.12 (2022-12-30)
4
+ ===================
5
+
6
+ - Fix warning: undefining the allocator of T_DATA class OraNumber against Ruby 3.2.0dev. (GH-243)
7
+ - Fix warnings on tests and on compile.
8
+ - Remove code for old ruby versions.
9
+
10
+ 2.2.11 (2022-02-22)
11
+ ===================
12
+
13
+ - Fix "No DLL is not foud to hook" when `OCI8.properties[:tcp_keepalive_time]` is set and Oracle client is 21c on Windows.
14
+
15
+ (reported at rsim/oracle-enhanced#2262)
16
+
17
+ - Fix "OCI8.properties[:tcp_keepalive_time] isn't available" error when ruby version is 3.1 on Windows.
18
+
3
19
  2.2.10 (2022-01-12)
4
20
  ===================
5
21
 
@@ -4,7 +4,7 @@ class OCI8
4
4
  module Util
5
5
 
6
6
  case RUBY_PLATFORM
7
- when /mswin32|cygwin|mingw32|bccwin32/
7
+ when /mswin32|cygwin|mingw/
8
8
 
9
9
  require 'fiddle/import'
10
10
  require 'fiddle/types'
data/lib/oci8/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class OCI8
2
- VERSION = "2.2.10"
2
+ VERSION = "2.2.12"
3
3
  end
data/lib/oci8lib_310.so CHANGED
Binary file
Binary file
data/pre-distclean.rb CHANGED
@@ -1,6 +1,4 @@
1
- rm_f "#{curr_objdir}/lib/oci8.rb"
2
- rm_f "#{curr_objdir}/ext/oci8/oci8lib_18.map"
3
- rm_f "#{curr_objdir}/ext/oci8/oci8lib_191.map"
1
+ rm_f "#{curr_objdir}/ext/oci8/oci8lib_*.map"
4
2
  if RUBY_PLATFORM =~ /cygwin/
5
3
  rm_f "#{curr_objdir}/ext/oci8/OCI.def"
6
4
  rm_f "#{curr_objdir}/ext/oci8/libOCI.a"
data/test/test_object.rb CHANGED
@@ -1,12 +1,6 @@
1
1
  require 'oci8'
2
2
  require File.dirname(__FILE__) + '/config'
3
3
 
4
- class Time
5
- def inspect
6
- self.strftime("%Y-%m-%d %H:%M:%S.%N %:z")
7
- end
8
- end
9
-
10
4
  conn = OCI8.new($dbuser, $dbpass, $dbname)
11
5
  error_message = nil
12
6
  begin
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-oci8
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.10
4
+ version: 2.2.12
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Kubo Takehiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-12 00:00:00.000000000 Z
11
+ date: 2022-12-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available
14
14
  with Oracle 10g or later including Oracle Instant Client.
@@ -60,6 +60,7 @@ files:
60
60
  - lib/oci8/properties.rb
61
61
  - lib/oci8/version.rb
62
62
  - lib/oci8lib_310.so
63
+ - lib/oci8lib_320.so
63
64
  - lib/ruby-oci8.rb
64
65
  - metaconfig
65
66
  - pre-distclean.rb
@@ -106,7 +107,7 @@ require_paths:
106
107
  - lib
107
108
  required_ruby_version: !ruby/object:Gem::Requirement
108
109
  requirements:
109
- - - "~>"
110
+ - - ">="
110
111
  - !ruby/object:Gem::Version
111
112
  version: 3.1.0
112
113
  required_rubygems_version: !ruby/object:Gem::Requirement