The rlimit issue adressed in patches ac,ad,ae was already addressed in
release 1.0.11, so remove them.
Omega 1.0.18 (2010-02-14):
indexers:
* Make the default charset "utf-8" not "UTF-8" as we lower case explicitly
specified character sets to compare to see if we need to reparse. Previously
XML documents which explicitly specified their character set as UTF-8 would
cause needless restart or the parser.
* omindex:
+ Increase the wdf boost for the document title from 2 to 5, since 2 isn't
really enough.
* scriptindex:
+ Don't abort with "Unknown Exception" if indexing is disallowed or we hit
</body> for a document which had an overridden character set. Fixes
ticket#410.
Omega 1.0.17 (2009-11-18):
indexers:
* omindex:
+ On Linux, change the memory limit on external filters to use _SC_PHYS_PAGES
since _SC_AVPHYS_PAGES excludes pages used by the OS cache and so will
often report a really low value. Fixes Debian bug#548987 and ticket#358.
+ Fix likely crash when reading output from external filter program if read()
is interrupted by a signal.
+ Fix potential crash when indexing PostScript files (fixed by using delete[]
(not delete) for array allocated by new[]).
testsuite:
* utf8converttest: Charset "8859_1" isn't understood by Solaris libiconv, and
isn't a standard charset name, so just test it when using our built-in
converter and GNU libc.
portability:
* Fix build failure on Mac OS X 10.6.
* Also check for socketpair() in -lxnet if it isn't found without, which
enables resource limits on external filter programs called by omindex on
Solaris, and possibly some other platforms. Fixes ticket#412.
Xapian-core 1.0.18 (2009-02-14):
API:
* Document: Add new add_boolean_term() method, which is an alias for add_term()
with wdfinc=0.
* QueryParser:
+ Add support for quoting boolean terms so they can contain arbitrary
characters (partly addresses ticket#128).
+ Add ENCLOSING_MARK and COMBINING_SPACING_MARK categories, plus several
zero-width space characters, as phrase generators. This mirrors a better
fix in 1.1.4, but without losing compatibility with existing databases.
+ Fix handling of an explicit AND before a hated term (foo AND -bar).
(ticket#447)
* TermIterator: Only include trailing '+' or '#' on a term if it isn't followed
by a word character (makes more sense and matches QueryParser's behaviour).
(ticket#446)
* Database: Fix many methods to behave better on a database with no
subdatabases, such as is constructed by Database(). Fixes ticket#415.
testsuite:
* Add test coverage for xapian-compact, and improve coverage for
WritableDatabase::replace_document().
* apitest: Rename matchfunctor<n> to matchdecider<n> to match current
terminology.
flint backend:
* When updating documents, don't update posting entries which haven't changed.
Largely fixes ticket #250.
* If the number of entries in the position table happened to be 4294967296 or
an exact multiple, Xapian would ignore positional data for that table when
running queries.
* Iterating all the terms in the database with a prefix is now slightly more
efficient.
* Fix locking code to work if stdin and/or stdout have been closed.
* If a document is replaced with itself unmodified, we no longer increase the
automatic flush counter.
* When iterating a posting list modified since the last flush(), the reported
wdf is now correct (previously it was too high by its old value).
* Replacing a document deleted since the last flush failed to update the
collection frequency and wdf, and caused an assertion failure when assertions
were enabled.
* WritableDatabase::replace_document() didn't always remove old positional
data (the only effect is that the position table was bloated by unwanted
entries).
* xapian-inspect:
+ New "until" command which shows entries until a specified key is reached.
+ New "open" command which allows easy switching between tables.
* xapian-compact: Fix typos in --help output.
quartz backend:
* Replacing a document deleted since the last flush failed to update the
collection frequency and wdf, and caused an assertion failure when assertions
were enabled.
* WritableDatabase::replace_document() didn't always remove old positional
data (the only effect is that the position table was bloated by unwanted
entries).
remote backend:
* Throw UnimplementedError if a MatchDecider is used with the remote backend.
Previously Xapian returned incorrect results in this case.
build system:
* configure: With --enable-maintainer-mode, enable -Werror for GCC >= 4.1
rather than >= 4.0 as Apple's GCC 4.0 gives bogus uninitialised variable
warnings.
documentation:
* The API documentation now includes Xapian::Error and subclasses, and doesn't
mention Xapian::Query::Internal.
* Make clear in the Xapian::Document API documentation that this class is a
lazy handle and discuss the issues this can cause.
* INSTALL: Improve text about zlib dependency.
* HACKING: Add details of our licensing policy for accepting patches.
examples:
* quest: If no database is specified, still parse the query and report
Query::get_description() to provide an easy way to check how a query parses.
portability:
* Fix GCC 4.2 warning.
xapian-core 1.0.17 (2009-11-18):
API:
* QueryParser:
+ Fix handling of a group of two or more terms which are all stopwords which
notably caused issues when default_op was OP_AND, but could probably
manifest in other cases too. Fixes ticket#406.
+ Fix interaction of FLAG_PARTIAL and FLAG_SYNONYM. (ticket#407)
* Database: A database created via the default constructor no longer causes a
segfault when the methods get_metadata() or metadata_keys_begin() are called.
flint backend:
* Don't try to close the fd one more than the maximum allowable when locking
the database. Harmless, except it causes a warning when running under
valgrind. (ticket#408)
remote backend:
* Xapian::Sorter isn't supported with the remote backend so throw
UnimplementedError rather than giving incorrect results. (ticket#384)
* Fix potential reading off the end of the MSet which is returned internally
by the remote server.
documentation:
* Various documentation comment improvements for the Database class.
examples:
* examples/quest.cc: Tighten up the type of the error we catch to detect an
unknown stemming language.
portability:
* xapian-config: Need to quote ^ for Solaris /bin/sh.
* configure: Actually use any flags we determine are needed to switch the
compiler to proper ANSI C++ mode, when building xapian-core - this stopped
working in 1.0.12, breaking support for HP's aCC, Compaq's cxx, Sun's CC, and
SGI's CC.
* t-prot: Release as v2.15.
* t-prot.1: Describe --sani more precisely.
* t-prot: Fine-tune some regex.
* t-prot: Fix merging of multiple blank lines within pgp output
using -Mmutt.
* t-prot: Simplify expression.
* t-prot, t-prot.1: Add --reply and --sani for fixing annoying
headers. Add documentation for both. Many thanks to Matthias
Kilian and Martin Neitzel for suggesting and providing some script
invoked by procmail rules.
* t-prot.1: Suggest reading about -p when using -P.
* t-prot.1: Sort options in a consistent, alphabetical way.
* t-prot.1: Fix hyphenation. Thanks to Gerfried Fuchs for noticing!
* t-prot.1: Jeff Covey's article should not be missing under SEE
* t-prot: Release as v2.14.
* t-prot: Code cleanup for --pgp-short. Should get better
performance now.
* t-prot: Tighten --help output.
* t-prot.1: Add fields of usage and mention the INN2 filter file.
* t-prot.1: Improve word flow.
* t-prot.1: Another occurence of RFC 2822, update to RFC 5322.
* t-prot.1: RFC 5322 is offficial standard for the Internet Message
Format since October 2008, obsoleting RFC 2822.
* t-prot: Adjust comment to modern t-prot times.
* t-prot.1: Update contributers list.
* t-prot.1: Update date string.
* t-prot.1: Remove redundancies, improve some descriptions.
* contrib/muttrc.t-prot: By now, --bigq is pretty much standard and
extremely well-tested, so we include it into default configuration.
* t-prot: Revert thinko from r1.272.
* t-prot: Fix syntax to match coding style.
* t-prot: Release as v2.13.
* t-prot: Fix long standig false positive for mutt<1.5.18 with
Microsoft TOFU inside a PGP signed message and no lines above the
full quote (indicating a forwarded message rather than a lazy full
quote). Thanks to Gerfried Fuchs.
* t-prot: Fix newline stripping for locales.
* t-prot: Release as v2.12.
* t-prot, t-prot.1: Exit with exit status EX_OK when --max-lines
hits and -Mmutt is set (mutt is picky when a display_filter fails).
Provide a notification line in that case. Update man page. Many
thanks to Gerfried Fuchs, Martin F. Krafft and Tino Keitel for
reporting, providing a patch and testing.
* t-prot: Release as v2.11.
* contrib/filter_innd.pl: Command line default has changed, check
flags must be set now.
* t-prot.1: Better explain ratio check value.
* t-prot.1: Update copyright time stamp.
* t-prot, t-prot.1: Fix initialization and command line parsing for
--check (this should work as advertised now). Make the ratio check
code a little easier to read. Add the default value for the ratio
check to the man page.
* t-prot.1: Remove URLs to example scripts and configs. The files
are provided with the package.
* t-prot, t-prot.1: Fix last commit, release as t-prot v2.10.
Update man page.
* t-prot: Release as t-prot v2.9.
* t-prot: Do not check for message length in attachments (we
checked already for the entire message). Do exit with proper exit
code if message is longer than set in --max-lines (so scripts can
see if we gave up processing).
* t-prot.1: Fix speling.
* t-prot.1: Fix time stamp.
* t-prot.1: Fix rendering for anyone out there using UTF-8. Many
thanks (and a very merry Christmas) to Alfie.
* t-prot: Release as v2.8.
* t-prot, t-prot.1: Update documentation to reflect last change.
Avoid being tripped by endless (or non-existant) headers.
* t-prot: Change check order and remove duplicated code for
--max-lines.
2010-02-15 Rasqal Version 0.9.19 Released
The only change to this release is to fix the pkg-config rasqal.pc file
to to restore the dependency on raptor which was accidently deleted.
Lesson learnt: do not commit code after midnight local time.
2010-02-14 Rasqal Version 0.9.18 Released
Add initial draft parsing and API (NOT execution) support for SPARQL
1.1 Update W3C Working Draft of 2010-01-26.
Add public APIs (row, results, result formatter, variables table) so
that query results can be built, read and written without a query.
Add API resilience checks for invalid NULL pointer arguments.
Many other bug fixes and improvements were made.
Fixed Issues: #0000320, #0000323#0000343, #0000345 and #0000347
0.50 Mon Feb 8 13:43:19 2010
* Mouse::Tiny
- Allow "use Mouse::Tiny VERSION" with a patch contributed by
chocolateboy, RT #54383 (gfx)
* Mouse::Util::MetaRole
- Add Mouse::Util::MetaRole::apply_metaroles
to catch up the latest Moose API for metaroles (gfx)
by Wen Heping.
Changelog:
QA release:
- Fix bug #2676: Setting selected value doesn't work [cweiske]
- Implement request #1749: add support for <optgroup> elements
for multi-level arrays [cweiske]
- Automatically set the <select> element id attribute
- Add some examples
- Convert to package.xml v2
- Fix coding standards
- Stabilize after 6 years in beta
version 2.06: Tue Jan 26 10:01:22 CET 2010
Improvements:
- express more clearly that Authen::SASL needs to be installed
manually if you need the functionality
- support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
pkgsrc changes:
- Remove '*.orig' relics remaining from patch
Upstream changes:
0.05002 2010-02-15 10:17:47
- support for SQLAnywhere via DBD::SQLAnywhere and ODBC
- fix picking up quoted tables for SQLite (RT#54538) patch from schwern
- validate class/component loader_options to make sure classes
are available before generating the schema, patch from bphillips
0.05001 2010-02-05 14:29:27
- correct default_value for all backends with common tests
- fix bug with quoted Pg tables from $dbh->tables (RT#54338)
- add inflate_datetime => 0 to 'timestamp' types for Sybase
3.4.11:
* Update Hungarian, Japanese, and Latvian translations.
* Make xdg-autostart use the OPENBOX environment by default, so you can use
OnlyShowIn=OPENBOX in an autostart .desktop and it will work as expected.
* Don't close the menu when you hold control and execute something.
* Fix bug #4503 (Adjust who shows up in the Alt-Tab list using SKIP_TASKBAR).
* Fix flickering window when moving maximized window between monitors of
different sizes.
* Fix bug #4355 (Allow multiple escaped _'s in a menu label and allow
a menu shortcut to come after an escaped _).
* Remember the maximized state of a window when it goes fullscreen, and
restore it when leaving fullscreen state.
* Fix bug #4072 (Openbox is stopped by terminal applications writing to
stdout).
* Fix bug #4492 (Mistake in openbox-gnome-session check while setting up).
* Fix obxprop to make --root and --id work correctly.
* Add _OB_APP_ROLE/CLASS/NAME/TYPE properties (replaces _OB_ROLE/CLASS/NAME).
* Make the focus cycling popup dynamic when windows appear/disappear.
* Fix bug #4411 (Crash when window appears during focus cycling).
* Allow the user to specify which properties should be shown by obxprop.
* Fix tilde expansion in the Execute action
* Make Home and End keys move to the top/bottom of the active menu.
* Use the submenuShowDelay when navigating menus with the keyboard.
The release adds ability to have different types of listeners in
the same process (necessary for the latest unstable version of
GNOME).
The API/ABI (and soname) was changed (oops, I did it again).
pkgsrc changes:
- Adjust dependencies
Upstream changes:
0.08119 2010-02-15 09:36:00 (UTC)
- Add $rs->is_ordered to test for existing order_by on a resultset
- Add as_subselect_rs to DBIC::ResultSet from
DBIC::Helper::ResultSet::VirtualView::as_virtual_view
- Refactor dbicadmin adding DDL manipulation capabilities
- New optional dependency manager to aid extension writers
- Depend on newest bugfixed Moose
- Make resultset chaining consistent wrt selection specification
- Storage::DBI::Replicated cleanup
- Fix autoinc PKs without an autoinc flag on Sybase ASA
0.08118 2010-02-08 11:53:00 (UTC)
- Fix a bug causing UTF8 columns not to be decoded (RT#54395)
- Fix bug in One->Many->One prefetch-collapse handling (RT#54039)
- Cleanup handling of relationship accessor types
0.08117 2010-02-05 17:10:00 (UTC)
- Perl 5.8.1 is now the minimum supported version
- Massive optimization of the join resolution code - now joins
will be removed from the resulting SQL if DBIC can prove they
are not referenced by anything
- Subqueries no longer marked experimental
- Support for Informix RDBMS (limit/offset and auto-inc columns)
- Support for Sybase SQLAnywhere, both native and via ODBC
- might_have/has_one now warn if applied calling class's column
has is_nullable set to true.
- Fixed regression in deploy() with a {sources} table limit applied
(RT#52812)
- Views without a view_definition will throw an exception when
parsed by SQL::Translator::Parser::DBIx::Class
- Stop the SQLT parser from auto-adding indexes identical to the
Primary Key
- InflateColumn::DateTime refactoring to allow fine grained method
overloads
- Fix ResultSetColumn improperly selecting more than the requested
column when +columns/+select is present
- Fix failure when update/delete of resultsets with complex WHERE
SQLA structures
- Fix regression in context sensitiveness of deployment_statements
- Fix regression resulting in overcomplicated query on
search_related from prefetching resultsets
- Fix regression on all-null returning searches (properly switch
LEFT JOIN to JOIN in order to distinguish between both cases)
- Fix regression in groupedresultset count() used on strict-mode
MySQL connections
- Better isolation of RNO-limited queries from the rest of a
prefetching resultset
- New MSSQL specific resultset attribute to allow hacky ordered
subquery support
- Fix nasty schema/dbhandle leak due to SQL::Translator
- Initial implementation of a mechanism for Schema::Version to
apply multiple step upgrades
- Fix regression on externally supplied $dbh with AutoCommit=0
- FAQ "Custom methods in Result classes"
- Cookbook POD fix for add_drop_table instead of add_drop_tables
- Schema POD improvement for dclone
There are some compatibility fixes here, but I should call out for OS
builders commit 34636b12c62523b9db789b0fbeb3a86782debf10 where you no
longer have to pass --with-introspect-xml to configure.
Upstream changes:
revision 1.61 2010-02-05 16:28 (UTC)
----------------------------
- Allow INSERT to take additional attributes
- Support for INSERT ... RETURNING
- Another iteration of SQL::Abstract::Test fixes and improvements
changes:
-many fixes to playbin2
-libgsttag: add utility functions for ISO-639 language codes and tags
-theora: port to 'new' theora 1.0 API
-more fixes and improvements
changes:
-registry: do plugin scanning (on *nix) using an external helper binary
-lots of performance improvements
-add GstByteWriter, a simple generic byte writer
-queue2: move from gst-plugins-base into the coreelements plugin in core
-other fixes and improvements