forked from kubo/ruby-oci8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3456 lines (2932 loc) · 154 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-01-14 Kubo Takehiro <[email protected]>
* ext/oci8/env.c, ext/oci8/error.c, ext/oci8/oci8.h,
ext/oci8/oci8lib.c: Fix memory leaks when `require 'oci8'` raises a LoadError.
2017-01-08 Kubo Takehiro <[email protected]>
* docs/install-binary-package.md, docs/install-instant-client.md:
Update documents for installation on Windows.
2017-01-07 Kubo Takehiro <[email protected]>
* ext/oci8/oci8lib.c: If libclntsh.so exports and imports same
functions, their PLT entries are forcedly modified to point
to itself not to use functions in other libraries.
(Only on Linux and macOS)
* README.md, docs/ldap-auth-and-function-interposition.md:
Add document about "LDAP Authentication and Function Interposition."
2016-12-28 Yavor Nikolov <[email protected]>
* README.md: add build status and Gem version badges
(merged at 2016-12-29)
2016-12-28 Yavor Nikolov <[email protected]>
* README.md: add title, demote sections to H2
(merged at 2016-12-29)
2016-12-28 Yavor Nikolov <[email protected]>
* lib/oci8/cursor.rb: Fix misleading cursor.bind_param header comment
Reword an obsolete description of bind_param - since currently there is no
restriction for Bignum nor for very large Integer values.
(merged at 2016-12-29)
2016-12-27 Yavor Nikolov <[email protected]>
* dist-files, test/test_all.rb, test/test_bind_integer.rb:
Tests for binding integer cursor in parameters
Add tests for binding a range of small and large integer variables
directly (not through OraNumber).
(merged at 2016-12-29)
2016-12-26 Yavor Nikolov <[email protected]>
* circle.yml, cisetup/create_ruby_user.sql, cisetup/oracle/download.sh,
cisetup/oracle/install.sh, cisetup/setup_accounts.sh:
Add Circle CI build
(merged at 2016-12-28)
2016-12-26 Yavor Nikolov <[email protected]>
* test/test_oci8.rb: Fix date/time test (expected time timezone).
Time.now offset leads to unstable test due to DST sensitivity.
The solution is to take the offset of the specific local date/time.
(merged at 2016-12-28)
2016-12-25 Koichi ITO <[email protected]>
* ext/oci8/encoding.c, ext/oci8/oci8.c, ext/oci8/ocihandle.c
ext/oci8/oraconf.rb, ext/oci8/oradate.c, ext/oci8/stmt.c
lib/oci8/cursor.rb: Integer Unification in Ruby 2.4.0+
(merged at 2016-12-29)
2016-12-27 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.2.2 and 2.2.3.
* lib/oci8/version.rb: update to 2.2.3.
* dist-files: add test/test_bind_array.rb
* mkpkg-win32.rb: add path to ruby 2.4.0
2016-12-26 Kubo Takehiro <[email protected]>
* test/test_clob.rb, test/test_metadata.rb, test/test_object.rb,
test/test_oci8.rb, test/test_package_type.rb: Suppress warnings:
"Use assert_nil if expecting nil from ... in `...' This will
fail in MT6" printed by Minitest.
2016-12-26 Kubo Takehiro <[email protected]>
* lib/oci8/bindtype.rb, lib/oci8/compat.rb, lib/oci8/oci8.rb,
test/config.rb: Suppress "warning: constant ::Fixnum is deprecated"
and "warning: constant ::Bignum is deprecated" due to integer
unification in ruby 2.4.0.
2016-12-14 Koichi ITO <[email protected]>
* ext/oci8/ocinumber.c: Fix invalid value for BigDecimal in
Ruby 2.4.0+
2016-09-25 Kubo Takehiro <[email protected]>
* ext/oci8/metadata.c, ext/oci8/oci8.c: Fix load error when
GC.stress = true.
2016-09-11 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.h: Suppress 'warning: "ALWAYS_INLINE" redefined' when
compiled for ruby 2.4.0-preview2.
2016-05-28 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md: Update installation document about OS X again.
2016-05-28 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md: Update installation document about OS X.
2016-04-24 Kubo Takehiro <[email protected]>
* mkpkg-win32.rb: Added to compile mingw32 packages.
* dist-files: Updated to include docs/report-installation-issue.md.
2016-04-24 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.2.1 and 2.2.2.
* lib/oci8/version.rb: update to 2.2.2.
2016-04-24 Kubo Takehiro <[email protected]>
* docs/report-installation-issue.md: Use RbConfig::CONFIG instead of
deprecated Config::CONFIG.
2016-04-24 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: Add OCI8::in_cond and OCI8:InCondBindHelper.
* test/test_all.rb, test/test_bind_array.rb: Add test of OCI8::in_cond.
* README.md, docs/bind-array-to-in_cond.md: Add document of OCI8::in_cond.
2016-04-10 Kubo Takehiro <[email protected]>
* lib/oci8/connection_pool.rb: update document.
2016-03-27 Kubo Takehiro <[email protected]>
* lib/oci8/object.rb: Suppress warning: instance variable
@name_to_tdo not initialized.
2016-03-27 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.yml, ext/oci8/metadata.c, ext/oci8/object.c,
ext/oci8/oci8.h, lib/oci8/object.rb, test/setup_test_object.sql,
test/test_object.rb: Check object type from each object instance
when an Oracle object is got from a bind parameter.
(github issue #119)
2016-03-27 Kubo Takehiro <[email protected]>
* lib/ruby-oci8.rb: Added for 'Bundler.require'.
(github issue #114)
* dist-files: Add lib/ruby-oci8.rb.
2016-03-27 Kubo Takehiro <[email protected]>
* README.md, docs/timeout-parameters.md, lib/oci8/oci8.rb:
Update documents about timeout parameters.
2016-03-18 Kubo Takehiro <[email protected]>
* ext/oci8/oraconf.rb: Fix for mswin64.
2016-03-15 Kubo Takehiro <[email protected]>
* docs/conflicts-local-connections-and-processes.md: Add a document
about conflicts between local connections and child process
handling on Unix.
* README.md: Add a link to a newly added file.
2016-03-13 Kubo Takehiro <[email protected]>
* ruby-oci8.gemspec: Change the license name in gemspec to suppress the
following warning.
WARNING: license value '2-clause BSD-style license' is invalid.
Use a license identifier from http://spdx.org/licenses or 'Nonstandard'
for a nonstandard license.
2016-01-29 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb, lib/oci8/properties.rb: Rename outbound_connect_timeout in
OCI8::properties to connect_timeout.
* docs/timeout-parameters.md: Revise document.
2015-12-20 Kubo Takehiro <[email protected]>
* lib/oci8/cursor.rb: Use OCI_ATTR_UB8_ROW_COUNT to get the number of processed rows
if Oracle client version is 12c or upper.
2015-12-20 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb, lib/oci8/properties.rb, test/test_connstr.rb:
Support tcp_connect_timeout, connect_timeout, send_timeout and
recv_timeout in OCI8::properties.
* .yardopts, dist-files, docs/timeout-parameters.md: Add document
about timeout parameters.
2015-12-19 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb, lib/oci8/ocihandle.rb: Support SYSBACKUP, SYSDG
and SYSKM privileges.
(github issue #110)
2015-12-19 Kubo Takehiro <[email protected]>
* ext/oci8/plthook_win32.c: Fix bug introduced by the previous commit
for mingw32 64-bit compiler.
(github issue #113)
2015-12-18 Kubo Takehiro <[email protected]>
* ext/oci8/plthook_win32.c, ext/oci8/extconf.rb: Import the latest
plthook_win32.c for cygwin. Ruby-oci8 had not been compiled on
cygwin since 2.1.8.
(github issue #113)
2015-12-18 Kubo Takehiro <[email protected]>
* ext/oci8/oraconf.rb: Fix a linkage error on cygwin and mingw32
when installing without `--with-runtime-check`.
This bug was introduced in ruby-oci8 2.2.1.
(github issue #113)
2015-11-28 Kubo Takehiro <[email protected]>
* ext/oci8/oraconf.rb: Check the default value of DYLD_FALLBACK_LIBRARY_PATH
after checking OCI_DIR. (OS X only)
2015-11-01 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.2.0.2 and 2.2.1.
* lib/oci8/version.rb: update to 2.2.1.
2015-11-01 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb, ext/oci8/oci8.h: Delete unnecessary checks.
* ext/oci8/oraconf.rb: Reduce time to build an import library on
Mingw32 and Cygwin.
2015-11-01 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: delete code for Oracle 8i.
2015-10-26 Kubo Takehiro <[email protected]>
* ext/oci8/oci8lib.c: Fix handle leaks when OCI8#ping is used and
the Oracle client version is 10gR1.
This bug was introduced in ruby-oci8 2.2.0.
2015-10-26 Kubo Takehiro <[email protected]>
* ext/oci8/oci8lib.c: Revive code dropped in ruby-oci8 2.2.0.
This prevents potential SEGV on ruby process termination.
2015-10-26 Kubo Takehiro <[email protected]>
* ext/oci8/ocinumber.c: Drop code for ruby 1.8.
Rational has been a built-in type since ruby 1.9.
2015-10-20 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, lib/oci8/bindtype.rb, test/test_all.rb,
test/test_bind_boolean.rb: Support boolean type binding.
2015-10-19 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.yml: Delete unused OCI function definitions.
2015-10-19 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb: Use macros OCI_MAJOR_VERSION and OCI_MINOR_VERSION
in oci.h to check the target Oracle client version.
2015-10-12 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.2.0.1 and 2.2.0.2.
2015-10-12 Kubo Takehiro <[email protected]>
* lib/oci8/version.rb: Update the version to 2.2.0.2 to
release binary gems for mingw32.
2015-10-11 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.2.0 and 2.2.0.1.
* docs/install-on-osx.md: Fix indent width.
* lib/oci8/version.rb: update to 2.2.0.1.
2015-10-11 Kubo Takehiro <[email protected]>
* docs/osx-install-dev-tools.png: added.
* docs/install-on-osx.md: fix "Install C compiler."
* README.md: Use documents in rubydoc.info as homepage.
2015-10-10 Kubo Takehiro <[email protected]>
* ruby-oci8.gemspec: Change the required_ruby_version from '>= 1.8.0'
to '>= 1.9.1'.
(github issue #96)
2015-10-06 Kubo Takehiro <[email protected]>
* README.md: Add notice that ruby 1.8 is not supported.
* README.md, ext/oci8/oraconf.rb: Change links to ruby-oci8 documents.
They had referred docs generated from the latest gem. They were
updated only when a new version was released. Now they refers
to docs generated from the latest github repository. They are
updated for each commits.
2015-10-05 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md: Merge GH-97: Fix small typo in NEWS file.
2015-10-04 Kubo Takehiro <[email protected]>
* NEWS: Add changes between 2.1.8 and 2.2.0.
2015-10-04 Kubo Takehiro <[email protected]>
* ext/oci8/oci8lib.c: Fix compilation errors when --with-runtime-check
is passed to extconf.rb.
2015-10-04 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.yml, ext/oci8/stmt.c: Use OCIStmtPrepare2 as
a local function, which doesn't require a server round-trip.
Local functions are executed without releasing the GVL.
2015-10-04 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md: Add notice that OCI_DIR is necessary
when Homebrew is installed outside /usr/local.
* README.md: Add a link to install-on-osx.md.
2015-10-03 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md: Merge GH-95: Add OCI_DIR export to
Homebrew Installation Steps
2015-09-29 Kubo Takehiro <[email protected]>
* docs/install-on-osx.md, .yardopts: Add a new file for
installation on OS X.
* docs/install-instant-client.md: Delete installation steps
on OS X.
2015-09-26 Kubo Takehiro <[email protected]>
* lib/oci8/check_load_error.rb: Refactoring.
2015-09-26 Kubo Takehiro <[email protected]>
* ext/dist-files, ext/oci8/extconf.rb, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/osx.c: Revert the previous commit.
2015-09-19 Kubo Takehiro <[email protected]>
* ext/dist-files, ext/oci8/extconf.rb, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/osx.c: Intercept dlopen issued
by libclntsh.dylib to make OCIEnvCreate() work without
setting rpath to ruby itself.
** This commit was reverted. **
2015-09-19 Kubo Takehiro <[email protected]>
* ext/oci8/oraconf.rb: Use OCI_DIR environmant variable also
to check instant client directory on OS X.
(github issue #89)
2015-09-19 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.h: Define STRINGIZE macro for rubinius.
2015-09-19 Kubo Takehiro <[email protected]>
* README.md: Update supported Oracle version.
* dist-files: Add lib/oci8/check_load_error.rb.
* ext/oci8/extconf.rb: Reduce the number of #define values.
2015-09-17 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: Change the driver name displayed in
V$SESSION_CONNECT_INFO.CLIENT_DRIVER from "rubyoci8 : VERSION" to
"ruby-oci8 : VERSION".
* test/test_oci8.rb: Fix a test checking the driver name.
(github issue #93)
2015-09-13 Kubo Takehiro <[email protected]>
* NEWS, docs/report-installation-issue.md, ext/oci8/oraconf.rb,
lib/oci8/properties.rb, ruby-oci8.gemspec: Fix links to rubyforge.
2015-09-13 Kubo Takehiro <[email protected]>
* ruby-oci8.gemspec: Use Kernel.load instead of load not to use Gem::Specification.load.
2015-09-13 Kubo Takehiro <[email protected]>
* .gitignore: Ignore ext/oci8/*.bundle.
2015-09-12 Kubo Takehiro <[email protected]>
* ext/oci8/lob.c: Add notice that OCI8::LOB is an I/O object and is closed
when a associating connection is closed.
2015-09-12 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: Add ruby-oci8 version to
V$SESSION_CONNECT_INFO.CLIENT_DRIVER for Oracle 12.1.0.2 or later.
(suggested by Christopher Jones)
2015-08-24 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.yml, ext/oci8/lob.c: Support LOB whose size is
over 4G.
2015-08-23 Kubo Takehiro <[email protected]>
* dist-files: Add ext/oci8/util.c.
2015-07-12 Kubo Takehiro <[email protected]>
* docs/install-instant-client.md: Add instant client installation
instructions on OS X using homebrew.
2015-07-12 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.rb: Check DYLD_FALLBACK_LIBRARY_PATH also on
installation. (OS X only)
2015-07-11 Kubo Takehiro <[email protected]>
* ext/oci8/error.c, ext/oci8/extconf.rb, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/util.c, ext/oci8/win32.c,
lib/oci8/encoding-init.rb: Delete OCI8::Win32Util.dll_path
and add OCI8::Util.dll_path, which works on Linux, Solaris,
OS X and HP-UX in addition to Windows.
2015-06-26 Kubo Takehiro <[email protected]>
* lib/oci8.rb, lib/oci8/check_load_error.rb: Check the message of
LoadError and raise more user-friendly message.
2015-06-23 Kubo Takehiro <[email protected]>
* ruby-oci8.gemspec: Load oci8/version.rb temporarily and delete OCI8.
Some 'bundler' tasks load 'ruby-oci8.gemspec' before 'require "oci8"'
and fail with 'TypeError: superclass mismatch for class OCI8.'
(github issue #80)
2015-06-21 Kubo Takehiro <[email protected]>
* ruby-oci8.gemspec: Use ruby-oci8 version in lib/oci8/version.rb
instead of VERSION file to generate gem.
(github issue #79)
2015-06-21 Kubo Takehiro <[email protected]>
* Makefile, dist-files, ext/oci8/extconf.rb, ext/oci8/oci8.c: Use
ruby-oci8 version in lib/oci8/version.rb instead of VERSION file.
* VERSION: Deleted
* lib/oci8/version.rb: Added
* lib/oci8.rb, lib/oci8.rb.in: Renamed lib/oci8.rb to lib/oci8.rb.in.
2015-06-21 Kubo Takehiro <[email protected]>
* lib/oci8/encoding-init.rb: Get Oracle client charset name from
the environment handle instead of NLS_LANG.
2015-06-20 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.h: Fix a compilation error.
2015-06-20 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: Change the default prefetch rows size 100.
2015-06-20 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb: Delete an object file created by extconf.rb
before compilation.
(github issue #75)
2015-06-20 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.yml, ext/oci8/stmt.c:
Delete unreachable code which was created when Oracle 9i support was dropped.
2015-05-24 Kubo Takehiro <[email protected]>
* ext/oci8/encoding.c: Add OCI8.charset_name2id and OCI8.charset_id2name.
Mark OCI8#charset_name2id and OCI8#charset_id2name as deprecated.
2015-05-23 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/encoding.c, ext/oci8/error.c, ext/oci8/oci8.c,
ext/oci8/oci8lib.c, ext/oci8/ocidatetime.c, ext/oci8/stmt.c,
lib/oci8/metadata.rb, lib/oci8/properties.rb:
Drop Oracle 9i support.
2015-05-22 Kubo Takehiro <[email protected]>
* ext/oci8/apiwrap.c.tmpl, ext/oci8/encoding.c, ext/oci8/env.c,
ext/oci8/extconf.rb, ext/oci8/lob.c, ext/oci8/oci8.c, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/ocinumber.c, ext/oci8/thread_util.c,
ext/oci8/thread_util.h, lib/oci8/bindtype.rb, lib/oci8/encoding-init.rb,
lib/oci8/oci8.rb: Drop ruby 1.8 support.
2015-04-04 Kubo Takehiro <[email protected]>
* NEWS: add changes between 2.1.7 and 2.1.8.
* VERSION: update to 2.1.8.
* dist-files: add new files.
2015-04-04 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb, ext/oci8/oci8.h: Add a macro for old rubies which
don't have rb_str_set_len().
* ext/oci8/hook_funcs.c: Suppress a warning.
2015-04-04 Kubo Takehiro <[email protected]>
* ext/oci8/lob.c: Increase the buffer size to read a LOB.
2015-04-04 Kubo Takehiro <[email protected]>
* docs/install-instant-client.md, ext/oci8/lob.c, ext/oci8/metadata.c,
ext/oci8/oci8.c: Update documents for YARD.
2015-04-02 Kubo Takehiro <[email protected]>
* ext/oci8/lob.c: Fix SEGV when a temporary LOB is freed by GC
while reading another lob and the ruby version is 2.0.0 or
upper.
2015-03-01 Kubo Takehiro <[email protected]>
* lib/oci8/cursor.rb, lib/oci8/properties.rb:
Fix errors while generating documents by yard such as
"Exception occurred while generating 'OCI8/Cursor.html'."
2015-03-01 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.c, ext/oci8/oci8.h: Rollback transactions on
logoff only when the transactions are in progress.
2015-01-27 Kubo Takehiro <[email protected]>
* ext/oci8/ocihandle.c, ext/oci8/ocinumber.c, ext/oci8/oradate.c,
ext/oci8/stmt.c: Suppreess warnings: "[warn]: @param tag has unknown parameter name: xxx"
by yard.
2015-01-20 Kubo Takehiro <[email protected]>
* lib/oci8/oci8.rb: Add OCI8#send_timeout, OCI8#send_timeout=,
OCI8#recv_timeout and OCI8#recv_timeout=.
2015-01-20 Kubo Takehiro <[email protected]>
* ext/oci8/hook_funcs.c, ext/oci8/oci8.c, ext/oci8/oci8.h:
Fix for cancel_read_at_exit on Windows.
2015-01-20 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.c, ext/oci8/oci8lib.c, lib/oci8/properties.rb:
Add OCI8.properties[:cancel_read_at_exit].
2015-01-20 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb, ext/oci8/hook_funcs.c, ext/oci8/oci8.c,
ext/oci8/oci8.h, ext/oci8/oci8lib.c, ext/oci8/plthook.h,
ext/oci8/plthook_elf.c, ext/oci8/plthook_osx.c,
ext/oci8/plthook_win32.c: Cancel read system calls at exit
not to block ruby process termination.
This works on Linux, OSX and Windows Vista or upper.
(github issue #56)
2015-01-12 Kubo Takehiro <[email protected]>
* README.md: Fix a broken link.
(github issue #67 reported by Zloy)
2014-12-30 Kubo Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/oci8lib.c: Revise type checking of LOB.
2014-12-30 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/connection_pool.c, ext/oci8/lob.c,
ext/oci8/metadata.c, ext/oci8/object.c, ext/oci8/oci8.c, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/ocihandle.c, ext/oci8/stmt.c:
Add oci8_check_typeddata() and use it instead of oci8_get_handle()
and oci8_get_bind().
2014-12-30 Kubo Takehiro <[email protected]>
* ext/oci8/oradate.c: Add check_oradate() to check datatype.
2014-12-30 Kubo Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/metadata.c, ext/oci8/object.c, ext/oci8/stmt.c:
Add more write barriers.
2014-12-29 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/connection_pool.c, ext/oci8/lob.c,
ext/oci8/metadata.c, ext/oci8/object.c, ext/oci8/oci8.c, ext/oci8/oci8.h
ext/oci8/oci8lib.c, ext/oci8/ocidatetime.c, ext/oci8/ocihandle.c,
ext/oci8/ocinumber.c, ext/oci8/oradate.c, ext/oci8/stmt.c:
Use rb_data_type_t as the base type of oci8_handle_data_type_t.
2014-12-29 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/connection_pool.c, ext/oci8/lob.c,
ext/oci8/metadata.c, ext/oci8/object.c, ext/oci8/oci8.c, ext/oci8/oci8.h
ext/oci8/oci8lib.c, ext/oci8/ocidatetime.c, ext/oci8/ocihandle.c,
ext/oci8/ocinumber.c, ext/oci8/oradate.c, ext/oci8/stmt.c:
Rename vtable and vptr to data_type.
2014-12-29 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/connection_pool.c, ext/oci8/lob.c,
ext/oci8/metadata.c, ext/oci8/object.c, ext/oci8/oci8.c, ext/oci8/oci8.h
ext/oci8/oci8lib.c, ext/oci8/ocidatetime.c, ext/oci8/ocihandle.c,
ext/oci8/ocinumber.c, ext/oci8/oradate.c, ext/oci8/stmt.c:
Add oci8_allocate_typeddata() and use it to allocate OCI objects.
2014-12-23 Kubo Takehiro <[email protected]>
* ext/oci8/connection_pool.c, ext/oci8/metadata.c, ext/oci8/object.c,
ext/oci8/oci8.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c, ext/oci8/ocihandle.c
ext/oci8/ocinumber.c, ext/oci8/oradate.c, ext/oci8/stmt.c:
Add write barriers to use generational GC.
2014-12-23 Kubo Takehiro <[email protected]>
* ext/oci8/oci8.h, ext/oci8/oci8lib.c, ext/oci8/ocihandle.c,
ext/oci8/ocinumber.c, ext/oci8/oradate.c:
Use TypedData on ruby 1.9.3 and later.
2014-12-22 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb, ext/oci8/stmt.c: Don't use SYM2ID on ruby 2.2.0
or later. Symbols passed to SYM2ID are not GC'ed.
2014-12-21 Kubo Takehiro <[email protected]>
* ext/oci8/bind.c, ext/oci8/object.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c,
ext/oci8/ocidatetime.c, ext/oci8/ocihandle.c, ext/oci8/ocinumber.c:
Use RARRAY_AREF and RARRAY_CONST_PTR for Generational GC.
2014-12-06 Kubo Takehiro <[email protected]>
* ext/oci8/connection_pool.c, ext/oci8/lob.c, ext/oci8/oci8.c,
ext/oci8/stmt.c: Fix "RuntimeError:executing in another thread"
when a closed connection is used. This bug was introduced by
the previous commit.
(github issue #64 reported by Yasuo Honda)
2014-11-16 Kubo Takehiro <[email protected]>
* ext/oci8/attr.c, ext/oci8/bind.c, ext/oci8/connection_pool.c,
ext/oci8/lob.c, ext/oci8/metadata.c, ext/oci8/object.c,
ext/oci8/oci8.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c,
ext/oci8/ocihandle.c, ext/oci8/stmt.c:
Raises an exception when a closed OCI8 object is used.
Using a closed cursor causes various problems such as segmentation
fault, nil comparison error and so on.
(github issue #61 and #62 reported by Mike Bourgeous)
2014-02-02 Kubo Takehiro <[email protected]>
* NEWS: add changes between 2.1.7 and 2.1.6.
* VERSION: change the version to 2.1.7.
2014-01-25 Kubo Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: Follow ABI versioning after ruby 2.1.0.
2014-01-19 Kubo Takehiro <[email protected]>
* docs/install-full-client.md, docs/install-instant-client.md: Change down
load URL and filenames in examples.
2014-01-06 Kubo Takehiro <[email protected]>
* README.md, docs/install-full-client.md, docs/install-instant-client.md,
docs/report-installation-issue.md, ext/oci8/oraconf.rb, ruby-oci8.gemspec:
Move the project page and download URL to github.
2014-01-05 KUBO Takehiro <[email protected]>
* ext/oci8/metadata.c, ext/oci8/oci8.h, lib/oci8/metadata.rb:
Fix OCI8#describe_table to follow synonyms in a remote database.
Add OCI8::Metadata::Base#obj_link.
2013-12-29 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.6 and 2.1.5.
* VERSION: change the version to 2.1.6.
2013-12-28 KUBO Takehiro <[email protected]>
* ext/oci8/oraconf.rb: fix for Windows x64. OCI.lib for MSVC doesn't
work with mingw64 compilers. fix URL in the error message.
2013-12-14 KUBO Takehiro <[email protected]>
* lib/oci8/metadata.rb, test/test_metadata.rb: fix
OCI8::Metadata::Synonym#schema_name and #translated_name
for synonyms with a database link and without schema_name.
2013-12-14 KUBO Takehiro <[email protected]>
* test/*.rb: suppress warnings "MiniTest::Unit::TestCase is now Minitest::Test"
when minitest gem is installed.
2013-12-14 KUBO Takehiro <[email protected]>
* test/test_metadata.rb: fix tests in an environment where
the data size of "CAST('1' AS CHAR(1 char))" is wrong.
2013-11-18 KUBO Takehiro <[email protected]>
* ext/oci8/oraconf.rb: support cygwin x86_64.
2013-11-10 KUBO Takehiro <[email protected]>
* ext/oci8/error.c, ext/oci8/lob.c, ext/oci8/object.c, ext/oci8/oci8.h,
ext/oci8/oci8lib.c, ext/oci8/ocihandle.c, ext/oci8/stmt.c:
use rb_class_new_instance() instead of rb_funcall() with rb_intern("new").
2013-11-09 KUBO Takehiro <[email protected]>
* ext/oci8/error.c, ext/oci8/extconf.rb, ext/oci8/oci8.h:
append the full path of the Oracle client library when OCIEnvCreate
is failed such as "OCI Library Initialization Error - /path/to/libclntsh.so.12.1".
2013-11-09 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: support rubinius 2.x whose
RUBY_VERSION is 2.1.0.
* ext/oci8/oraconf.rb: reduce the size of libOCI.a created for cygwin.
2013-11-09 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: support ruby 2.1.0-preview1.
(requested by Yasuo Honda)
2013-08-24 KUBO Takehiro <[email protected]>
* ext/oci8/oraconf.rb: Use Dir.glob to find the Oracle instant client
NLS data file. Its name depends on the Oracle major version on
Windows.
2013-08-03 KUBO Takehiro <[email protected]>
* lib/oci8/metadata.rb: fix undefined method 'char_used?' when
OCI8::Metadata::Argument#inspect is called.
* test/test_metadata.rb: refactor and add tests for #inspect methods.
* test/test_package_type.rb: add some test data.
2013-07-30 KUBO Takehiro <[email protected]>
* ext/oci8/metadata.c, ext/oci8/ocihandle.c, test/test_metadata.rb:
Fix segmentation fault when metadata are accessed after the
session is disconnected.
2013-07-24 KUBO Takehiro <[email protected]>
* lib/oci8/metadata.rb, test/test_package_type.rb:
Add OCI8::Metadata::Type#package_name and
OCI8::Metadata::ArgBase#has_default?.
2013-07-22 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c, lib/oci8.rb.in, lib/oci8/metadata.rb: Add
OCI8::Metadata::Package:types to support package type
description. It is a new feature of Oracle 12c.
* test/setup_test_package.sql, test/test_all.rb,
test/test_package_type.rb: Add tests for package type description.
2013-07-15 KUBO Takehiro <[email protected]>
* test/*.rb: Use MiniTest instead of Test::Unit.
2013-06-23 KUBO Takehiro <[email protected]>
* lib/oci8/cursor.rb, lib/oci8/object.rb: fix to bind object types by
name as OCI8::Cursor#bind_param(pos, val, :named_type, typename).
* test/test_object.rb: fix to test OCI8::Cursor#bind_param(pos, val,
:named_type, typename).
2013-06-23 KUBO Takehiro <[email protected]>
* lib/oci8/metadata.rb: OCI8#describe_synonym and OCI8#describe_any
accept 'PUBLIC.XXX' as a public synonym name.
* test/test_metadata.rb: add tests for OCI8#describe_synonym.
2013-06-11 KUBO Takehiro <[email protected]>
* ruby-oci8.gemspec: fix ruby version checking in binary gem.
Gem::ruby_version of ruby 2.0.0p195 is 2.0.0.195, which
doesn't match '= 2.0.0'.
(github issue #36 reported by sodonnel)
2013-03-30 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c: fix potential SEGV when one connection
is used by more than two threads and temporary lobs are
freed by GC.
2013-03-16 KUBO Takehiro <[email protected]>
* ext/oci8/apiwrap.yml, ext/oci8/stmt.c: call OCIStmtPrepare2()
without GVL to prevent OCI8#parse from blocking ruby itself
while the connection is used by another thread even though
non-blocking mode is set.
2013-03-09 KUBO Takehiro <[email protected]>
* ruby-oci8.gemspec: revert the previous commit because old
rubygems doesn't support:
required_ruby_version = ['>= 1.8.0', '<= 2.0.0']
2013-03-09 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.5 and 2.1.4
* VERSION: change the version to 2.1.5.
* docs/platform-specific-issues.md: remove obsolete description.
* ext/oci8/extconf.rb, ext/oci8/oraconf.rb: fix to compile for
Windows x64 client.
* ruby-oci8.gemspec: change required_ruby_version range
when a binary gem includes more than one compiled object.
* test/test_connection_pool.rb: fix to pass tests on slow
machines.
2013-03-05 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c, lib/oci8/oci8.rb, lib/oci8/oracle_version.rb:
refactoring.
2013-03-03 KUBO Takehiro <[email protected]>
* lib/oci8/oci8.rb, test/test_oci8.rb: set 'rubyoci8' as
the driver name, which is displayed in
V$SESSION_CONNECT_INFO.CLIENT_DRIVER.
(require Oracle 11g or upper)
2013-03-03 KUBO Takehiro <[email protected]>
* lib/oci8.rb.in: use RbConfig::CONFIG instead of obsolete
constant Config::CONFIG.
* lib/oci8/object.rb, test/test_bind_time.rb, test/test_metadata.rb
test/test_object.rb, test/test_oci8.rb:
suppress warning: assigned but unused variable
2013-03-03 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/oci8.c, ext/oci8/oci8.h:
refactor oci8_lob_t.
2013-03-03 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c: fix segmentation fault when the process
exits on rubinius.
2013-03-02 KUBO Takehiro <[email protected]>
* .yardopts, ext/oci8/object.c, lib/oci8/metadata.rb,
lib/oci8/oracle_version.rb: update comments for rdoc/yard.
2013-03-02 KUBO Takehiro <[email protected]>
* ext/oci8/ocihandle.c: change arguments of internal methods
OCIHandle#attr_get_*() to ignore "ORA-24328: illegal
attribute value".
* lib/oci8/metadata.rb: change OCI8::Metadata::Base#obj_id,
#obj_name and #obj_schema not to raise "ORA-24328:
illegal attribute value".
2013-03-02 KUBO Takehiro <[email protected]>
* ruby-oci8.gemspec: fix for ruby 2.0.0 to make binary gems.
2013-03-02 KUBO Takehiro <[email protected]>
* ext/oci8/oraconf.rb: fix for compilation on Windows x64 by mingw64.
2013-01-12 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c: export a main function for Solaris x86 (32-bit).
When a main function is invisible from Oracle instant client
11.2.0.3 for Solaris x86 (32-bit), OCIEnvCreate() fails by
unknown reasons.
* docs/platform-specific-issues.md: change the workaround for
Solaris x86 (32-bit) instant client.
2013-01-06 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.4 and 2.1.3
* VERSION: change the version to 2.1.4.
* docs/platform-specific-issues.md: update solaris-specific document.
* ext/oci8/connection_pool.c, ext/oci8/encoding.c, ext/oci8/metadata.c,
ext/oci8/oci8.c,lib/oci8.rb.in, lib/oci8/metadata.rb, lib/oci8/oci8.rb,
lib/oci8/oracle_version.rb, lib/oci8/properties.rb: update comments for yard.
* test/test_clob.rb: change a lob size when ORA-24817 is raised to
pass tests on Windows.
2013-01-03 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c, lib/oci8/properties.rb: add OCI8.properties[:events_mode]
to support Fast Application Notification (FAN).
2013-01-03 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: add languange mode to the extension
library name when ths ruby engine is rubinius and explicitly claim that
jruby is not supported when it is jruby.
2013-01-03 KUBO Takehiro <[email protected]>
* ext/oci8/encoding.c, lib/oci8/encoding-init.rb: delete an internal method
OCI8.nls_ratio= when the ruby is 1.9 or greater. nls_ratio is set by
OCI8.encoding=.
2012-12-23 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c, test/test_clob.rb:
fix SEGV when a temporary LOB is freed when OCILobRead returns OCI_NEED_DATA.
(github issue #20 reported by Edgars Beigarts)
2012-12-18 KUBO Takehiro <[email protected]>
* ext/oci8/error.c, lib/oci8/oci8.rb: change the OCIError constructor to
accept an Oracle error code as the first parameter and create a message
which depends on NLS_LANG.
* lib/oci8/metadata.rb: fix OCI8.describe_table not to follow synonyms
until stack overflow. Now the recursive level is limited to 20.
(github issue #26 reported by Brian Henderson)
2012-12-16 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: use RUBY_VERSION instead of
RbConfig::CONFIG['ruby_version'] to know the ruby ABI version.
The latter may be changed by the configure option --with-ruby-version.
(github issue #24 reported by suhrawardi)
2012-12-03 KUBO Takehiro <[email protected]>
* ext/oci8/oraconf.rb: add a script encoding magic comment for ruby 2.0.0 preview2.
(github issue #25 reported by aboltart)
2012-12-02 KUBO Takehiro <[email protected]>
* test/test_encoding.rb: fix to pass tests with ruby 2.0.0 preview2.
2012-11-11 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c: use OCILobLocatorAssign_nb (non-blocking version)
instead of OCILobLocatorAssign (blocking version).
2012-11-11 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.3 and 2.1.2
* VERSION: change the version to 2.1.3.
* dist-files: append new files.
* ruby-oci8.gemspec: declare license in the gem.
2012-11-11 KUBO Takehiro <[email protected]>
* Makefile: add doc and copy-doc targets to generate document by yard command.
* ext/oci8/oci8.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c: change
protoptype definition of Init_oci8 for yard command to parse it.
* ext/oci8/encoding.c, ext/oci8/oci8.c, ext/oci8/ocinumber.c,
lib/oci8.rb.in, lib/oci8/connection_pool.rb, lib/oci8/datetime.rb,
lib/oci8/encoding-init.rb, lib/oci8/metadata.rb, lib/oci8/object.rb,
lib/oci8/oci8.rb: change comments for yard command.
2012-11-11 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.h: update RB_GC_GUARD as ruby 1.9.2 defines.
* test/test_break.rb: fix tests for rubinius 1.2.4 and 2.0.0.
2012-11-10 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c: fix compilation errors when ruby version is 1.8.x.
* ext/oci8/ocinumber.c: Don't use rb_Rational() when rbx-2.0.testing
runs with ruby 1.8 mode.
* lib/oci8/datetime.rb: fix #<NoMethodError: undefined method `timezone' for Time:Class>
when ruby is less than 1.9.2 and an object type's time attribute
is accessed.
* test/config.rb, test/test_oci8.rb: for ruby 1.8.x.
2012-10-28 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb: Use rb_thread_call_without_gvl only when
ruby/thread.h exists. rb_thread_call_without_gvl is an internal
function in ruby 1.9.2 and 1.9.3.
* ext/oci8/oci8lib.c: fix compilation errors when ruby <= 1.9.1.
* setup.rb: fix uninitialized constant Config (NameError) on ruby 1.8.7.
2012-10-28 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/oci8.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c:
Fix SEGV when a temporary LOB is GCed while another LOB is read.
(github issue #20 reported by techsplicer)
2012-10-02 KUBO Takehiro <[email protected]>
* ext/oci8/apiwrap.c.tmpl, ext/oci8/connection_pool.c, ext/oci8/env.c,
ext/oci8/extconf.rb, ext/oci8/oci8.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c,
ext/oci8/thread_util.c, ext/oci8/thread_util.h:
replace rb_thread_blocking_region(), which is deprecated in ruby 2.0.0,
with rb_thread_call_without_gvl() and rename oci8_blocking_region()
to oci8_call_without_gvl().
* lib/oci8.rb.in: Ruby 2.0.0-dev's API version is changed to 2.0.0.
* setup.rb: use RbConfig instead of Config for ruby 2.0.0-dev.
2012-08-12 KUBO Takehiro <[email protected]>
* ext/oci8/stmt.c, lib/oci8/cursor.rb: revise yard comment.
2012-08-11 KUBO Takehiro <[email protected]>
* ext/oci8/stmt.c, lib/oci8/cursor.rb: refactor OCI8::Cursor to simplify
C code.
* ext/oci8/bind.c: add a private function OCI8::BindType::Base#get_data
and #set_data.
* ext/oci8/attr.c, ext/oci8/oci8.h, ext/oci8/oci8lib.c: delete
unused functions and a unused variable.
2012-08-11 KUBO Takehiro <[email protected]>
* lib/oci8.rb.in, lib/oci8/cursor.rb, lib/oci8/oci8.rb:
move OCI8::Cursor from lib/oci8/oci8.rb to lib/oci8/cursor.rb.
2012-08-05 KUBO Takehiro <[email protected]>
* lib/oci8/object.rb: Change the ruby type which corresponds to
Oracle object type's DATE field from DateTime to Time.
* test/setup_test_object.sql, test/test_object.rb:
Fix github issue #17 reported by Yasuo Honda.
2012-07-31 KUBO Takehiro <[email protected]>
* test/config.rb, test/test_datetime.rb: refactor test code by adding
global functions convert_to_time() and convert_to_datetime(),
which will be used by test_object.rb later.
2012-07-28 KUBO Takehiro <[email protected]>
* test/test_metadata.rb: fix a sequence test failure on Oracle 11gR2.
Fix github issue #18 reported by Yasuo Honda.
2012-07-28 KUBO Takehiro <[email protected]>
* lib/oci8/oci8.rb, test/test_oci8.rb: add OCI8::Cursor#statement.
See github issue #12 requested by timon.
2012-05-25 KUBO Takehiro <[email protected]>
* test/test_clob.rb: speed up clob tests 29 times.
2012-05-25 KUBO Takehiro <[email protected]>
* test/setup_test_object.sql, test/test_all.rb, test/test_object.rb:
Add tests of the previous commit.
2012-05-25 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c: Merge pull request #13 from timon/temp_lob at github.
If 's' is a temporary lob, use OCILobLocatorAssign instead.
2012-05-20 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c, test/test_oci8.rb: add OCI8's class variables:
@@environment_handle and @@process_handle.
2012-05-20 KUBO Takehiro <[email protected]>
* ext/oci8/ocihandle.c, lib/oci8/metadata.rb, test/test_metadata.rb:
fix methods of OCI8::Metadata::Sequence and add testcases for them.
2012-05-12 KUBO Takehiro <[email protected]>
* ext/oci8/extconf.rb, lib/oci8.rb.in: refactor code which generates the
C extention name.
2012-05-05 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c, lib/oci8/oci8.rb: delete private methods OCI8#server_handle
and OCI8#session_handle and use @server_handle and @session_handle instead.
2012-04-28 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.2 and 2.1.1
* VERSION: change the version to 2.1.2.
2012-04-28 KUBO Takehiro <[email protected]>
* lib/oci8/oci8.rb, lib/oci8/properties.rb: disable statement caching by default.
This is workaround about a SIGSEGV issue.
See: https://github.com/rsim/oracle-enhanced/issues/162
2012-04-28 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c: delete code which overwrites signal handlers
registered by ruby. This was committed by mistake.
See: http://rubyforge.org/forum/forum.php?thread_id=50690&forum_id=1078
2012-04-24 KUBO Takehiro <[email protected]>
* ext/oci8/metadata.c: fix internal heap error in OCI.
(github issue #12 reported by Yasuo Honda)
2012-04-22 KUBO Takehiro <[email protected]>
* VERSION: update to 2.1.1.
* README.md: add links.
2012-04-22 KUBO Takehiro <[email protected]>
* NEWS: add changes between 2.1.0 and 2.1.1.
* README -> README.md: renamed.
* .yardopts: added for yard.
* docs/install-binary-package.md, docs/report-installation-issue.md:
added.
* docs/platform-specific-issues.md, lib/oci8/bindtype.rb, lib/oci8/connection_pool.rb
lib/oci8/object.rb, lib/oci8/properties.rb: fix documents.
* ruby-oci8.gemspec, dist-files: fix for renamed and added files.
2012-04-21 KUBO Takehiro <[email protected]>
* test/test_datetime.rb: fix to pass tests on ruby 1.9.1 and earlier.
2012-04-21 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.c: fix to raise a RuntimeError when a connection
retrieved from a connection pool is set as non-blocking on
ruby 1.8.
2012-04-21 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c: OCI8::LOB#read() returns an empty string '' when
it is an empty lob.
2012-04-21 KUBO Takehiro <[email protected]>
* custom-rdoc.rb: delete an unused file.
2012-04-21 KUBO Takehiro <[email protected]>
* test/test_oci8.rb: fix code to test OCI8::CLOB.new(conn, '').
2012-04-17 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c: 1. fix an exception when OCI8::CLOB.new(conn, '')
is called. 2. Reset the position of a newly created LOB.
2012-04-17 KUBO Takehiro <[email protected]>
* ext/oci8/oci8lib.c: fix core dump.
See: https://github.com/kubo/ruby-oci8/issues/11
(reported by Raimonds Simanovskis)
2012-04-08 KUBO Takehiro <[email protected]>
* ext/oci8/lob.c, ext/oci8/win32.c, lib/oci8/oracle_version.rb:
revise rdoc comments.
2012-04-06 KUBO Takehiro <[email protected]>
* ext/oci8/error.c, ext/oci8/ocihandle.c, ext/oci8/oradate.c,
lib/oci8/encoding-init.rb, lib/oci8/oci8.rb, lib/oci8/ocihandle.rb:
revise rdoc comments.
2012-04-05 KUBO Takehiro <[email protected]>
* ext/oci8/ocinumber.c, lib/oci8/oci8.rb: revise OraNumber's comments.
2012-04-03 KUBO Takehiro <[email protected]>
* ext/oci8/oci8.h, ext/oci8/ocinumber.c: change OCI8::Math::*'s comments
for yard.
2012-04-02 KUBO Takehiro <[email protected]>
* NEWS: change the text format to markdown.
2012-03-18 KUBO Takehiro <[email protected]>
* test/test_datetime.rb: fix testcase failures in DST.
(reported by Yasuo Honda)
2012-03-11 KUBO Takehiro <[email protected]>
* dist-files, docs/install-full-client.md, docs/install-instant-client.md,
docs/platform-specific-issues.md: add and fix documents.
2012-03-11 KUBO Takehiro <[email protected]>
* ruby-oci8.gemspec: fix warning: string literal in condition.
(pointed by andynu at github)
2012-01-22 KUBO Takehiro <[email protected]>