From 70cf7663d7e90b3747908f5fe1c3a4b08491b81a Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Thu, 23 Apr 2015 15:04:38 +0300 Subject: [PATCH] Updated documentation and added a message if libedit is not found. --- Documentation/About/About-MaxScale.md | 4 ++-- Documentation/Changelog.md | 8 ++++++++ client/CMakeLists.txt | 5 ++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Documentation/About/About-MaxScale.md b/Documentation/About/About-MaxScale.md index d2d133414..4477c2907 100644 --- a/Documentation/About/About-MaxScale.md +++ b/Documentation/About/About-MaxScale.md @@ -13,8 +13,8 @@ A Google Group exists for MaxScale that can be used to discuss ideas, issues and Send email to [maxscale@googlegroups.com](mailto:maxscale@googlegroups.com) or use the [forum](http://groups.google.com/forum/#!forum/maxscale) interface -Bugs can be reported in the MariaDB Corporation bugs database - [bug.mariadb.com](http://bugs.mariadb.com) +Bugs can be reported in the MariaDB Jira + [https://mariadb.atlassian.net](https://mariadb.atlassian.net) ## Installing MaxScale Information about installing MaxScale, either from a repository or by building from source code, is included in the guide [Getting Started with MaxScale](/Documentation/Getting-Started/Getting-Started-With-MaxScale.md). diff --git a/Documentation/Changelog.md b/Documentation/Changelog.md index 9716d0eed..c33b38a00 100644 --- a/Documentation/Changelog.md +++ b/Documentation/Changelog.md @@ -2,6 +2,14 @@ These are the changes introduced in the next MaxScale version. This is not the official change log and the latest changelog can always be found in here: [MaxScale 1.1 Release Notes](Release-Notes/MaxScale-1.1-Release-Notes.md) +## MaxScale 1.1.1 + +* Schemarouter now also allows for an upper limit to session commans. +* Schemarouter correctly handles SHOW DATABASES responses that span multiple buffers. +* Logfiles have been renamed. The log names are now named error.log, messages.log, trace.log and debug.log. + +## MaxScale 1.1 + **NOTE:** MaxScale default installation directory has changed to `/usr/local/mariadb-maxscale` and the default password for MaxAdmin is now ´mariadb´. * New modules added diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index c284931b2..755f2eac8 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,7 +1,10 @@ add_executable(maxadmin maxadmin.c) find_library(HIST edit) if(HIST) + message(STATUS "Building MaxAdmin with editline: ${HIST}") add_definitions(-DHISTORY) target_link_libraries(maxadmin ${HIST}) +else() + message(STATUS "Could not find editline library. MaxAdmin will be built without it.") endif() -install(TARGETS maxadmin DESTINATION bin) \ No newline at end of file +install(TARGETS maxadmin DESTINATION bin)