summaryrefslogtreecommitdiff
path: root/NEWS
blob: 9c2fc05c9035959067f4922533597823207db97c (plain)
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
# -*- rd -*-
= NEWS

This document is a list of user visible feature changes made between
releases except for bug fixes.

Note that each entry is kept so brief that no reason behind or
reference information is supplied with.  For a full list of changes
with all sufficient information, see the ChangeLog file.

== Changes since the 1.9.2 release
=== Library updates (outstanding ones only)

* builtin classes

  * Kernel

    * Kernel#respond_to? now returns false for protected methods.

=== Compatibility issues (excluding feature bug fixes)

* Kernel#respond_to?

  See above.

== Changes since the 1.9.1 release
=== Library updates (outstanding ones only)

* builtin classes

  * Array
    * new method:
      * Array#keep_if
      * Array#repeated_combination
      * Array#repeated_permutation
      * Array#rotate
      * Array#rotate!
      * Array#select!
      * Array#sort_by!

    * extended methods:
      * Array#{uniq,uniq!,product} can take a block.

  * Complex
    * new methods:
      * Complex#rationalize

  * Dir
    * new method:
      * Dir.home

  * Encoding
    * new encodings:
      * Big5
      * Big5-UAO
      * ISO-2022-JP-KDDI
      * SJIS-DoCoMo
      * SJIS-KDDI
      * SJIS-SoftBank
      * UTF8-DoCoMo
      * UTF8-KDDI
      * UTF8-SoftBank

    * new method:
      * ascii_compatible?

  * Enumerable
    * New methods:
      * Enumerable#chunk
      * Enumerable#collect_concat
      * Enumerable#each_entry
      * Enumerable#flat_map
      * Enumerable#slice_before

  * Enumerator
    * new methods:
      * Enumerator#peek
      * Enumerator#next_values
      * Enumerator#peek_values
      * Enumerator#feed
      * StopIteration#result

    * extended methods:
      * #with_index accepts an optional argument that specifies the
        index number to start with, defaulted to 0.

    * incompatible changes:
      * #rewind now calls the "rewind" method of the enclosed object
        if defined.
      * #next doesn't clear the position at end.

  * ENV
    * Uses locale's encoding
    * ENV.[]= raises Errno::{EINVAL,ENOMEM} etc. on failure.
    * new methods:
      * ENV.keep_if
      * ENV.select!

  * Float
    * new constants:
      * Float::INFINITY
      * Float::NAN
    * new methods:
      * Float#rationalize

  * File
    * new methods:
      * File.realpath
      * File.realdirpath

  * GC::Profiler
    * new method:
      * GC::Profiler.total_time

  * Hash
    * new methods:
      * Hash#keep_if
      * Hash#select!

  * IO
    * new method:
      * IO#autoclose=
      * IO#autoclose?
      * IO#fdatasync
      * IO#codepoints
      * IO#each_codepoint

    * extended methods:
      * IO.pipe can take a block.

    * new modules:
      * IO::WaitReadable
      * IO::WaitWritable
        They are used to extend non-blocking exceptions.

  * Integer
    * new methods:
      * Integer#rationalize

  * Kernel
    * new method:
      * Kernel#respond_to_missing?
      * Kernel#singleton_class

  * MatchData
    * New method:
      * MatchData#==

  * NilClass
    * new methods:
      * NilClass#rationalize

  * Object
    * extended methods:
      * Float() supports hexadecimal floating point format.
      * printf() supports %a/%A format.

  * Proc
    * extended method:
      * Proc#source_location returns location even if receiver is a method
        defined by attr_reader / attr_writer / attr_accessor.

  * Process
    * extended methods:
      * Process.spawn accepts [:child, FD] for a redirect target.

  * Random (new class to generate pseudo-random numbers)

  * Rational
    * new methods:
      * Rational#rationalize

  * String
    * extended methods:
      * string[regexp, name] is supported for named capture.

  * Thread
    * new methods:
      * Thread#add_trace_func
      * Thread#set_trace_func

  * Time
    * extended feature:
      * time_t restriction is removed to represent before 1901 and after 2038.
        Proleptic Gregorian calendar is used for old dates.
      * Time.new have optional arguments to specify date with time offset.
      * Time#getlocal, Time#localtime have optional time offset argument.

    * new method:
      * Time#to_r
      * Time#subsec
      * Time#round

    * incompatible changes:
      * The year argument of Time.{utc,gm,local,mktime} is now interpreted as
        the value itself.  For example, Time.utc(99) means the year 99 AD,
        not 1999 AD.

  * Kernel
    * new method:
      * Kernel#require_relative

    * extended methods:
      * respond_to? can be used to detect methods not implemented.
        For example, Process.respond_to?(:fork) returns false on Windows.

