ruby-oci8 2.2.10-x86-mingw32 → 2.2.12-x86-mingw32

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: a3035b58d87218c4734037f1fbd37bf90a1bc4f9c7ee862b9d7540a7e10e0f35
4
- data.tar.gz: 7c9d57a3e5c66037f824592711f1ed98e172368b349d2b6bfccd79ff1fae2049
3
+ metadata.gz: 631ba8e42861f615caee28df738ede602aaa3977c05cc601b353516ce5810f6c
4
+ data.tar.gz: 589d194f03b126fd6a0f2efbaf384533c69db981832ff7b7e10ae869a9a64186
5
5
  SHA512:
6
- metadata.gz: 917ea5461913071352df5f57269b60591f807a70e28590f4ae00da4ebfed03e2b64c44cd76618880ab4d2cd8988170501bbc11aac7941ac782d92a8eb9fe348e
7
- data.tar.gz: baa6495d40b3b010a29d359d61b4bdc40b3135751b28d262055d061b36c41531028aba431441aeca0a482943e20b13f689b570101332d4a7930c6d9e50c5f3ec
6
+ metadata.gz: 774e9ab8bb6d62d6b0b0e87131d09a686a4b35f1889c7575ae0d6f30b8bc28b499c2d88b9a99bba32b2dda8af7cb4b0e06249dc720f7393f84f931972548cf3b
7
+ data.tar.gz: fd4ca300d276aae13817e0fd9fc5166ac2dbf65e61e23a6a0687295501c0f5d05862aefa4c2c034934d21aadc80c310955dbd6449edc80df8603defba4eda322
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_260.so CHANGED
Binary file
data/lib/oci8lib_270.so CHANGED
Binary file
data/lib/oci8lib_300.so CHANGED
Binary file
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: x86-mingw32
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.
@@ -59,11 +59,11 @@ files:
59
59
  - lib/oci8/oracle_version.rb
60
60
  - lib/oci8/properties.rb
61
61
  - lib/oci8/version.rb
62
- - lib/oci8lib_250.so
63
62
  - lib/oci8lib_260.so
64
63
  - lib/oci8lib_270.so
65
64
  - lib/oci8lib_300.so
66
65
  - lib/oci8lib_310.so
66
+ - lib/oci8lib_320.so
67
67
  - lib/ruby-oci8.rb
68
68
  - metaconfig
69
69
  - pre-distclean.rb
@@ -112,15 +112,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - ">="
114
114
  - !ruby/object:Gem::Version
115
- version: 2.5.0
115
+ version: 2.6.0
116
116
  required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  requirements:
118
118
  - - ">="
119
119
  - !ruby/object:Gem::Version
120
120
  version: '0'
121
121
  requirements: []
122
- rubyforge_project:
123
- rubygems_version: 2.7.3
122
+ rubygems_version: 3.0.1
124
123
  signing_key:
125
124
  specification_version: 4
126
125
  summary: Ruby interface for Oracle using OCI8 API
data/lib/oci8lib_250.so DELETED
Binary file