From 4b889e9cc7c629bb408fc8e470a80a7ab283fffc Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 6 Mar 2013 15:26:14 -0500 Subject: Fixes #4566 upgrades location metadata on users --- version.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'version.php') diff --git a/version.php b/version.php index 07a08ab4a..b5822b371 100644 --- a/version.php +++ b/version.php @@ -5,13 +5,13 @@ * This is compared against the values stored in the database to determine * whether upgrades should be performed. * - * @package Elgg + * @package Elgg * @subpackage Core */ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2013012900; +$version = 2013030600; // Human-friendly version name -$release = '1.8.13'; +$release = '1.8.14'; -- cgit v1.2.3 From f6e70740d7601af0ff64e4ca2e683a7c9c650e95 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 20 Apr 2013 13:11:22 -0400 Subject: updates changes and version for 1.8.15 release --- CHANGES.txt | 5 +++-- version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'version.php') diff --git a/CHANGES.txt b/CHANGES.txt index c23d30fd2..fcdc97969 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ Version 1.8.15 -(April xx, 2013 from https://github.com/Elgg/Elgg/tree/1.8) +(April 23, 2013 from https://github.com/Elgg/Elgg/tree/1.8) Contributing Developers: * Cash Costello * Ismayil Khayredinov @@ -21,13 +21,14 @@ Version 1.8.15 Enhancements: * Added browser caching of language JS files + * Adding nofollow on user posted URLs for spam deterrence (thanks to Hellekin) * Auto-registering views for simplecache when their URL is requested * Display helpful message for those who have site URL configuration issues * Can revert to a previous revision with pages plugin * Site owners can turn off posting wire messages to Twitter * Search results are sorted by relevance - Dropped Support: + Dropped Plugins: * Twitter widget due to changes in Twitter API and terms of service * OAuth API plugin due to conflicts with the Twitter API plugin diff --git a/version.php b/version.php index b5822b371..c5fc817d4 100644 --- a/version.php +++ b/version.php @@ -14,4 +14,4 @@ $version = 2013030600; // Human-friendly version name -$release = '1.8.14'; +$release = '1.8.15'; -- cgit v1.2.3 From 4c45640a3327aea985b383dcbecc5a439674f97c Mon Sep 17 00:00:00 2001 From: cash Date: Fri, 17 May 2013 15:44:22 -0400 Subject: Fixes #5479 adds group full text index if missing --- ...15-add_missing_group_index-52a63a3a3ffaced2.php | 28 ++++++++++++++++++++++ version.php | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 engine/lib/upgrades/2013051700-1.8.15-add_missing_group_index-52a63a3a3ffaced2.php (limited to 'version.php') diff --git a/engine/lib/upgrades/2013051700-1.8.15-add_missing_group_index-52a63a3a3ffaced2.php b/engine/lib/upgrades/2013051700-1.8.15-add_missing_group_index-52a63a3a3ffaced2.php new file mode 100644 index 000000000..ee99bdbc8 --- /dev/null +++ b/engine/lib/upgrades/2013051700-1.8.15-add_missing_group_index-52a63a3a3ffaced2.php @@ -0,0 +1,28 @@ +Index_type === 'FULLTEXT') { + $full_text_index_exists = true; + } + } +} + +if ($full_text_index_exists == false) { + $query = "ALTER TABLE {$db_prefix}groups_entity + ADD FULLTEXT name_2 (name, description)"; + if (!update_data($query)) { + elgg_log("Failed to add full text index to groups_entity table", 'ERROR'); + } +} diff --git a/version.php b/version.php index c5fc817d4..ac554a945 100644 --- a/version.php +++ b/version.php @@ -11,7 +11,7 @@ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2013030600; +$version = 2013051700; // Human-friendly version name $release = '1.8.15'; -- cgit v1.2.3 From 3247464f3be9ee7e731adaaec9d53c9d3088b8fa Mon Sep 17 00:00:00 2001 From: Jerome Bakker Date: Wed, 29 May 2013 16:16:49 +0200 Subject: changed: the system_log table can now store ipv6 addresses --- .../2013052900-1.8.15-ipv6_in_syslog-f5c2cc0196e9e731.php | 12 ++++++++++++ engine/schema/mysql.sql | 2 +- version.php | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 engine/lib/upgrades/2013052900-1.8.15-ipv6_in_syslog-f5c2cc0196e9e731.php (limited to 'version.php') diff --git a/engine/lib/upgrades/2013052900-1.8.15-ipv6_in_syslog-f5c2cc0196e9e731.php b/engine/lib/upgrades/2013052900-1.8.15-ipv6_in_syslog-f5c2cc0196e9e731.php new file mode 100644 index 000000000..d333a6cd2 --- /dev/null +++ b/engine/lib/upgrades/2013052900-1.8.15-ipv6_in_syslog-f5c2cc0196e9e731.php @@ -0,0 +1,12 @@ + Date: Tue, 25 Jun 2013 06:54:48 -0400 Subject: preparing 1.8.16 release --- CHANGES.txt | 4 ++-- version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'version.php') diff --git a/CHANGES.txt b/CHANGES.txt index 39a88a677..187dc7e25 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ Version 1.8.16 -(June xx, 2013 from https://github.com/Elgg/Elgg/tree/1.8) +(June 25, 2013 from https://github.com/Elgg/Elgg/tree/1.8) Contributing Developers: * Brett Profitt * Cash Costello @@ -9,7 +9,7 @@ Version 1.8.16 * Steve Clay Security Fixes: - * + * Fixed avatar removal bug (thanks to Jerome Bakker for the first report of this) Bugfixes: * Fixed infinite loop when deleting/disabling an entity with > 50 annotations diff --git a/version.php b/version.php index ac554a945..f21ea074a 100644 --- a/version.php +++ b/version.php @@ -14,4 +14,4 @@ $version = 2013051700; // Human-friendly version name -$release = '1.8.15'; +$release = '1.8.16'; -- cgit v1.2.3 From 82b30f63043eba9c18999bd2a15301d62ead4a76 Mon Sep 17 00:00:00 2001 From: Paweł Sroka Date: Wed, 1 Jan 2014 12:42:10 +0100 Subject: Preparing 1.8.17 release --- CHANGES.txt | 43 +++++++++++++++++++++++++++++++++++++++++++ version.php | 4 ++-- 2 files changed, 45 insertions(+), 2 deletions(-) (limited to 'version.php') diff --git a/CHANGES.txt b/CHANGES.txt index 187dc7e25..819378e12 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,46 @@ +Version 1.8.17 +(January 1, 2014 from https://github.com/Elgg/Elgg/tree/1.8) + Contributing Developers: + * Brett Profitt + * Cash Costello + * Ed Lyons + * Evan Winslow + * Jeroen Dalsem + * Jerome Bakker + * Juho Jaakkola + * Matt Beckett + * Paweł Sroka + * Sem + * Steve Clay + + Security Fixes: + * Specially-crafted request could return the contents of sensitive files. + * Reflected XSS attack was possible against 1.8 systems. + * The cryptographic key used for various purposes may have been generated with weak entropy, particularly on Windows. + + Bugfixes: + * URLs with non-ASCII usernames again work + * Floated images are now properly cleared in content areas + * The activity page title now matches the document title + * Search again supports multiple comments on the same entity + * Blog archive sidebar now reverse chronological + * URLs with matching parens can now be auto-linked + * Log browser links for users now work + * Disabling over 50 objects should no longer result in an infinite loop + * Radio/checkbox inputs no longer have border radius (for IE10) + * User picker: the Only Friends checkbox again works + * Group bookmarklet no longer shown to non-members + * Widget reordering fixed when moving across columns + * Refuse to deactivate plugins needed as dependencies + + Enhancements: + * Group member listings are ordered by name + * The system_log table can now store IPv6 addresses + * Web services auth_gettoken() now accepts email address + * List functions: no need to specify pagination for unlimited queries + * Htmlawed was upgraded to 1.1.16 + + Version 1.8.16 (June 25, 2013 from https://github.com/Elgg/Elgg/tree/1.8) Contributing Developers: diff --git a/version.php b/version.php index a94bf9d31..c29b44c07 100644 --- a/version.php +++ b/version.php @@ -11,7 +11,7 @@ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2013052900; +$version = 2014010100; // Human-friendly version name -$release = '1.8.16'; +$release = '1.8.17'; -- cgit v1.2.3 From 0dd36c458d41e77521c36ae572fe73114ad4bc5a Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Sat, 11 Jan 2014 19:54:34 -0500 Subject: Prepare for 1.8.18 release --- CHANGES.txt | 10 ++++++++++ version.php | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'version.php') diff --git a/CHANGES.txt b/CHANGES.txt index 819378e12..f6974a3ae 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,13 @@ +Version 1.8.18 +(January 11, 2014 from https://github.com/Elgg/Elgg/tree/1.8) + Contributing Developers: + * Juho Jaakkola + * Steve Clay + + Bugfixes: + * Fixes notify_user() broken in 1.8.17 + + Version 1.8.17 (January 1, 2014 from https://github.com/Elgg/Elgg/tree/1.8) Contributing Developers: diff --git a/version.php b/version.php index c29b44c07..a7a4776a4 100644 --- a/version.php +++ b/version.php @@ -11,7 +11,7 @@ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2014010100; +$version = 2014110100; // Human-friendly version name -$release = '1.8.17'; +$release = '1.8.18'; -- cgit v1.2.3