* digest
  * new methods:
    * Digest::Class.base64digest
    * Digest::Instance#base64digest
    * Digest::Instance#base64digest!

  * Digest::HMAC (digest/hmac) has been marked as deprecated because
    it was unintentional for the experimental library to be included
    in the final release of 1.9.1.  Please use OpenSSL::HMAC instead.

* rss

  * 0.2.4 -> 0.2.7.

  * RSS::Maker.make
    * raise an exception not returns nil for invalid feed making.
    * requires block.

  * RSS::Maker.[]
    * new method to return maker class.

  * RSS::Maker.supported?(version)
    * new method to check whether given version is supported.

  * RSS::Maker: item.guid.permanent_link?
    * new alias of item.guid.isPermaLink
  * RSS::Maker: item.guid.permanent_link=
    * new alias of item.guid.isPermaLink=

* JSON
  * Update to JSON 1.1.9

* REXML

  * REXML::Document.entity_expansion_limit=

    New method to set the entity expansion limit. By default the limit is
    set to 10000.  See the following URL for details.

    http://www.ruby-lang.org/en/news/2008/08/23/dos-vulnerability-in-rexml/

* RDoc

  * Updated to RDoc 2.5.8

* RubyGems

  * Updated to RubyGems 1.3.7

* logger

  * imported upstream version (logger/1.2.7)
    * do not raise an exception even if log writing failed.
    * do not raise ShiftingError if an aged file already exists.
      (no ShiftingError will be raised from 1.2.7, just warn() instead)

* matrix
  * API change to adhere strictly to mathematical definitions:
    * Matrices must now be rectangular.
    * trace, regular?, singular? are defined only for square matrices
    * support for empty matrices
    * all integer matrices now have the right determinant (also an integer)

  * Matrix and Vector include Enumerable.

  * new methods:
    * Matrix.build
    * Matrix.empty
    * Matrix#conj
    * Matrix#conjugate
    * Matrix#each
    * Matrix#each_with_index
    * Matrix#empty?
    * Matrix#imag
    * Matrix#imaginary
    * Matrix#real
    * Matrix#real?
    * Matrix#rect
    * Matrix#rectangular

* net/http
  * merged net/https.

* open3
  * new methods:
    * Open3.popen2
    * Open3.popen2e
    * Open3.capture3
    * Open3.capture2
    * Open3.capture2e
    * Open3.pipeline_rw
    * Open3.pipeline_r
    * Open3.pipeline_w
    * Open3.pipeline_start
    * Open3.pipeline

* pty
  * new methods:
    * PTY.open
    * PTY.check
  * deprecated methods:
    * protect_signal
    * reset_signal

* openssl
  * new methods:
    * OpenSSL::Buffering#read_nonblock
    * OpenSSL::Buffering#write_nonblock
    * OpenSSL::SSL::SSLSocket#connect_nonblock
    * OpenSSL::SSL::SSLSocket#accept_nonblock

* scanf
  * support %a/%A format.


