ruby-oci8 2.2.8-x64-mingw32 → 2.2.9-x64-mingw32

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
- SHA1:
3
- metadata.gz: 6c79d6047506277cf857917a343c798279eaecb6
4
- data.tar.gz: d506f61aefbc19ff754e9bcfcf61a42f3a00045c
2
+ SHA256:
3
+ metadata.gz: eb6707d7ba8417adae005295d0a3b2b47908d2d0a06a065034797ae37a94308d
4
+ data.tar.gz: 93601a2f486a2cc4c49ffe2e794cc637b1366679a1077ae6fbdaf3b03cb250ca
5
5
  SHA512:
6
- metadata.gz: 406bd92504dd180f14f6dc27bcf7674c3cffa90ab670a38892729d46596830884779c1b775c0414341a48f50e82061cac21461fcad6120b4d591437d8d26f0dc
7
- data.tar.gz: c0328a669304fa36b97ad62073e6716e26de379c84e542e1bc300dc4d35ead0e6d9e344c066b41651fd3cbc44e671740dc58eb2024115ca625820ef8dab3c22e
6
+ metadata.gz: 73663e7381ac9a45afbce47f5dab35bb49ca971a2911524a7fb1ff693503b20a3cf9446c54a08eb1a173738c057866d7dd0a80e9f8e590a78cede8c3b7e90f42
7
+ data.tar.gz: 89434cc79e5184702d4696c253bad2a34be5a561bdb210610ecaf6cf655b6caf9c4f438cb993cc3ca166033dd8f60d555ffe344911d87dd4dd32897af4a06590
data/ChangeLog CHANGED
@@ -1,3 +1,28 @@
1
+ 2020-12-30 Kubo Takehiro <kubo@jiubao.org>
2
+ * NEWS: Add changes between 2.2.8 and 2.2.9.
3
+ * lib/oci8/version.rb: Update to 2.2.9.
4
+ * mkpkg-win32.rb: remove unmaintained ruby versions from binary gems.
5
+
6
+ 2020-12-29 Kubo Takehiro <kubo@jiubao.org>
7
+ * ext/oci8/oraconf.rb: Support --with-instant-client-dir along with --with-instant-client-lib/include.
8
+ (GH-223)
9
+
10
+ 2020-12-29 Kubo Takehiro <kubo@jiubao.org>
11
+ * ext/oci8/hook_funcs.c: Fix hooking failure with truffleruby.
12
+ * test/test_break.rb: Fix to pass tests with truffleruby.
13
+
14
+ 2020-12-28 Kubo Takehiro <kubo@jiubao.org>
15
+ * mkpkg-win32.rb: Build binary gems for ruby 3.0 on Windows.
16
+
17
+ 2020-12-28 Kubo Takehiro <kubo@jiubao.org>
18
+ * ext/oci8/ocinumber.c: Suppress C compiler warning: enumeration value ‘RUBY_T_NONE’ not handled in switch
19
+
20
+ 2020-09-10 Kubo Takehiro <kubo@jiubao.org>
21
+ * ext/oci8/extconf.rb: Fix for TruffleRuby 20.2 or before.
22
+
23
+ 2020-09-08 Brandon Fish <brandon.j.fish@oracle.com>
24
+ * ext/oci8/extconf.rb, lib/oci8.rb: Handle truffleruby RUBY_ENGINE in case statements
25
+
1
26
  2020-01-11 Kubo Takehiro <kubo@jiubao.org>
2
27
  * NEWS: Add changes between 2.2.7 and 2.2.8.
3
28
  * lib/oci8/version.rb: Update to 2.2.8.
data/NEWS CHANGED
@@ -1,5 +1,21 @@
1
1
  # @markup markdown
2
2
 
