ruby-oci8 2.2.11 → 2.2.12

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: 1fedff79278c31d88dee698417671fb84c334ad61d08595662fcef4c792742eb
4
- data.tar.gz: 8af51646f9e6c4f96be8baaf15582b1e510f8655ed4c4f06cc45f0ab2599e8ea
3
+ metadata.gz: c98e1080c073f6f2f2a67676f754259e8c20d2ef95d6abbb1015fd62df569d84
4
+ data.tar.gz: 4a14e505c268c3a2b408c9f4881026dd32bbe6e4276df83c77483e0402bb32b1
5
5
  SHA512:
6
- metadata.gz: f3efe23976439e355436b273d28778a1658d01c1d0c57809e3d992600efc98d0455f44936b711026d7eb4dc9599dda6477367edb49823d125a4cc6d2ef3f2349
7
- data.tar.gz: 9ff212eccdc0e737f648aaab32f4958e47f5c551823d6d9613b89cf8f5195561980f5cc5c0d34c7a88e591c045b601ff779cb5a7b562ca26c0efbaa532e198f2
6
+ metadata.gz: 1e73a635ede56087026f6b573c2f1f6624d7a265423a91ab1d7592534f6c132a1e4f1ca812e4a2651f690588f39c8c82040d20fcc9719fa0028a67c230e76e1d
7
+ data.tar.gz: 57497720f51ed3d2062ed8dc5eb07b248d3b19326e7c83a2cd508aaec0e7f3d33b658eb0605134776913cffc631e57b9e6b97d8b6367e5cf59dd83d24e0c749d
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,12 @@
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
+
3
10
  2.2.11 (2022-02-22)
4
11
  ===================
5
12
 
data/ext/oci8/oci8.h CHANGED
@@ -89,88 +89,6 @@ typedef orasb8 sb8;
89
89
  #endif
90
90
  #endif
91
91
 
92
- /*
93
- * Use TypedData on ruby 1.9.3 and later.
94
- */
95
- #ifndef HAVE_RB_DATA_TYPE_T_FUNCTION
96
-
97
- /*
98
- * Don't use TypedData even though ruby 1.9.2 has it because the
99
- * definitions are slightly different from ruby 1.9.3 and later.
100
- */
101
- #define rb_data_type_t oci8_data_type_t
102
- #undef TypedData_Make_Struct
103
- #undef TypedData_Wrap_Struct
104
- #undef TypedData_Get_Struct
105
- #undef RTYPEDDATA_DATA
106
- #undef RUBY_DEFAULT_FREE
107
-
108
- /*
109
- * To pass compilation on ruby 1.9.2 and earlier.
110
- */
111
- typedef struct oci8_data_type_struct rb_data_type_t;
112
- struct oci8_data_type_struct {
113
- const char *wrap_struct_name;
114
- struct {
115
- void (*dmark)(void*);
116
- void (*dfree)(void*);
117
- size_t (*dsize)(const void *);
118
- } function;
119
- const rb_data_type_t *parent;
120
- void *data;
121
- };
122
- #define TypedData_Make_Struct(klass, type, data_type, sval) \
123
- Data_Make_Struct((klass), type, (data_type)->function.dmark, (data_type)->function.dfree, (sval))
124
- #define TypedData_Wrap_Struct(klass, data_type, sval) \
125
- Data_Wrap_Struct((klass), (data_type)->function.dmark, (data_type)->function.dfree, (sval))
126
- #define TypedData_Get_Struct(obj, type, data_type, sval) \
127
- Data_Get_Struct((obj), type, (sval))
128
- #define RTYPEDDATA_DATA(obj) DATA_PTR(obj)
129
- #define RUBY_DEFAULT_FREE xfree
130
- #endif
131
-
132
- /* a new function in ruby 1.9.3.
133
- * define a compatible macro for ruby 1.9.2 or lower.
134
- */
135
- #ifndef HAVE_RB_CLASS_SUPERCLASS
136
- #ifdef RCLASS_SUPER
137
- #define rb_class_superclass(cls) RCLASS_SUPER(cls)
138
- #else
139
- #define rb_class_superclass(cls) (RCLASS(cls)->super)
140
- #endif
141
- #endif
142
-
143
- /* new macros in ruby 2.1.0
144
- */
145
- #ifndef RARRAY_AREF
146
- #define RARRAY_AREF(a, i) (RARRAY_PTR(a)[i])
147
- #endif
148
- #ifndef RARRAY_CONST_PTR
149
- #define RARRAY_CONST_PTR(a) RARRAY_PTR(a)
150
- #endif
151
- #ifndef RB_OBJ_WRITE
152
- #define RB_OBJ_WRITE(a, slot, b) do {*(slot) = (b);} while (0)
153
- #endif
154
- #ifndef RB_OBJ_WRITTEN
155
- #define RB_OBJ_WRITTEN(a, oldv, b) do {(void)oldv;} while (0)
156
- #endif
157
-
158
- /* new macros in ruby 2.4.0
159
- */
160
- #ifndef ALWAYS_INLINE
161
- #if defined(__GNUC__) && ((__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
162
- /* gcc version >= 3.1 */
163
- #define ALWAYS_INLINE(x) __attribute__((always_inline)) x
164
- #endif
165
- #ifdef _MSC_VER
166
- /* microsoft c */
167
- #define ALWAYS_INLINE(x) __forceinline x
168
- #endif
169
- #ifndef ALWAYS_INLINE
170
- #define ALWAYS_INLINE(x) x
171
- #endif
172
- #endif /* ALWAYS_INLINE */
173
-
174
92
  /* macros depends on the compiler.
175
93
  * LIKELY(x) hint for the compiler that 'x' is 1(TRUE) in many cases.
176
94
  * UNLIKELY(x) hint for the compiler that 'x' is 0(FALSE) in many cases.
@@ -382,7 +300,7 @@ OCIEnv *oci8_make_envhp(void);
382
300
  extern oci8_tls_key_t oci8_tls_key; /* native thread key */
