summaryrefslogtreecommitdiff
path: root/NEWS
blob: 2d6e6df552a58bf78d4e03ef6623fd2d3c04c45e (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
# -*- 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
=== License

* Ruby's License is changed from a dual license with GPLv2
  to a dual license with 2-clause BSDL.

=== C API updates

* rb_scan_args() is enhanced with support for option hash argument
  extraction.

=== Library updates (outstanding ones only)

* builtin classes

  * Kernel

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

  * Float
    * new constants:
      * File::NULL
        name of NULL device.

  * String
    * new methods:
      * String#prepend

  * Time
    * extended methods:
      * Time#strftime supports %:z and %::z.

  * IO
    * extended methods:
      * IO#putc supports multibyte characters

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

* webrick
  * new method:
    * WEBrick::HTTPRequest#continue for generating '100 continue' response.

* uri
  * new methods:
    * URI::Generic#hostname
    * URI::Generic#hostname=

* stringio
  * extended methods:
    * StringIO#set_encoding can get 2nd argument and optional hash.

=== Compatibility issues (excluding feature bug fixes)

* Kernel#respond_to?

  See above.