Changes:
0.6.1:
======
- fixed crash with empty lang
0.6.0:
======
- 24 new levels + final level
- better mouse support - see How to Play
- menu tooltips
- level help on F1
- hall of fame integration for pedometer
- intro.avi as a separate file
- complete French translation
- complete German translation
- fbcon support
- win32 binary package
Version 0.81 (tagged 22 Nov 2003, revision 279)
Bug Fixes:
* correct mistake in Usage Example, operator for wildcard searching
is ~, not =
* raise proper errors on various methods of Persistable when no
PersistenceManager is available, instead of NoMethodError
Version 0.80 (tagged 19 Nov 2003, revision 275)
Features:
* transaction logging, record information about time, committer and log
message as well as list of objects modified per transaction
* basic versioning support, retrieval of historic object states
* vaporadmin: removal of classes and all their instances using the "remove" command
* vaporadmin: modification of class' metadata using the "update" command
* new operator (~) for wildcard searches on Strings
Bug Fixes:
* allow SQL keywords as names of persistent attributes
* fix bug where camelCase variables would not be correctly set on object loading
* correctly transfer newly persistent objects back to transient state during
rollback(). This bug caused incomprehensible ObjectDeletedErrors when manually
or automatically rolling back.
* check REXML::Version instead of REXML::VERSION_MAJOR, which does not exist
in the REXML version that is included in Ruby 1.8
* minimize number of warnings issued when using `ruby -w', including those
from Ruby 1.8.x, that are issued regardless of -w
Incompatible Repository Changes: (Repository needs to be recreated from scratch)
* repository schema version 3
* add fields and tables for versioning
converters/ruby16-iconv-0.5
databases/ruby-dbm-1.8.1
devel/ruby-curses-1.8.1
devel/ruby16-curses-1.6.8
lang/ruby18-1.8.1
lang/ruby16-1.6.8
security/ruby-openssl-0.1.4a
x11/ruby16-tcltk-1.6.8
x11/ruby16-tk-1.6.8
Note update of these packages:
convertersruby-iconv to 1.8.1
devel/ruby-mode to 1.8.1
lang/ruby to 1.8.1
databases/ruby-gdbm to 1.8.1
devel/ruby-readline to 1.8.1
security/ruby-digest to 1.8.1
security/ruby-openssl to 1.0.0
x11/ruby-tcltk to 1.8.1
x11/ruby-tk to 1.8.1
Also correct entry of p5-Math-FFT-0.25 and pear-Net_SMTP-1.2.6.
Change log:
1.16 - November 9, 2004
launder the require()d custom config filename to make -T happy
[Torsten Fo"rtsch <torsten.foertsch gmx.net>]
added Apache::TestRunPHP and Apache::TestConfigPHP classes,
which provide a framework for server-side testing via PHP
scripts [Geoffrey Young]
fix problem with multiple all.t files where only the final file
was being run through the test harness. [Geoffrey Young]
Documented that redirection does not work with "POST" requests
in Apache::TestRequest unless LWP is installed. [David Wheeler]
Separated the setting of the undocumented $RedirectOK package
variable by users of Apache::TestRequest from when it is set
internally by passing the "requests_redirectable" parameter to
the user_agent() method. This allows users to override the
behavior set by the user_agent() method without replacing it.
[David Wheeler]
1.15 - October 22, 2004
add need_php4() and have_php4() which will return true when
mod_php4 is available. also, tidy up need_php() and have_php()
for PHP4 on Apache 2.0. [Joe Orton]
add new test_config make target, equivalent to t/TEST -conf,
and make it a prerequisite for the cmodules make target. now
you can 'make cmodules' to build the things in c-modules/
without running t/TEST -conf first. [Geoffrey Young]
add -withtestmore import action, which allows Test::More >=
0.49 to replace Test.pm as the engine for server-side tests
[Geoffrey Young]
add automatic core dump backtrace generation in t/REPORT if
Devel::GDB is installed [Gozer]
add 'testcover' make target for running tests with Devel::Cover
[Geoffrey Young]
1.14 - October 12, 2004
improve the same_interpreter framework to handle response
failures while trying to init and later find out the same
interpreter. [Stas]
make sure that 'make distclean' cleans all the autogenerated
files [Stas]
make sure that if -maxclients option is passed on the command
line, minclients will never be bigger than that value [Stas]
add -one-process runtime argument, which will start the server
in single-server mode (httpd -X in Apache 1.X or httpd -D
ONE_PROCESS in 2.X) [Geoffrey Young]
In open_cmd, sanitize PATH instead of clearing it [Gozer]
Allow / \ and \\ path delimiters in SKIP file [Markus Wichitill
<mawic@gmx.de>]
Added an apxs query cache for improved test performance [Gozer]
run_tests make target no longer invokes t/TEST -clean, making
it possible to save a few development cycles when a full cleanup
is not required between runs. [Geoffrey Young]
Apache::TestSmoke imrovements: [Stas] o the command line option
-iterations=N should always be respected (previously it was
internally overriden for order!='random'). o since IPC::Run3
broke the Ctrl-C handler, we started to loose any intermediate
results, should the run be aborted. So for now, try to always
store those results in the temp file: smoke-report...$iter.temp
fix 'require blib' in scripts to also call 'blib->import',
required to have an effect under perl 5.6.x. [Stas]
don't allow running an explicit 'perl Makefile.PL', when
Apache-Test is checked out into the modperl-2.0 tree, since it
then decides that it's a part of the modperl-2.0 build and will
try to use modperl httpd/apxs arguments which could be unset
or wrong [Stas]
Fix skip test suite functionality in the interactive configuration
phase [Stas]
s/die/CORE::die/ after exec() to avoid warnings (and therefore
failures) when someone overrides CORE::die when using Apache-Test
[William McKee, Stas]
Overrode Module::Build's "testcover" action in Apache::TestMB
to prevent the Apache::Test sticky preference files from being
included in the coverage report. [David]
1.13 - Aug 20, 2004
move the custom config code into Apache::TestConfig, split the
config object creation in 2 parts - first not requiring the
knowledge of httpd location, the second requiring one, refactor
the custom config interactive prompting into the second phase,
if failed to find httpd. Reshuffle the code to run first bits
not requiring the knowledge of httpd location. [Stas]
fix Apache::TestCommonPost::lwp_do to work with LWP 5.800
($res->content() doesn't allow CODE refs anymore, instead used
content_ref to avoid huge strings copy) [Stas]
add @PHP_MODULE@ extra.conf.in substitution variable, which
selects mod_php4 or mod_php5 as appropriate. [Geoffrey Young]
the have() function was removed entirely - use need() instead.
[Geoffrey Young]
add need() and need_* variant functions (need_module(),
need_apache(), etc) for use specifically with plan() to decide
whether or not a test should run. have_* variants (have_module(),
have_apache(), etc) are now specifically for use outside of
plan(), although they can continue to be used within plan()
without fear of current tests breaking. [Geoffrey Young]
add need_php() and have_php() which will return true when either
mod_php4 or mod_php5 are available, providing functionality
similar to need_cgi() and have_cgi(). [Geoffrey Young]
Add APACHE_TEST_EXTRA_ARGS make variable to all invocations to
t/TEST to allow passing extra arguments from the command line.
[Gozer]
When APACHE_TEST_NO_STICKY_PREFERENCES=1 is used don't even
try to interactively configure the server, as we don't save
any config it was entering an infinite loop. [Stas]
If a directory t/lib exists from where the tests are run, adjust
@INC so that this directory is added when running the tests,
both within t/TEST and within t/conf/modperl_inc.pl. This allows
inclusion of modules specific to the tests that aren't intended
to be installed. [Stas, Randy]
make a special case for threaded mpm configuration, to ensure
that unless maxclients was specified, MaxClients will be exactly
twice bigger than ThreadsPerChild (minclients), since if we
don't do that, Apache will reduce MaxClients to the same value
as ThreadsPerChild. [Stas]
Renamed generate_test_script() to generate_script() in
Apache::TestMB to match the naming convention used in Apache::TestMM
and elsewhere. [David]
Apache::TestMB now only prints the "Generating test running
script" message if verbosity is enabled (e.g., by passing
--verbose when executing Build.PL). [David]
Fixed the "requests_redirectable" parameter to
Apache::TestRequest::user_agent() so that it works as docmented
when passed a negative value. [Boris Zentner]
Documented support for passing an array reference to the
"requests_redirectable" parameter to Apache::TestRequest::user_agent()
to be passed to LWP::UserAgent if LWP ist installed. [David]
Add dependency on p5-Apache-Test
(even though I could not make "make test" work).
Change log:
Version: 3.06
** BUG FIX: AuthNameSatisfy (Any|All) directives were broken. AuthCookie
was using AuthCookieSatisfy rather than ${auth_name}Satisfy. If you
used this feature and had an "AuthCookieSatisfy" directive in your
config file, you MUST change this to ${auth_name}Satisfy.
E.g.: "WhateverSatisfy All"
- created better test cases for AuthNameSatisfy directives.
- when redirecting, set Location with headers_out() not err_headers_out().
apache prefers Location in headers_out, even if the status code is not
200.
- MP2: Apache::unescape_url() -> Apache::URI::unescape_url()
- check for mod_perl 1.9913 or later for Apache::URI (Frederick Moyer)
- Remove set status in login.pl which caused malformed custom error
document (Frederick Moyer)
- Add support for ${auth_name}CookieName to change the name of the cookie
used for each auth name. Default remains ${auth_name}_${auth_type} if
not set.
- make some debug log_error() calls conditional on $debug
Changes since the last stable release:
- User-specified FSM code coverage. By using command-line options or inline code specified
by the user, FSM code coverage can be extracted from the design. This does not include
the ability to automatically extract FSMs from the design (an ability that will be added
in future stable releases).
- Enhanced performance of the score command. A 3x - 5x speedup in the running time of the
score command on the design should be expected with this release over past stable releases.
- Enhanced readability of coverage reports. The coverage report look has been overhauled to
produce a much more readable/understandable coverage report.
- Several bug-fixes have been made, including coverage number calculation bugs.
- Development and user documentation updates.
- Enhanced regression suite.
Now, this package isn't meta-package.
Ruby itself is provided as language/ruby18 (Ruby 1.8.1) or
language/ruby16 (Ruby 1.6.8) and Ruby's commands are
$PREFIX/bin/ruby18 or $PREFIX/bin/ruby16.
This pacakge provide commands without its version in name
as $PREFIX/bin/ruby.
Some extention libraries bundled in Ruby's distribution are
move to separate packages. For ruby18:
converters/ruby-iconv: Iconv module
databases/ruby-dbm: DBM module
databases/ruby-gdbm: GDBM module
devel/ruby-curses: Curses module
security/ruby-digest: message digest module
security/ruby-openssl: OpenSSL module
devel/ruby-readline: readline module
x11/ruby-tcltklib: Tcl/Tk libraries
x11/ruby-tk: Tk modules
And for ruby16:
databases/ruby-dbm: DBM module
databases/ruby-gdbm: GDBM module
devel/ruby16-curses: Curses module
security/ruby-digest: message digest module
devel/ruby-readline: readline module
x11/ruby16-tcltklib: Tcl/Tk libraries
x11/ruby16-tk: Tk modules
You can specify default Ruby's version by setting
RUBY_VERSION_DEFAULT to 1.6 or 1.8 in /etc/mk.conf.
Add a HOMEPAGE pointing into search.cpan.org.
Adapt the patch to the new version of the package.
Change log:
Version: 1.022 Fri Jan 31 14:00:48 CST 2003
- Now can be installed using either Module::Build or
ExtUtils::MakeMaker.
- Simplified a few of the TIEHANDLE code chunks that used substr() to
manipulate saved filehandle data.
Version: 1.021 Fri Dec 27 10:13:23 CST 2002
- The test suite now provides a bit more useful information upon
failure and uses Test.pm to generate its output.
- Avoid an "undefined value" warning in READLINE() method [Dave
Rolsky]
- If the initial $r isn't an Apache object (could be Apache::Request
or a subclass of Apache), make an on-the-fly subclass of whatever
it is. [Dave Rolsky]
Version: 1.020 Date: Mon Nov 11 17:11:31 AEST 2002
Fixed the Apache::PerlRunFilter module, which was missing a call to
filter_register(). [Ruslan U. Zakirov, Oleh Khoma]
Minor regex speedup in READLINE() method of filehandle.
Correct doc bug about Filter2 and Filter3.
Add Apache::HTML::ClassParser to list of filter-aware modules.
and this package covers both Ruby 1.8 base and 1.6 base.
This is a Ruby extension to DBM library (including Berkley DB's DBM
compatible one), which is actually a part of the Ruby distribution.