* Added support for macOS Big Sur (11.x) on Apple Silicon using a universal build
* Fixed title to show CPU architecture used
* Fixed length of error message buffer
* Removed support for Mac OS X Snow Leopard (10.6) and older
* Removed deprecated iODBCcfmbridge for PPC
* Upgraded iODBC build to use recent versions of Xcode
* Minimum Xcode version is set to Xcode 8.0
* Minimum macOS deployment target is OS X Mavericks (10.9)
* Migrated dialogs and plist files
* Migrated translation support
Changelog:
Evolution-Data-Server 3.40.3 2021-07-09
---------------------------------------
Bug Fixes:
I#336 - Handle "Object is out of sync" during backend refresh better (Milan Crha)
Miscellaneous:
tests: Workaround libphonenumber behavior change (Milan Crha)
test-book-client-write-write: Fix occasional test failure (Milan Crha)
IMAPx: Change how Junk and NotJunk flags are handled (Milan Crha)
ECalBackendFile: Free interval tree only when being allocated (Milan Crha)
In mysql 5.7.34 binding a parameter to a 0-sized buffer triggers
an assert() -- previously this was DBG_ASSERT. This triggers
crashes in databases/akonadi in particular, which binds blobs of
size 0. This patch allows akonadi with the default mysql to
start (at all) again.
The patch file previously held a Qt4-era patch which had long
ago had a better patch applied upstream (the comment in the
patch refers to that). The old stuff has been removed, leaving
only the parameter-fix.
Details:
- Many bugfixes (including some security related) available in the new
mantis release 2.25.2.
PR: 257066
Reported by: Zoltan ALEXANDERSON BESSE <zab@zltech.eu> (maintainer)
MFH: 2021Q3
Security: CVE-2021-3603
CVE-2021-33557
CVE-2020-36326
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneously as part of KDE Gear.
Today they all get new bugfix source releases.
Full changelog:
https://kde.org/announcements/changelogs/gear/21.04.3/
Changelog:
We at the phpMyAdmin project are pleased to release phpMyAdmin 5.1.1, a bugfix release.
There are many new bug fixes; a few highlights include:
Fixes for several PHP errors
Fixes for "$cfg['DefaultTabDatabase']" and other related configuration directives not working properly
Fix Yaml export to quote strings even when they are numeric
Fix TCPDF open_basedir issue due to internal guessing code from TCPDF
Fix for quick search not working when using more than one configured server
Fix datetime decimals displayed (.00000) after edit
Fix new lines in text fields are doubled
Fixed URL generation by removing un-needed & escaping for & char
Improvements for working with PHP 8.1
Improved handling of adding a new user with the Percona database server
There are, of course, many more fixes you can see in the ChangeLog file included with this release or online at https://demo.phpmyadmin.net/master-config/index.php?route=/changelog
Sponsored by: Netzkommune GmbH
Release 21.07.0:
core:
* JBIG2Stream: Do not consider a size-0 to be an error. Issue #535
* PSOutputDev: fix off-by-one error for image masking in L1/L2 output. Issue #1088
* CairoOutputDev: Fix memory leak on broken files
* Minor code improvements
build system:
* set C standard to 11 without extensions
Exp-run by: antoine
PR: 256981
pg_tileserv is a PostGIS-only tile server written in Go.
By restricting itself to only using PostGIS as a data source,
pg_tileserv gains the following features:
- Automatic configuration. The server can discover and
automatically publish as tiles sources all tables it has read
access to: just point it at a PostgreSQL/PostGIS database.
- Full SQL flexibility. Using function layers, the server can
run any SQL to generate tile outputs. Any data processing,
feature filtering, or record aggregation that can be expressed in SQL,
can be exposed as parameterized tile sources.
- Database security model. You can restrict access to tables and
functions using standard database access control.
This means you can also use advanced access control techniques,
like row-level security to dynamically filter access based on the
login role.
WWW: https://github.com/crunchydata/pg_tileserv/issues
Make sure to use internal pg_query lib.
Patch is already included upstream in version 2.1.0:
https://github.com/pganalyze/pg_query/pull/216/files
This should fix the build outside of poudriere.
PR: 256741
Reported by: VVD <vvd@unislabs.com>
GDAL 3.3.0 introduces the use of standard C bool type.
Redefining bool locally, as in vector/v.hull/chull.c causes failure.
Obtained from: https://github.com/OSGeo/grass/pull/1567
lfcbase:
- Added HashT::getRangePos and HashT::RemovePos for more efficient
hash array manipulation
cego:
- Fix in CegoQueryCacheEntry::cleanCache, reset of all relevant
variables. Furthermore, in CegoQueryCache methods, remove from
hasharray is checked for return code true
- Usage of new HashT methods ( getRangePos and RemovePos ) for
CegoQueryCache to remove entries from query cache array more efficient
- Fix in CegoFactor::evalFieldValue(), for case CegoFactor::QUERY,
the fetched value must be saved to a local copy, otherwise the
buffer could be overwritten by the subsequent nextTuple method call
to complete the query for query cache. As a result, wrong values
are returned in case of heavy buffer cache relocation.