doc/files/NEWS.html in ruby-breakpoint-0.5.0 vs doc/files/NEWS.html in ruby-breakpoint-0.5.1

- old
+ new

@@ -1,135 +1,169 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> -<head> - <title>File: NEWS</title> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> - <meta http-equiv="Content-Script-Type" content="text/javascript" /> - <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" /> - <script type="text/javascript"> - // <![CDATA[ - - function popupCode( url ) { - window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") - } - - function toggleCode( id ) { - if ( document.getElementById ) - elem = document.getElementById( id ); - else if ( document.all ) - elem = eval( "document.all." + id ); - else - return false; - - elemStyle = elem.style; - - if ( elemStyle.display != "block" ) { - elemStyle.display = "block" - } else { - elemStyle.display = "none" - } - - return true; - } - - // Make codeblocks hidden by default - document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) - - // ]]> - </script> - -</head> -<body> - - - - <div id="fileHeader"> - <h1>NEWS</h1> - <table class="header-table"> - <tr class="top-aligned-row"> - <td><strong>Path:</strong></td> - <td>NEWS - </td> - </tr> - <tr class="top-aligned-row"> - <td><strong>Last Update:</strong></td> - <td>Fri Mar 04 19:34:27 Westeuropäische Normalzeit 2005</td> - </tr> - </table> - </div> - <!-- banner header --> - - <div id="bodyContent"> - - - - <div id="contextContent"> - - <div id="description"> - <h1>NEWS</h1> -<p> -This file sums up important changes that happened between releases. -</p> -<h2>ruby-breakpoint 0.5.0</h2> -<ul> -<li>breakpoint_client has better logic for guessing the client-uri -automatically. This ought to fix connection errors that were happening -because the client service was bound to the wrong network interface. - -</li> -<li>Traced down the origin of SecurityError problems to a bug in Ruby 1.8.1 and -early 1.8.2 releases. If you&#8217;re experiencing this you can usually fix -it by compiling the Ruby 1.8.2 available from ruby-lang.org. See the FAQ on -the homepage for more information on this. - -</li> -<li>Support for drbunix:/ URIs &#8212; this allows communication via files on -Unix based platforms. It is more secure than ACLs + socket communication on -shared hosts. - -</li> -<li>Fixed a bug in <a -href="../classes/Breakpoint.html#M000007">Breakpoint.deactivate_drb</a> -that was happening when calling it from the breakpoint IRB session. - -</li> -<li>Improved documentation in a few minor areas. - -</li> -</ul> - - </div> - - - </div> - - - </div> - - - <!-- if includes --> - - <div id="section"> - - - - - - - - - <!-- if method_list --> - - - </div> - - -<div id="validator-badges"> - <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> -</div> - -</body> +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title>File: NEWS</title> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <meta http-equiv="Content-Script-Type" content="text/javascript" /> + <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" /> + <script type="text/javascript"> + // <![CDATA[ + + function popupCode( url ) { + window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") + } + + function toggleCode( id ) { + if ( document.getElementById ) + elem = document.getElementById( id ); + else if ( document.all ) + elem = eval( "document.all." + id ); + else + return false; + + elemStyle = elem.style; + + if ( elemStyle.display != "block" ) { + elemStyle.display = "block" + } else { + elemStyle.display = "none" + } + + return true; + } + + // Make codeblocks hidden by default + document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) + + // ]]> + </script> + +</head> +<body> + + + + <div id="fileHeader"> + <h1>NEWS</h1> + <table class="header-table"> + <tr class="top-aligned-row"> + <td><strong>Path:</strong></td> + <td>NEWS + </td> + </tr> + <tr class="top-aligned-row"> + <td><strong>Last Update:</strong></td> + <td>Sun Jun 04 18:24:42 CEST 2006</td> + </tr> + </table> + </div> + <!-- banner header --> + + <div id="bodyContent"> + + + + <div id="contextContent"> + + <div id="description"> + <h1>NEWS</h1> +<p> +This file sums up important changes that happened between releases. +</p> +<h2>ruby-breakpoint 0.5.1</h2> +<ul> +<li>Moved functionality of bin/breakpoint_client to lib/breakpoint_client.rb +and changed it so that it will respect previously set Options. (Should make +it easier for other libraries to integrate ruby-breakpoint with custom +options.) + +</li> +<li>Fixed trouble with .irbrc on remote breakpoint server when calling +DRb.activate_drb (see <a +href="http://dev.rubyonrails.com/ticket/803">dev.rubyonrails.com/ticket/803</a>) + +</li> +<li>Fixed client.y not working (Need to undef DRbObject#to_yaml) + +</li> +<li>Fixed client &lt;&lt; 5 and similar not working + +</li> +<li>Fixed client.require not working with some RubyGems versions + +</li> +<li>WorkSpace#evaluate no longer extends strings and numerics with DRbUndumped +(Works around &quot;DRb::DRbObject#to_str should return String&quot; style +bugs) + +</li> +<li>Documented bug in <a +href="../classes/Binding.html#M000003">Binding.of_caller</a>() that causes +<a href="../classes/Breakpoint.html#M000007">Breakpoint.breakpoint</a>() to +have a wrong object context. breakpoint() works correctly. + +</li> +</ul> +<h2>ruby-breakpoint 0.5.0</h2> +<ul> +<li>breakpoint_client has better logic for guessing the client-uri +automatically. This ought to fix connection errors that were happening +because the client service was bound to the wrong network interface. + +</li> +<li>Traced down the origin of SecurityError problems to a bug in Ruby 1.8.1 and +early 1.8.2 releases. If you&#8217;re experiencing this you can usually fix +it by compiling the Ruby 1.8.2 available from ruby-lang.org. See the FAQ on +the homepage for more information on this. + +</li> +<li>Support for drbunix:/ URIs &#8212; this allows communication via files on +Unix based platforms. It is more secure than ACLs + socket communication on +shared hosts. + +</li> +<li>Fixed a bug in <a +href="../classes/Breakpoint.html#M000010">Breakpoint.deactivate_drb</a> +that was happening when calling it from the breakpoint IRB session. + +</li> +<li>Improved documentation in a few minor areas. + +</li> +</ul> + + </div> + + + </div> + + + </div> + + + <!-- if includes --> + + <div id="section"> + + + + + + + + + <!-- if method_list --> + + + </div> + + +<div id="validator-badges"> + <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> +</div> + +</body> </html> \ No newline at end of file