pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/php-nextcloud Update to 11.0.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e33c19d625ab
branches:  trunk
changeset: 362072:e33c19d625ab
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Thu May 04 12:26:06 2017 +0000

description:
Update to 11.0.3

Changelog:
Server

    Use the correct principal for shared addressbooks (server/3608)
    Fix saving backup codes by using a correct data uri (server/3652)
    Update icewind/streams to 0.5.2 (server/32931)
    Fix string comparison and return docs (server/3665)
    Typecast shared mount's storage_id to int as documented + some refactor to avoid similar bugs (server/3658)
    Use a proper date format for transfer ownership (server/3700)
    DAV sharing permissions should not depend on the order (server/3722)
    Add new user agent of windows 10 dav backend (server/37641)
    Add back appstoreenabled config switch (server/37671)
    Call right function after sudo mode (server/3820)
    Dont allow empty wildcard search (server/3842)
    Remove single quotes around search query like in user search (server/3849)
    Fix mimetype detection on public uploads for the workflow engine (server/3765)
    Fix branding and show Nextcloud (server/39691)
    Fix reshare with user activity message (server/39812)
    Create correct VCard and return correct error codes (server/4029)
    Prevent migration from ownCloud 10 to Nextcloud 11 (server/34151)
    Make sure transparency is an integer when saving a calendar (server/4167)
    Make public links work with master key (server/42071)
    Don't try to render the avatars if avatars are disabled (server/4214)
    Reduce error message text (server/42281)
    Don't list on public calendar endpoints (server/4229)
    Fix upload of folders in Chrome (server/4154)
    Make sure blob columns are correctly converted as parameters (server/4233)
    Save the scope of an auth token in the session (server/4225)
    Take share by mail into consideration if we calculate the access list (server/4242)
    Also add the root of external storages to the file id list (server/4237)
    Fix LDAP description (server/42382)
    Remove the double password confirmation on changing cron (server/4236)
    Fix scheduling plugin on legacy caldav endpoint (server/4235)
    Directly fix invalid values of DTEND and DTSTART (server/4234)
    Make JobList::next() lock free (server/4254)
    Don't remove owner property for public calendars (server/4272)
    Add capabilities for share by mail (server/42511)
    Dont use the permissions mask while scanning (server/4278)
    Add missing maintenance plugin to new DAV endpoint (server/4290)
    Fix bug with shared_by for own calendars if shared (server/4301)
    Translation string corrected > 1 user (server/4377)

Activity

    Fix activities for "Files drop" on external storages (activity/118)

User_SAML

    Bump to php-saml 2.10.5 (user_saml/1001)

