summaryrefslogtreecommitdiff
path: root/databases/mysql56-client/options.mk
diff options
context:
space:
mode:
authoradam <adam>2015-07-30 14:39:18 +0000
committeradam <adam>2015-07-30 14:39:18 +0000
commit65193acc09356716b5d5cb313ce81622536fb5de (patch)
treeff9540c451abe19546497d6b7a2d2de2d0bff489 /databases/mysql56-client/options.mk
parent58b4088da9764f6045f1b6a24e02cb7b3b1c989e (diff)
downloadpkgsrc-65193acc09356716b5d5cb313ce81622536fb5de.tar.gz
Changes 5.6.26:
* Security Fix: Due to the LogJam issue (https://weakdh.org/), OpenSSL has changed the Diffie-Hellman key length parameters for openssl-1.0.1n and up. * Replication: When using a multi-threaded slave, each worker thread has its own queue of transactions to process. In previous MySQL versions, STOP SLAVE waited for all workers to process their entire queue. This logic has been changed so that STOP SLAVE first finds the newest transaction that was committed by any worker thread. Then, it waits for all workers to complete transactions older than that. Newer transactions are not processed. The new logic allows STOP SLAVE to complete faster in case some worker queues contain multiple transactions. * Previously, the max_digest_length system variable controlled the maximum digest length for all server functions that computed statement digests. However, whereas the Performance Schema may need to maintain many digest values, other server functions such as MySQL Enterprise Firewall need only one digest per session. Increasing the max_digest_length value has little impact on total memory requirements for those functions, but can increase Performance Schema memory requirements significantly. To enable configuring digest length separately for the Performance Schema, its digest length is now controlled by the new performance_schema_max_digest_length system variable. * Previously, changes to the validate_password plugin dictionary file (named by the validate_password_dictionary_file system variable) while the server was running required a restart for the server to recognize the changes. Now validate_password_dictionary_file can be set at runtime and assigning a value causes the named file to be read without a restart. In addition, two new status variables are available. validate_password_dictionary_file_last_parsed indicates when the dictionary file was last read, and validate_password_dictionary_file_words_count indicates how many words it contains. * Bugs fixed
Diffstat (limited to 'databases/mysql56-client/options.mk')
-rw-r--r--databases/mysql56-client/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/mysql56-client/options.mk b/databases/mysql56-client/options.mk
index 77d61f5361d..a9018427598 100644
--- a/databases/mysql56-client/options.mk
+++ b/databases/mysql56-client/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.7 2015/02/07 19:23:40 adam Exp $
+# $NetBSD: options.mk,v 1.8 2015/07/30 14:39:18 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5
@@ -25,9 +25,9 @@ CMAKE_ARGS+= -DENABLE_DTRACE=ON
# http://sphinxsearch.com/docs/current.html#sphinxse-overview
PLIST_VARS+= sphinx
.if !empty(PKG_OPTIONS:Msphinx) || make(distinfo) || make(makesum) || make(mdi)
-SPHINX_VER= 2.2.7
+SPHINX_VER= 2.2.9
DISTFILES= ${DEFAULT_DISTFILES} sphinx-${SPHINX_VER}-release${EXTRACT_SUFX}
-SITES.sphinx-2.2.7-release.tar.gz= http://sphinxsearch.com/files/
+SITES.sphinx-2.2.9-release.tar.gz= http://sphinxsearch.com/files/
.if !empty(PKGPATH:Mdatabases/mysql56-server)
MESSAGE_SRC= ${PKGDIR}/MESSAGE ${PKGDIR}/MESSAGE.sphinx
.endif