dnstable (0.11.2)
* Fix memory leaks while skipping rows of data during offset processing.
* Fix minor leak in dnstable_lookup printing.
* Add more dnstable_lookup tests.
dnstable (0.11.1)
* Change dnstable_query_set_skip to ..._offset. Note that the
ABI library revision was not bumped.
* Change dnstable_lookup parameter for offset from -s to -O
* Added unit tests for some exposed dnstable functionality, including
for filter and query timeouts.
Sponsored by: Farsight Security, Inc.
* Pet portlint while I'm here.
Changelog:
* Parallel editing of multiple entries in different browser tabs supported
* LAM supports the progressive web app standard which allows to install LAM
as an icon on home screen.
* Unix: Password management can be disabled in module settings
* LAM Pro:
* Bind DLZ: entry table can show record data (use special attribute
"#records" in server profile)
* Fixed bugs:
* No drop-down filter box for account status (200)
PR: 238943
Submitted by: basil@vpm.net.ua (maintainer)
* The project moved to Gitlab and the old site has vanished.
* Update the distinfo accordingly, the new tarball is cleaner and doesn't
contain patch backup files, generated config.h headers, etc. Apart from
that there are no differences regarding the source code.
* Also add "gnome" to USES while I'm here as using USE_GNOME alone is
deprecated.
PR: 237875
Reported by: Nick Godson <resistor@peakusage.net>
Reviewed by: tcberner
MFH: 2019Q3
Differential Revision: https://reviews.freebsd.org/D20856
Makefile
- pygtk2 is now gtk30 (upstream);
- python:2.7 became python:3.6+;
- option helpers changed to follow '5.13 Makefile Options'.
pkg-plist
- hatari_profile is installed by default (upstream);
- manpages and doc up to date, removed fr/ versions;
- all tools/ available, with respective docs.
* https://hatari.tuxfamily.org/doc/release-notes.txt
Reported by: swills
Differential Revision: https://reviews.freebsd.org/D19628
basE91 is an advanced method for encoding binary data as ASCII characters.
It is similar to UUencode or base64, but is more efficient.
The overhead produced by basE91 depends on the input data. It amounts at most
to 23% (versus 33% for base64) and can range down to 14%, which typically
occurs on 0-byte blocks.
This makes basE91 very useful for transferring larger files over binary unsafe
connections like e-mail or terminal lines.
WWW: http://base91.sourceforge.net/
PR: 238202
Submitted by: takefu@airport.fm
Reviewed by: miwi, tcberner
Differential Revision: https://reviews.freebsd.org/D20803
While I'm here:
* Pet portlint/portclippy by moving USE_ variables to USES block.
* Remove superflous GH_PROJECT as it's already derived from PORTNAME.
* Update the WWW field to spare users from redirects.
Changelog:
https://github.com/NixOS/patchelf/compare/0.9...0.10
PR: 237680
Submitted by: Felix Palmen <felix@palmen-it.de>
Approved by: maintainer timeout (2+ months)
- Added MySQL type support for type date and type bigint
- Activated append mode in CegoBridge::main, which speeds up import
performance significantly
- In MySQLAction::storeKey, changed btreename to _ since MySQL
allows non unique key names
- Added stored procedure grammar defintions to MySQLParser.def.
Semantic actions still not implemented
Submitted by: Bjoern Lemke <lemke@lemke-it.com>
- Added table alias feature to grammar definition. Table aliases
allow alternate table name and attribute name definitions for a
table ( create alias ... )
- Added classes CegoAliasObject and CegoAttrAlias for table alias handling
- Implemented base semantic actions for creating, listing and
describe alias objects ( still no usage )
- In CegoDistManager::registerObjects, added registration for fkey,
check, trigger and alias
- Added alias mapping for insert, update and delete queries (
CegoQueryHelper::mapAliasPredicate still to implement )
- Basic alias mapping for select works, here's a sample SQL script
drop if exists table t1;
list alias;
desc alias a1;
drop if exists alias a1;
create table t1 ( a int, b string(30));
create alias a1 on t1 ( a as ax, b as bx );
insert into a1 ( ax, bx ) values ( 1, 'XXX');
insert into a1 ( ax, bx ) values ( 2, 'YYY');
insert into a1 ( ax, bx ) values ( 3, 'ZZZ');
select ax from a1;
- More work on table alias handling. Now works with more sophisticated
select queries ( e.g. select ax from a1 aa where aa.ax = 1; ) For
this, some fixes had to be done in CegoContentObject, since the the
table alias attribute ( _tabAlias ) was not setup in constructor
and other methods
- Added alias and trigger xml export and import feature ( trigger
xport was still not implemented ) Fix in CegoDbThread::loadObjects
for trigger reload, instead of triggerList.Next(), triggerList.First()
was called, which result in an infinite loop in case of existing
trigger objects
- Added trigger and alias object handling to CegoXPorter binary
export and import
Submitted by: Bjoern Lemke <lemke@lemke-it.com>