3
+ 2.2.9 (2020-12-30)
4
+ ==================
5
+
6
+ - Support [TruffleRuby](https://github.com/oracle/truffleruby). (GH-225)
7
+
8
+ (contributed by Brandon Fish)
9
+
10
+ - Remove extension libraries for unmaintained ruby versions from binary gems.
11
+
12
+ Fixed issue
13
+ -----------
14
+
15
+ - Allow --with-instant-client-dir along with --with-instant-client-lib/include. (GH-223)
16
+
17
+ (reported by Victor Nawothnig)
18
+
3
19
  2.2.8 (2020-01-11)
4
20
  ==================
5
21
 
data/README.md CHANGED
@@ -2,7 +2,7 @@ Ruby-oci8
2
2
  =========
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/ruby-oci8.svg)](http://badge.fury.io/rb/ruby-oci8)
5
- [![Build Status](https://travis-ci.org/kubo/ruby-oci8.svg?branch=master)](https://travis-ci.org/kubo/ruby-oci8)
5
+ [![Build Status](https://travis-ci.com/kubo/ruby-oci8.svg?branch=master)](https://travis-ci.com/kubo/ruby-oci8)
6
6
 
7
7
  What is ruby-oci8
8
8
  -----------------
@@ -66,6 +66,8 @@ when 'rbx'
66
66
  so_basename += 'rbx'
67
67
  when 'jruby'
68
68
  raise "Ruby-oci8 doesn't support jruby because its C extension support is in development in jruby 1.6 and deprecated in jruby 1.7."
69
+ when 'truffleruby'
70
+ so_basename += 'truffleruby'
69
71
  else
70
72
  raise 'unsupported ruby engine: ' + RUBY_ENGINE
71
73
  end
@@ -1,3 +1,3 @@
1
1
  class OCI8
2
- VERSION = "2.2.8"
2
+ VERSION = "2.2.9"
3
3
  end
Binary file
Binary file
Binary file
Binary file
@@ -62,7 +62,7 @@ class TestBreak < Minitest::Test
62
62
  expect = []
63
63
  expect[PLSQL_DONE] = TIME_IN_PLSQL
64
64
  expect[OCIBREAK] = "Invalid status"
65
- if defined? Rubinius and Rubinius::VERSION >= "2.0"
65
+ if (defined? Rubinius and Rubinius::VERSION >= "2.0") || (defined? RUBY_ENGINE and RUBY_ENGINE == "truffleruby")
66
66
  # Rubinius 2.0.0.
67
67
  # DBMS_LOCK.SLEEP blocks ruby threads which try to call C-API.
68
68
  expect[SEND_BREAK] = TIME_TO_BREAK
metadata CHANGED
@@ -1,24 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-oci8
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.8
4
+ version: 2.2.9
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Kubo Takehiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-11 00:00:00.000000000 Z
11
+ date: 2020-12-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: |
14
- ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available with Oracle 10g or later including Oracle Instant Client.
13
+ description: 'ruby-oci8 is a ruby interface for Oracle using OCI8 API. It is available
14
+ with Oracle 10g or later including Oracle Instant Client.
15
+
16
+ '
15
17
  email: kubo@jiubao.org
16
18
  executables: []
17
19
  extensions: []
18
20
  extra_rdoc_files:
19
21
  - README.md
20
22
  files:
21
- - .yardopts
23
+ - ".yardopts"
22
24
  - COPYING
23
25
  - COPYING_old
24
26
  - ChangeLog
@@ -26,10 +28,6 @@ files:
26
28
  - NEWS
27
29
  - README.md
28
30
  - dist-files
29
- - metaconfig
30
- - pre-distclean.rb
31
- - ruby-oci8.gemspec
32
- - setup.rb
33
31
  - docs/bind-array-to-in_cond.md
34
32
  - docs/conflicts-local-connections-and-processes.md
35
33
  - docs/hanging-after-inactivity.md
@@ -44,8 +42,8 @@ files:
44
42
  - docs/report-installation-issue.md
45
43
  - docs/timeout-parameters.md
46
44
  - lib/.document
47
- - lib/oci8.rb
48
45
  - lib/dbd/OCI8.rb
46
+ - lib/oci8.rb
49
47
  - lib/oci8/.document
50
48
  - lib/oci8/bindtype.rb
51
49
  - lib/oci8/check_load_error.rb
@@ -62,7 +60,15 @@ files:
62
60
  - lib/oci8/oracle_version.rb
63
61
  - lib/oci8/properties.rb
64
62
  - lib/oci8/version.rb
63
+ - lib/oci8lib_250.so
64
+ - lib/oci8lib_260.so
65
+ - lib/oci8lib_270.so
66
+ - lib/oci8lib_300.so
65
67
  - lib/ruby-oci8.rb
68
+ - metaconfig
69
+ - pre-distclean.rb
70
+ - ruby-oci8.gemspec
71
+ - setup.rb
66
72
  - test/README.md
67
73
  - test/config.rb
68
74
  - test/setup_test_object.sql
@@ -72,18 +78,18 @@ files:
72
78
  - test/test_array_dml.rb
73
79
  - test/test_bind_array.rb
74
80
  - test/test_bind_boolean.rb
81
+ - test/test_bind_integer.rb
75
82
  - test/test_bind_raw.rb
76
83
  - test/test_bind_string.rb
77
84
  - test/test_bind_time.rb
78
- - test/test_bind_integer.rb
79
85
  - test/test_break.rb
80
86
  - test/test_clob.rb
81
87
  - test/test_connection_pool.rb
82
88
  - test/test_connstr.rb
83
- - test/test_encoding.rb
84
89
  - test/test_datetime.rb
85
90
  - test/test_dbi.rb
86
91
  - test/test_dbi_clob.rb
92
+ - test/test_encoding.rb
87
93
  - test/test_error.rb
88
94
  - test/test_metadata.rb
89
95
  - test/test_object.rb
@@ -94,14 +100,6 @@ files:
94
100
  - test/test_package_type.rb
95
101
  - test/test_properties.rb
96
102
  - test/test_rowid.rb
97
- - lib/oci8lib_200.so
98
- - lib/oci8lib_210.so
99
- - lib/oci8lib_220.so
100
- - lib/oci8lib_230.so
101
- - lib/oci8lib_240.so
102
- - lib/oci8lib_250.so
103
- - lib/oci8lib_260.so
104
- - lib/oci8lib_270.so
105
103
  homepage: http://www.rubydoc.info/github/kubo/ruby-oci8
106
104
  licenses:
107
105
  - BSD-2-Clause
@@ -112,17 +110,17 @@ require_paths:
112
110
  - lib
113
111
  required_ruby_version: !ruby/object:Gem::Requirement
114
112
  requirements:
115
- - - '>='
113
+ - - ">="
116
114
  - !ruby/object:Gem::Version
117
- version: 2.0.0
115
+ version: 2.5.0
118
116
  required_rubygems_version: !ruby/object:Gem::Requirement
119
117
  requirements:
120
- - - '>='
118
+ - - ">="
121
119
  - !ruby/object:Gem::Version
122
120
  version: '0'
123
121
  requirements: []
124
122
  rubyforge_project:
125
- rubygems_version: 2.0.0
123
+ rubygems_version: 2.7.3
126
124
  signing_key:
127
125
  specification_version: 4
128
126
  summary: Ruby interface for Oracle using OCI8 API
Binary file
Binary file
Binary file
Binary file
Binary file