* socket

  * incompatible changes:
    * Socket#{recvfrom,recvfrom_nonblock,accept,accept_nonblock,sysaccept}
      returns a sender address as Addrinfo object instead of a binary sockaddr string.
      Addrinfo#to_s returns the old binary sockaddr string.
    * BasicSocket#getsockopt returns Socket::Option object instead of a binary string.
      Socket::Option#to_s returns the old binary string.
    * Socket.do_not_reverse_lookup is turned on by default now.

  * new class:
    * Addrinfo
    * Socket::Option
    * Socket::AncillaryData

  * new methods:
    * Socket.ip_address_list
    * Socket.tcp
    * Socket.tcp_server_loop
    * Socket.tcp_server_sockets
    * Socket.udp_server_sockets
    * Socket.udp_server_loop_on
    * Socket.udp_server_loop
    * Socket.unix
    * Socket.unix_server_loop
    * Socket.unix_server_socket
    * Socket.accept_loop
    * Socket#ipv6only!
    * BasicSocket#local_address
    * BasicSocket#remote_address
    * BasicSocket#connect_address
    * BasicSocket#sendmsg
    * BasicSocket#sendmsg_nonblock
    * BasicSocket#recvmsg
    * BasicSocket#recvmsg_nonblock
    * BasicSocket#getpeereid

  * extended methods:
    * Socket.new's 3rd argument is optional now.
    * Socket.pair's 3rd argument is optional now.
    * Socket.pair and UNIXSocket.pair can take a block.
    * BasicSocket#send, UDPSocket#send, Socket.getnameinfo, Socket#bind, and
      Socket#{connect,connect_nonblock} accepts an Addrinfo object as sockaddr.
    * BasicSocket#getsockopt accepts a Socket::Option object.
    * Socket.getaddrinfo and IPSocket#{addr,peeraddr} accept an optional
      argument to turn reverse lookup on/off.

    * constant names can be accepted as well as constant values.
      i.e. Socket.new(:PF_INET, :SOCK_STREAM, 0)
      The constant names can be specified without the prefix.
      i.e. Socket.new(:INET, :STREAM, 0)
      * protocol/address family
      * socket type
      * socket option protocol level
      * socket option name
      * shutdown's argument

* stringio
  * new methods:
    * StringIO#read_nonblock
    * StringIO#write_nonblock
* pathname
  * new methods:
    * Pathname#binread
    * Pathname#realdirpath
    * Pathname#each_child

  * extended methods:
    * Pathname#realpath and Pathname#realdirpath takes optional basedir
      argument.

* Readline
  * new methods:
    * Readline.set_screen_size
    * Readline.get_screen_size

  * extended methods:
    * Readline.completion_proc= accepts nil.
      nil means to use default completion proc.

* set
  * new methods:
    * Set#keep_if
    * Set#select!

* time
  * incompatible changes:
    * Time.parse raises ArgumentError when no date information.

* thread
  * extended method:
    * ConditionVariable#wait takes timeout argument.

* securerandom
  * new methods:
    * SecureRandom.urlsafe_base64

* URI
  * new methods:
    * URI.encode_www_form
    * URI.decode_www_form
    * URI.encode_www_form_component
    * URI.decode_www_form_component
  * Obsoleted methods:
    * URI.decode
    * URI.encode
    * URI.escape
    * URI.unescape

* etc
  * new methods:
    * Etc::Passwd.each
    * Etc::Group.each

* zlib
  * new methods:
    * Zlib::GzipFile#path
    * Zlib.#adler32_combine
    * Zlib.#crc32_combine

* rbconfig
  * new methods:
    * RbConfig.ruby

* io/console
  * new methods:
    * IO#noecho {|io| }
    * IO#echo=
    * IO#echo?
    * IO#raw {|io| }
    * IO#raw!
    * IO#getch
    * IO#winsize
    * IO.console

=== Language changes

* Regexp properties (\p{}) names now ignore underscores, spaces, and case, so
  \p{ol chiki} is the same as \p{Ol_Chiki}
* Regexps now support Unicode 5.2 (new characters and scripts)
* \d, \s, and \w are now ASCII only; use POSIX bracket classes and \p{} for
  Unicode semantics
* $: no longer includes the current directory, use require_relative
* Symbol with an invalid encoding is forbidden to exist.

=== Compilation options

* --program-prefix and --program-suffix no longer act on the shared object
  names nor paths to libraries.

  use --with-rubylibprefix='${libruby}/${RUBY_INSTALL_NAME}' and
  --with-soname='${RUBY_INSTALL_NAME}' for the same result as Ruby 1.9.1.

* --with-arch is added for universal binary, instead of
  --enable-fat-binary option.

=== Compatibility issues (excluding feature bug fixes)

  * Enumerator#rewind
  * Socket#recvfrom
  * Socket#recvfrom_nonblock
  * Socket#accept
  * Socket#accept_nonblock
  * Socket#sysaccept
  * BasicSocket#getsockopt
  * Time.utc
  * Time.gm
  * Time.local
  * Time.mktime
  * Time.parse
  * --program-prefix and --program-suffix
  * --enable-fat-binary
  * $:

    See above.

  * Digest::HMAC

    Deprecated.  See above.