Logreader

    Small screen layout improvements (logreader/2bcd915969386ceb77c7f91dfd5fc19fd3212346
    Fix log filtering (logreader/4095dfc62dcceb3c59a3f581baa5589737d0e6f3)
    Greatly speedup log iteration (logreader/71a4c6849641f821e80d96674c57a69fe7a8aa9e)
    Search more rows (logreader/b9d00b5599ac8a76862895266f1c23096391aad8)
    Stop iterating if we dont have a valid file handle (logreader/a87a8e653ecae5efef6342e645b98f2878219c87)
    Don't return a LogIterator on a broken handle (logreader/39069108f99d463b1cb8bc944f3ef24324b9f43d)
    More robust log iteration (logreader/c0eb04d55bf1dee94ef523dae0e3b0e6afc272a6)
    Use proper iso date format (logreader/13a31181a6d72d084797a71f49f2c5edee8c8dae)
    Automatically try to fix some common escape errors from copy-pasted log entries (logreader/031db2a7f9b9f8cee42acf6eae7d993d31d4660a)
    Fix stack trace parsing of incorrectly escaped logentries (logreader/538667770edfdd48374ef33e9c15498ed98ece60)
    Highlight entries from the same request when clicking on an entry (logreader/2d1ccd0e4cca32220fcbe0b4d79d1cd23f0e73a5)
    Fix copy paste info searchfield (logreader/0e91b2f46649a720feb7c3b6b8266b8657db5574)
    Fix reset search after 0 results (logreader/50bec8ecf7edd81cfb96a35089283c0d879b41f3)
    Allow searching for requestId and user (logreader/7f84e55bb4a1e4086ab0918a6bf58ad3885bbd91)
    Allow searching in url (logreader/7833d97cf85fd351d2f7550d67d21bd0c2a815f4)
    Fix infinite scroll (logreader/cbe874c6c068b9156ad8456edf31d112da40cbc9)
    Dont show loading indicator if we already have entries (logreader/d26a08dc0540126177e8d20c3e243b44c5a399c4)

Gallery

    Fix upload after core changes (gallery/b4ac4429841cfe2b7ea260dfb37fcde25580143c2)
    Update JavaScript libraries (gallery/247)

diffstat:

 www/php-nextcloud/Makefile |    5 +-
 www/php-nextcloud/PLIST    |  377 ++++++++++++++++++++++++++++++++++++++------
 www/php-nextcloud/distinfo |   10 +-
 3 files changed, 331 insertions(+), 61 deletions(-)

diffs (truncated from 1249 to 300 lines):

diff -r 4bc83decd584 -r e33c19d625ab www/php-nextcloud/Makefile
--- a/www/php-nextcloud/Makefile        Thu May 04 12:21:45 2017 +0000
+++ b/www/php-nextcloud/Makefile        Thu May 04 12:26:06 2017 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2017/04/05 12:33:49 fhajny Exp $
+# $NetBSD: Makefile,v 1.5 2017/05/04 12:26:06 ryoon Exp $
 #
 
-DISTNAME=      nextcloud-11.0.2
+DISTNAME=      nextcloud-11.0.3
 PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    www
 MASTER_SITES=  https://download.nextcloud.com/server/releases/
 EXTRACT_SUFX=  .tar.bz2
diff -r 4bc83decd584 -r e33c19d625ab www/php-nextcloud/PLIST
--- a/www/php-nextcloud/PLIST   Thu May 04 12:21:45 2017 +0000
+++ b/www/php-nextcloud/PLIST   Thu May 04 12:26:06 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2017/03/16 00:01:54 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.4 2017/05/04 12:26:06 ryoon Exp $
 share/nextcloud/.htaccess
 share/nextcloud/.user.ini
 share/nextcloud/3rdparty/.drone.yml
@@ -596,6 +596,7 @@
 share/nextcloud/3rdparty/icewind/streams/src/IteratorDirectory.php
 share/nextcloud/3rdparty/icewind/streams/src/NullWrapper.php
 share/nextcloud/3rdparty/icewind/streams/src/Path.php
+share/nextcloud/3rdparty/icewind/streams/src/PathWrapper.php
 share/nextcloud/3rdparty/icewind/streams/src/RetryWrapper.php
 share/nextcloud/3rdparty/icewind/streams/src/SeekableWrapper.php
 share/nextcloud/3rdparty/icewind/streams/src/Url.php
@@ -2902,6 +2903,8 @@
 share/nextcloud/apps/comments/l10n/ast.json
 share/nextcloud/apps/comments/l10n/az.js
 share/nextcloud/apps/comments/l10n/az.json
+share/nextcloud/apps/comments/l10n/bg.js
+share/nextcloud/apps/comments/l10n/bg.json
 share/nextcloud/apps/comments/l10n/bg_BG.js
 share/nextcloud/apps/comments/l10n/bg_BG.json
 share/nextcloud/apps/comments/l10n/bn_BD.js
@@ -2912,6 +2915,8 @@
 share/nextcloud/apps/comments/l10n/bs.json
 share/nextcloud/apps/comments/l10n/ca.js
 share/nextcloud/apps/comments/l10n/ca.json
+share/nextcloud/apps/comments/l10n/cs.js
+share/nextcloud/apps/comments/l10n/cs.json
 share/nextcloud/apps/comments/l10n/cs_CZ.js
 share/nextcloud/apps/comments/l10n/cs_CZ.json
 share/nextcloud/apps/comments/l10n/cy_GB.js
@@ -2946,6 +2951,8 @@
 share/nextcloud/apps/comments/l10n/eu.json
 share/nextcloud/apps/comments/l10n/fa.js
 share/nextcloud/apps/comments/l10n/fa.json
+share/nextcloud/apps/comments/l10n/fi.js
+share/nextcloud/apps/comments/l10n/fi.json
 share/nextcloud/apps/comments/l10n/fi_FI.js
 share/nextcloud/apps/comments/l10n/fi_FI.json
 share/nextcloud/apps/comments/l10n/fil.js
@@ -2960,6 +2967,8 @@
 share/nextcloud/apps/comments/l10n/hi.json
 share/nextcloud/apps/comments/l10n/hr.js
 share/nextcloud/apps/comments/l10n/hr.json
+share/nextcloud/apps/comments/l10n/hu.js
+share/nextcloud/apps/comments/l10n/hu.json
 share/nextcloud/apps/comments/l10n/hu_HU.js
 share/nextcloud/apps/comments/l10n/hu_HU.json
 share/nextcloud/apps/comments/l10n/hy.js
@@ -2998,6 +3007,8 @@
 share/nextcloud/apps/comments/l10n/ms_MY.json
 share/nextcloud/apps/comments/l10n/my_MM.js
 share/nextcloud/apps/comments/l10n/my_MM.json
+share/nextcloud/apps/comments/l10n/nb.js
+share/nextcloud/apps/comments/l10n/nb.json
 share/nextcloud/apps/comments/l10n/nb_NO.js
 share/nextcloud/apps/comments/l10n/nb_NO.json
 share/nextcloud/apps/comments/l10n/nds.js
@@ -3022,6 +3033,8 @@
 share/nextcloud/apps/comments/l10n/ru.json
 share/nextcloud/apps/comments/l10n/si_LK.js
 share/nextcloud/apps/comments/l10n/si_LK.json
+share/nextcloud/apps/comments/l10n/sk.js
+share/nextcloud/apps/comments/l10n/sk.json
 share/nextcloud/apps/comments/l10n/sk_SK.js
 share/nextcloud/apps/comments/l10n/sk_SK.json
 share/nextcloud/apps/comments/l10n/sl.js
@@ -3076,8 +3089,12 @@
 share/nextcloud/apps/dav/appinfo/v2/remote.php
 share/nextcloud/apps/dav/bin/chunkperf.php
 share/nextcloud/apps/dav/l10n/.gitkeep
+share/nextcloud/apps/dav/l10n/bg.js
+share/nextcloud/apps/dav/l10n/bg.json
 share/nextcloud/apps/dav/l10n/bg_BG.js
 share/nextcloud/apps/dav/l10n/bg_BG.json
+share/nextcloud/apps/dav/l10n/cs.js
+share/nextcloud/apps/dav/l10n/cs.json
 share/nextcloud/apps/dav/l10n/cs_CZ.js
 share/nextcloud/apps/dav/l10n/cs_CZ.json
 share/nextcloud/apps/dav/l10n/de.js
@@ -3088,14 +3105,22 @@
 share/nextcloud/apps/dav/l10n/el.json
 share/nextcloud/apps/dav/l10n/es.js
 share/nextcloud/apps/dav/l10n/es.json
+share/nextcloud/apps/dav/l10n/es_MX.js
+share/nextcloud/apps/dav/l10n/es_MX.json
+share/nextcloud/apps/dav/l10n/fi.js
+share/nextcloud/apps/dav/l10n/fi.json
 share/nextcloud/apps/dav/l10n/fi_FI.js
 share/nextcloud/apps/dav/l10n/fi_FI.json
 share/nextcloud/apps/dav/l10n/fr.js
 share/nextcloud/apps/dav/l10n/fr.json
+share/nextcloud/apps/dav/l10n/hu.js
+share/nextcloud/apps/dav/l10n/hu.json
 share/nextcloud/apps/dav/l10n/hu_HU.js
 share/nextcloud/apps/dav/l10n/hu_HU.json
 share/nextcloud/apps/dav/l10n/id.js
 share/nextcloud/apps/dav/l10n/id.json
+share/nextcloud/apps/dav/l10n/is.js
+share/nextcloud/apps/dav/l10n/is.json
 share/nextcloud/apps/dav/l10n/it.js
 share/nextcloud/apps/dav/l10n/it.json
 share/nextcloud/apps/dav/l10n/ja.js
@@ -3104,6 +3129,8 @@
 share/nextcloud/apps/dav/l10n/lt_LT.json
 share/nextcloud/apps/dav/l10n/lv.js
 share/nextcloud/apps/dav/l10n/lv.json
+share/nextcloud/apps/dav/l10n/nb.js
+share/nextcloud/apps/dav/l10n/nb.json
 share/nextcloud/apps/dav/l10n/nb_NO.js
 share/nextcloud/apps/dav/l10n/nb_NO.json
 share/nextcloud/apps/dav/l10n/nl.js
@@ -3112,14 +3139,22 @@
 share/nextcloud/apps/dav/l10n/pl.json
 share/nextcloud/apps/dav/l10n/pt_BR.js
 share/nextcloud/apps/dav/l10n/pt_BR.json
+share/nextcloud/apps/dav/l10n/ro.js
+share/nextcloud/apps/dav/l10n/ro.json
 share/nextcloud/apps/dav/l10n/ru.js
 share/nextcloud/apps/dav/l10n/ru.json
+share/nextcloud/apps/dav/l10n/sk.js
+share/nextcloud/apps/dav/l10n/sk.json
 share/nextcloud/apps/dav/l10n/sl.js
 share/nextcloud/apps/dav/l10n/sl.json
 share/nextcloud/apps/dav/l10n/sq.js
 share/nextcloud/apps/dav/l10n/sq.json
 share/nextcloud/apps/dav/l10n/sv.js
 share/nextcloud/apps/dav/l10n/sv.json
+share/nextcloud/apps/dav/l10n/tr.js
+share/nextcloud/apps/dav/l10n/tr.json
+share/nextcloud/apps/dav/l10n/zh_CN.js
+share/nextcloud/apps/dav/l10n/zh_CN.json
 share/nextcloud/apps/dav/l10n/zh_TW.js
 share/nextcloud/apps/dav/l10n/zh_TW.json
 share/nextcloud/apps/dav/lib/AppInfo/Application.php
@@ -3140,6 +3175,8 @@
 share/nextcloud/apps/dav/lib/CalDAV/CalendarObject.php
 share/nextcloud/apps/dav/lib/CalDAV/CalendarRoot.php
 share/nextcloud/apps/dav/lib/CalDAV/Plugin.php
+share/nextcloud/apps/dav/lib/CalDAV/PublicCalendar.php
+share/nextcloud/apps/dav/lib/CalDAV/PublicCalendarObject.php
 share/nextcloud/apps/dav/lib/CalDAV/PublicCalendarRoot.php
 share/nextcloud/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php
 share/nextcloud/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
@@ -3217,9 +3254,8 @@
 share/nextcloud/apps/dav/lib/Files/Sharing/FilesDropPlugin.php
 share/nextcloud/apps/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php
 share/nextcloud/apps/dav/lib/HookManager.php
+share/nextcloud/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php
 share/nextcloud/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
-share/nextcloud/apps/dav/lib/Migration/ValueFix.php
-share/nextcloud/apps/dav/lib/Migration/ValueFixInsert.php
 share/nextcloud/apps/dav/lib/RootCollection.php
 share/nextcloud/apps/dav/lib/Server.php
 share/nextcloud/apps/dav/lib/SystemTag/SystemTagMappingNode.php
@@ -3260,6 +3296,8 @@
 share/nextcloud/apps/encryption/l10n/bs.json
 share/nextcloud/apps/encryption/l10n/ca.js
 share/nextcloud/apps/encryption/l10n/ca.json
+share/nextcloud/apps/encryption/l10n/cs.js
+share/nextcloud/apps/encryption/l10n/cs.json
 share/nextcloud/apps/encryption/l10n/cs_CZ.js
 share/nextcloud/apps/encryption/l10n/cs_CZ.json
 share/nextcloud/apps/encryption/l10n/da.js
@@ -3288,6 +3326,8 @@
 share/nextcloud/apps/encryption/l10n/eu.json
 share/nextcloud/apps/encryption/l10n/fa.js
 share/nextcloud/apps/encryption/l10n/fa.json
+share/nextcloud/apps/encryption/l10n/fi.js
+share/nextcloud/apps/encryption/l10n/fi.json
 share/nextcloud/apps/encryption/l10n/fi_FI.js
 share/nextcloud/apps/encryption/l10n/fi_FI.json
 share/nextcloud/apps/encryption/l10n/fr.js
@@ -3298,6 +3338,8 @@
 share/nextcloud/apps/encryption/l10n/he.json
 share/nextcloud/apps/encryption/l10n/hr.js
 share/nextcloud/apps/encryption/l10n/hr.json
+share/nextcloud/apps/encryption/l10n/hu.js
+share/nextcloud/apps/encryption/l10n/hu.json
 share/nextcloud/apps/encryption/l10n/hu_HU.js
 share/nextcloud/apps/encryption/l10n/hu_HU.json
 share/nextcloud/apps/encryption/l10n/ia.js
@@ -3324,6 +3366,8 @@
 share/nextcloud/apps/encryption/l10n/lv.json
 share/nextcloud/apps/encryption/l10n/mk.js
 share/nextcloud/apps/encryption/l10n/mk.json
+share/nextcloud/apps/encryption/l10n/nb.js
+share/nextcloud/apps/encryption/l10n/nb.json
 share/nextcloud/apps/encryption/l10n/nb_NO.js
 share/nextcloud/apps/encryption/l10n/nb_NO.json
 share/nextcloud/apps/encryption/l10n/nl.js
@@ -3340,6 +3384,8 @@
 share/nextcloud/apps/encryption/l10n/ro.json
 share/nextcloud/apps/encryption/l10n/ru.js
 share/nextcloud/apps/encryption/l10n/ru.json
+share/nextcloud/apps/encryption/l10n/sk.js
+share/nextcloud/apps/encryption/l10n/sk.json
 share/nextcloud/apps/encryption/l10n/sk_SK.js
 share/nextcloud/apps/encryption/l10n/sk_SK.json
 share/nextcloud/apps/encryption/l10n/sl.js
@@ -3352,6 +3398,8 @@
 share/nextcloud/apps/encryption/l10n/sr%latin.json@localhost
 share/nextcloud/apps/encryption/l10n/sv.js
 share/nextcloud/apps/encryption/l10n/sv.json
+share/nextcloud/apps/encryption/l10n/th.js
+share/nextcloud/apps/encryption/l10n/th.json
 share/nextcloud/apps/encryption/l10n/th_TH.js
 share/nextcloud/apps/encryption/l10n/th_TH.json
 share/nextcloud/apps/encryption/l10n/tr.js
@@ -3592,6 +3640,8 @@
 share/nextcloud/apps/federatedfilesharing/l10n/bg_BG.json
 share/nextcloud/apps/federatedfilesharing/l10n/ca.js
 share/nextcloud/apps/federatedfilesharing/l10n/ca.json
+share/nextcloud/apps/federatedfilesharing/l10n/cs.js
+share/nextcloud/apps/federatedfilesharing/l10n/cs.json
 share/nextcloud/apps/federatedfilesharing/l10n/cs_CZ.js
 share/nextcloud/apps/federatedfilesharing/l10n/cs_CZ.json
 share/nextcloud/apps/federatedfilesharing/l10n/da.js
@@ -3608,12 +3658,16 @@
 share/nextcloud/apps/federatedfilesharing/l10n/eo.json
 share/nextcloud/apps/federatedfilesharing/l10n/es.js
 share/nextcloud/apps/federatedfilesharing/l10n/es.json
+share/nextcloud/apps/federatedfilesharing/l10n/es_MX.js
+share/nextcloud/apps/federatedfilesharing/l10n/es_MX.json
 share/nextcloud/apps/federatedfilesharing/l10n/et_EE.js
 share/nextcloud/apps/federatedfilesharing/l10n/et_EE.json
 share/nextcloud/apps/federatedfilesharing/l10n/eu.js
 share/nextcloud/apps/federatedfilesharing/l10n/eu.json
 share/nextcloud/apps/federatedfilesharing/l10n/fa.js
 share/nextcloud/apps/federatedfilesharing/l10n/fa.json
+share/nextcloud/apps/federatedfilesharing/l10n/fi.js
+share/nextcloud/apps/federatedfilesharing/l10n/fi.json
 share/nextcloud/apps/federatedfilesharing/l10n/fi_FI.js
 share/nextcloud/apps/federatedfilesharing/l10n/fi_FI.json
 share/nextcloud/apps/federatedfilesharing/l10n/fr.js
@@ -3624,8 +3678,12 @@
 share/nextcloud/apps/federatedfilesharing/l10n/he.json
 share/nextcloud/apps/federatedfilesharing/l10n/hr.js
 share/nextcloud/apps/federatedfilesharing/l10n/hr.json
+share/nextcloud/apps/federatedfilesharing/l10n/hu.js
+share/nextcloud/apps/federatedfilesharing/l10n/hu.json
 share/nextcloud/apps/federatedfilesharing/l10n/hu_HU.js
 share/nextcloud/apps/federatedfilesharing/l10n/hu_HU.json
+share/nextcloud/apps/federatedfilesharing/l10n/ia.js
+share/nextcloud/apps/federatedfilesharing/l10n/ia.json
 share/nextcloud/apps/federatedfilesharing/l10n/id.js
 share/nextcloud/apps/federatedfilesharing/l10n/id.json
 share/nextcloud/apps/federatedfilesharing/l10n/is.js
@@ -3644,6 +3702,8 @@
 share/nextcloud/apps/federatedfilesharing/l10n/lv.json
 share/nextcloud/apps/federatedfilesharing/l10n/mk.js
 share/nextcloud/apps/federatedfilesharing/l10n/mk.json
+share/nextcloud/apps/federatedfilesharing/l10n/nb.js
+share/nextcloud/apps/federatedfilesharing/l10n/nb.json
 share/nextcloud/apps/federatedfilesharing/l10n/nb_NO.js
 share/nextcloud/apps/federatedfilesharing/l10n/nb_NO.json
 share/nextcloud/apps/federatedfilesharing/l10n/nl.js
@@ -3711,6 +3771,8 @@
 share/nextcloud/apps/federation/l10n/bg_BG.json
 share/nextcloud/apps/federation/l10n/ca.js
 share/nextcloud/apps/federation/l10n/ca.json
+share/nextcloud/apps/federation/l10n/cs.js
+share/nextcloud/apps/federation/l10n/cs.json
 share/nextcloud/apps/federation/l10n/cs_CZ.js
 share/nextcloud/apps/federation/l10n/cs_CZ.json
 share/nextcloud/apps/federation/l10n/da.js
@@ -3727,14 +3789,20 @@
 share/nextcloud/apps/federation/l10n/eo.json
 share/nextcloud/apps/federation/l10n/es.js
 share/nextcloud/apps/federation/l10n/es.json
+share/nextcloud/apps/federation/l10n/es_MX.js
+share/nextcloud/apps/federation/l10n/es_MX.json
 share/nextcloud/apps/federation/l10n/et_EE.js
 share/nextcloud/apps/federation/l10n/et_EE.json
+share/nextcloud/apps/federation/l10n/fi.js
+share/nextcloud/apps/federation/l10n/fi.json
 share/nextcloud/apps/federation/l10n/fi_FI.js
 share/nextcloud/apps/federation/l10n/fi_FI.json
 share/nextcloud/apps/federation/l10n/fr.js
 share/nextcloud/apps/federation/l10n/fr.json
 share/nextcloud/apps/federation/l10n/he.js



Home | Main Index | Thread Index | Old Index