383
301
  OCIError *oci8_make_errhp(void);
384
302
 
385
- static inline OCIError *oci8_get_errhp()
303
+ static inline OCIError *oci8_get_errhp(void)
386
304
  {
387
305
  OCIError *errhp = (OCIError *)oci8_tls_get(oci8_tls_key);
388
306
  return LIKELY(errhp != NULL) ? errhp : oci8_make_errhp();
data/ext/oci8/oci8lib.c CHANGED
@@ -191,7 +191,7 @@ static void rebind_internal_symbols(void)
191
191
  __declspec(dllexport)
192
192
  #endif
193
193
  void
194
- Init_oci8lib()
194
+ Init_oci8lib(void)
195
195
  {
196
196
  VALUE cOCI8;
197
197
  OCIEnv *envhp = NULL;
data/ext/oci8/ocihandle.c CHANGED
@@ -217,7 +217,7 @@ static VALUE attr_get_common(int argc, VALUE *argv, VALUE self, enum datatype da
217
217
  }
218
218
  return rb_external_str_new_with_enc(v.charptr, size, oci8_encoding);
219
219
  case DATATYPE_BINARY:
220
- return rb_tainted_str_new(v.charptr, size);
220
+ return rb_str_new(v.charptr, size);
221
221
  case DATATYPE_INTEGER:
222
222
  if (size > sizeof(onum.OCINumberPart) - 1) {
223
223
  rb_raise(rb_eRuntimeError, "Too long size %u", size);
data/ext/oci8/ocinumber.c CHANGED
@@ -1795,6 +1795,7 @@ Init_oci_number(VALUE cOCI8, OCIError *errhp)
1795
1795
  id_BigDecimal = rb_intern("BigDecimal");
1796
1796
 
1797
1797
  cOCINumber = rb_define_class("OraNumber", rb_cNumeric);
1798
+ rb_define_alloc_func(cOCINumber, onum_s_alloc);
1798
1799
  mMath = rb_define_module_under(cOCI8, "Math");
1799
1800
 
1800
1801
  /* constants for internal use. */
@@ -1844,8 +1845,6 @@ Init_oci_number(VALUE cOCI8, OCIError *errhp)
1844
1845
  rb_define_module_function(mMath, "log10", omath_log10, 1);
1845
1846
  rb_define_module_function(mMath, "sqrt", omath_sqrt, 1);
1846
1847
 
1847
- rb_define_alloc_func(cOCINumber, onum_s_alloc);
1848
-
1849
1848
  /* methods of OCI::Number */
1850
1849
  rb_define_global_function("OraNumber", onum_f_new, -1);
1851
1850
  rb_define_method(cOCINumber, "initialize", onum_initialize, -1);
data/lib/oci8/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class OCI8
2
- VERSION = "2.2.11"
2
+ VERSION = "2.2.12"
3
3
  end
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.11
4
+ version: 2.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kubo Takehiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-22 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.
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  requirements: []
155
- rubygems_version: 3.1.2
155
+ rubygems_version: 3.4.1
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Ruby interface for Oracle using OCI8 API