]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
5 years agoMerge pull request #14659 from nextcloud/backport/14644/stable14
Morris Jobke [Wed, 13 Mar 2019 16:15:14 +0000 (17:15 +0100)]
Merge pull request #14659 from nextcloud/backport/14644/stable14

[stable14] Remove sensitive SMB arguments from exception log

5 years agoRemove sensitive SMB arguments from exception log 14659/head
Morris Jobke [Tue, 12 Mar 2019 14:51:38 +0000 (15:51 +0100)]
Remove sensitive SMB arguments from exception log

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14598 from nextcloud/backport/14425/stable14
Morris Jobke [Fri, 8 Mar 2019 16:32:16 +0000 (17:32 +0100)]
Merge pull request #14598 from nextcloud/backport/14425/stable14

[stable14] Do not calculate folder size for parent that also needs proper scan, fixes #3524

5 years agoMerge pull request #14592 from nextcloud/backport/14464/stable14
Morris Jobke [Fri, 8 Mar 2019 16:31:30 +0000 (17:31 +0100)]
Merge pull request #14592 from nextcloud/backport/14464/stable14

[stable14] resolve user and groups in nested groups first before filtering the results

5 years agoMerge pull request #14595 from nextcloud/backport/14587/stable14
Morris Jobke [Fri, 8 Mar 2019 16:30:31 +0000 (17:30 +0100)]
Merge pull request #14595 from nextcloud/backport/14587/stable14

[stable14] Remove Google+ from Social Sharing Bundle

5 years agoMerge pull request #14600 from nextcloud/backport/14585/stable14
Morris Jobke [Fri, 8 Mar 2019 09:25:39 +0000 (10:25 +0100)]
Merge pull request #14600 from nextcloud/backport/14585/stable14

[stable14] Mention Open Cloud Mesh in Federated User Settings

5 years agoMention Open Cloud Mesh in Federated User Settings 14600/head
Marius Blüm [Thu, 7 Mar 2019 12:55:09 +0000 (13:55 +0100)]
Mention Open Cloud Mesh in Federated User Settings

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoAvoid calculating folder size for parent that needs scan. 14598/head
Ari Selseng [Fri, 1 Mar 2019 22:52:58 +0000 (23:52 +0100)]
Avoid calculating folder size for parent that needs scan.

Signed-off-by: Ari Selseng <ari@selseng.net>
5 years agoRemove Google+ from Social Sharing Bundle (2) 14595/head
Marius Blüm [Thu, 7 Mar 2019 13:57:56 +0000 (14:57 +0100)]
Remove Google+ from Social Sharing Bundle (2)

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoRemove "socialsharing_googleplus" from Social Sharing Bundle
Marius Blüm [Thu, 7 Mar 2019 13:56:16 +0000 (14:56 +0100)]
Remove "socialsharing_googleplus" from Social Sharing Bundle

Signed-off-by: Marius Blüm <marius@lineone.io>
5 years agoremove unused use statement 14592/head
Arthur Schiwon [Tue, 5 Mar 2019 23:34:29 +0000 (00:34 +0100)]
remove unused use statement

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agoadd missing config bits to integration tests
Arthur Schiwon [Tue, 5 Mar 2019 23:09:23 +0000 (00:09 +0100)]
add missing config bits to integration tests

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agowith LDAP server set offline, config cannot be controlled via ocs anymore
Arthur Schiwon [Tue, 5 Mar 2019 11:53:13 +0000 (12:53 +0100)]
with LDAP server set offline, config cannot be controlled via ocs anymore

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agofix nested group retrieval also for 2 other cases
Arthur Schiwon [Fri, 1 Mar 2019 23:36:08 +0000 (00:36 +0100)]
fix nested group retrieval also for 2 other cases

and also consolidate logic in one method

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agoFixed unit test: groupsMatchFilter will not be called multiple times anymore.
Roland Tapken [Thu, 8 Feb 2018 12:14:57 +0000 (13:14 +0100)]
Fixed unit test: groupsMatchFilter will not be called multiple times anymore.

Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
5 years agoReduce queries to LDAP by caching nested groups
Roland Tapken [Wed, 7 Feb 2018 15:08:25 +0000 (16:08 +0100)]
Reduce queries to LDAP by caching nested groups

Nested groups are now cached in a CappedMemoryCache object to reduce
queries to the LDAP backend.

Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
5 years agouser_ldap: really resolve nested groups
Roland Tapken [Wed, 7 Feb 2018 14:49:40 +0000 (15:49 +0100)]
user_ldap: really resolve nested groups

The previous patch fixed the problem only for one level of indirection
because groupsMatchFilter() had been applied on each recursive call (and
thus there would be no second level if the first level fails the check).

This new implementation replaces the recursive call with a stack that
iterates all nested groups before filtering with groupsMatchFilter().

Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
5 years agouser_ldap: Filter groups after nexted groups
Roland Tapken [Wed, 7 Feb 2018 13:08:08 +0000 (14:08 +0100)]
user_ldap: Filter groups after nexted groups

Currently groupsMatchFilter is called before nested groups are resolved.
This basicly breaks this feature since it is not possible to inherit
membership in a group from another group.

Minimal example:

  Group filter: (&(objectClass=group),(cn=nextcloud))
  Nested groups: enabled

  cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local
    objectClass: group

  cn=IT,ou=groups,dn=company,dn=local
    objectClass: group
    memberOf: cn=nextcloud,ou=Nextcloud,ou=groups,dn=company,dn=local

  cn=John Doe,ou=users,dn=company,dn=local
    objectClass: person
    memberOf: cn=IT,ou=groups,dn=company,dn=local

Since 'cn=IT,ou=groups,dn=company,dn=local' doesn't match the group
filter, John wouldn't be a member of group 'nextcloud'.

This patch fixes this by filtering the groups after all nested groups
have been collected. If nested groups is disabled the result will be the
same as without this patch.

Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
5 years agoMerge pull request #14547 from nextcloud/backport/14373/stable14
Roeland Jago Douma [Tue, 5 Mar 2019 18:52:48 +0000 (19:52 +0100)]
Merge pull request #14547 from nextcloud/backport/14373/stable14

[stable14] Add test for updated CA bundle

5 years agoDRONE_BRANCH is the target branch. DRONE_COMMIT_REFSPEC should work. 14547/head
Daniel Kesselberg [Tue, 5 Mar 2019 14:20:47 +0000 (15:20 +0100)]
DRONE_BRANCH is the target branch. DRONE_COMMIT_REFSPEC should work.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years agoAdd test for updated CA bundle
Morris Jobke [Mon, 25 Feb 2019 12:49:03 +0000 (13:49 +0100)]
Add test for updated CA bundle

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14543 from nextcloud/backport/14451/stable14
Morris Jobke [Tue, 5 Mar 2019 15:26:14 +0000 (16:26 +0100)]
Merge pull request #14543 from nextcloud/backport/14451/stable14

[stable14] Check if password can be changed for the users backend in OCS api

5 years agoMerge pull request #14417 from nextcloud/backport/14343/stable14
Morris Jobke [Tue, 5 Mar 2019 14:06:23 +0000 (15:06 +0100)]
Merge pull request #14417 from nextcloud/backport/14343/stable14

[stable14] Parse multiple navigation items

5 years agoCheck if password can be changed for the users backend in OCS api 14543/head
Julius Härtl [Fri, 1 Mar 2019 09:11:37 +0000 (10:11 +0100)]
Check if password can be changed for the users backend in OCS api

Signed-off-by: Julius Härtl <jus@bitgrid.net>
5 years agoMerge pull request #14533 from nextcloud/backport/14528/stable14
Morris Jobke [Tue, 5 Mar 2019 11:21:44 +0000 (12:21 +0100)]
Merge pull request #14533 from nextcloud/backport/14528/stable14

[stable14] Fix database configuration

5 years agoFix whitespaces 14533/head
Joas Schilling [Tue, 5 Mar 2019 08:31:45 +0000 (09:31 +0100)]
Fix whitespaces

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years agoFix database configuration
Joas Schilling [Tue, 5 Mar 2019 08:28:36 +0000 (09:28 +0100)]
Fix database configuration

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years agoMerge pull request #14513 from nextcloud/smb-3.0.2-14
Roeland Jago Douma [Mon, 4 Mar 2019 20:28:20 +0000 (21:28 +0100)]
Merge pull request #14513 from nextcloud/smb-3.0.2-14

update icewind/smb to 3.0.2

5 years agoMerge pull request #14504 from nextcloud/backport/stable14/14390
Morris Jobke [Mon, 4 Mar 2019 16:34:59 +0000 (17:34 +0100)]
Merge pull request #14504 from nextcloud/backport/stable14/14390

[stable14] Fix expire date change eventhandler

5 years agoupdate icewind/smb to 3.0.2 14513/head
Robin Appelman [Mon, 4 Mar 2019 15:37:01 +0000 (16:37 +0100)]
update icewind/smb to 3.0.2

Signed-off-by: Robin Appelman <robin@icewind.nl>
5 years agoAdd handler for change event of the expire date field 14504/head
Julius Härtl [Tue, 26 Feb 2019 18:29:15 +0000 (19:29 +0100)]
Add handler for change event of the expire date field

Signed-off-by: Julius Härtl <jus@bitgrid.net>
5 years agoMerge pull request #14498 from nextcloud/backport/14494/stable14
Morris Jobke [Mon, 4 Mar 2019 11:37:25 +0000 (12:37 +0100)]
Merge pull request #14498 from nextcloud/backport/14494/stable14

[stable14] Make header.feature more robust by running it on apache

5 years agoMerge pull request #14496 from nextcloud/backport/14440/stable14
Morris Jobke [Mon, 4 Mar 2019 10:32:43 +0000 (11:32 +0100)]
Merge pull request #14496 from nextcloud/backport/14440/stable14

[stable14] Run tests that fail with "no such process" over to apache server

5 years agoMake header.feature more robust by running it on apache 14498/head
Morris Jobke [Mon, 4 Mar 2019 09:22:16 +0000 (10:22 +0100)]
Make header.feature more robust by running it on apache

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoRun tests that fail with "no such process" over to apache server 14496/head
Morris Jobke [Thu, 28 Feb 2019 12:59:00 +0000 (13:59 +0100)]
Run tests that fail with "no such process" over to apache server

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14491 from nextcloud/backport/14489/stable14
Morris Jobke [Sun, 3 Mar 2019 22:24:45 +0000 (23:24 +0100)]
Merge pull request #14491 from nextcloud/backport/14489/stable14

[stable14] Add accessibility translations

5 years agoAdd accessibility translations 14491/head
John Molakvoæ (skjnldsv) [Sun, 3 Mar 2019 18:49:44 +0000 (19:49 +0100)]
Add accessibility translations

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 1 Mar 2019 01:12:57 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14415 from nextcloud/backport/13844/stable14
Roeland Jago Douma [Thu, 28 Feb 2019 08:43:31 +0000 (09:43 +0100)]
Merge pull request #14415 from nextcloud/backport/13844/stable14

[stable14] Bugfix for issue 10862: Trash-bin ignores trashbin_retention_obligation

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 28 Feb 2019 01:12:58 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14421 from nextcloud/version/noid/14.0.8 v14.0.8
Morris Jobke [Wed, 27 Feb 2019 20:33:46 +0000 (21:33 +0100)]
Merge pull request #14421 from nextcloud/version/noid/14.0.8

14.0.8

5 years ago14.0.8 14421/head
Morris Jobke [Wed, 27 Feb 2019 16:29:02 +0000 (17:29 +0100)]
14.0.8

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agotwo item => two items 14417/head
Daniel Kesselberg [Mon, 25 Feb 2019 13:52:14 +0000 (14:52 +0100)]
two item => two items

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years agoGenerate id for navigation item
Daniel Kesselberg [Mon, 25 Feb 2019 13:49:51 +0000 (14:49 +0100)]
Generate id for navigation item

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years agoParse multiple navigation items
Daniel Kesselberg [Fri, 22 Feb 2019 14:45:55 +0000 (15:45 +0100)]
Parse multiple navigation items

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years agoFix for issue 10862: calculation of free space ignores external storage (doesn't... 14415/head
Felix Nieuwenhuizen [Sat, 26 Jan 2019 16:23:23 +0000 (17:23 +0100)]
Fix for issue 10862: calculation of free space ignores external storage (doesn't count towards quota)

Signed-off-by: Felix Nieuwenhuizen <felix@tdlrali.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 27 Feb 2019 01:12:27 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 26 Feb 2019 09:10:22 +0000 (09:10 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 26 Feb 2019 01:12:30 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14375 from nextcloud/version/noid/14.0.8RC2 v14.0.8RC2
Morris Jobke [Mon, 25 Feb 2019 18:51:26 +0000 (19:51 +0100)]
Merge pull request #14375 from nextcloud/version/noid/14.0.8RC2

14.0.8 RC 2

5 years ago14.0.8 RC 2 14375/head
Morris Jobke [Mon, 25 Feb 2019 14:53:04 +0000 (15:53 +0100)]
14.0.8 RC 2

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14372 from nextcloud/backport/14369/stable14
Morris Jobke [Mon, 25 Feb 2019 14:50:58 +0000 (15:50 +0100)]
Merge pull request #14372 from nextcloud/backport/14369/stable14

[stable14] Use latest ca-bundle.crt from https://curl.haxx.se/docs/caextract.html

5 years agoUse latest ca-bundle.crt from https://curl.haxx.se/docs/caextract.html 14372/head
Daniel Kesselberg [Mon, 25 Feb 2019 10:20:26 +0000 (11:20 +0100)]
Use latest ca-bundle.crt from https://curl.haxx.se/docs/caextract.html

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 25 Feb 2019 01:12:37 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 24 Feb 2019 01:14:01 +0000 (01:14 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 23 Feb 2019 01:13:03 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 22 Feb 2019 01:12:29 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 21 Feb 2019 01:12:22 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14305 from nextcloud/version/noid/14.0.8RC1 v14.0.8RC1
Morris Jobke [Wed, 20 Feb 2019 15:22:01 +0000 (16:22 +0100)]
Merge pull request #14305 from nextcloud/version/noid/14.0.8RC1

14.0.8 RC 1

5 years ago14.0.8 RC 1 14305/head
Morris Jobke [Wed, 20 Feb 2019 11:03:24 +0000 (12:03 +0100)]
14.0.8 RC 1

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 20 Feb 2019 01:12:14 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14284 from nextcloud/backport/14194/stable14
Roeland Jago Douma [Tue, 19 Feb 2019 10:25:30 +0000 (11:25 +0100)]
Merge pull request #14284 from nextcloud/backport/14194/stable14

[stable14] Correctly determinate the owner in case of shared external storages

5 years agoCorrectly determinate the owner in case of shared external storages 14284/head
Joas Schilling [Thu, 14 Feb 2019 09:59:17 +0000 (10:59 +0100)]
Correctly determinate the owner in case of shared external storages

Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years agoMerge pull request #14278 from nextcloud/backport/14234/stable14
Morris Jobke [Tue, 19 Feb 2019 08:52:14 +0000 (09:52 +0100)]
Merge pull request #14278 from nextcloud/backport/14234/stable14

[stable14] Catch Request exception in testRemoteUrl

5 years agoCatch Request exception in testRemoteUrl 14278/head
Roeland Jago Douma [Fri, 15 Feb 2019 22:06:21 +0000 (23:06 +0100)]
Catch Request exception in testRemoteUrl

Else the background job fails hard if the remote has for example an
invalid certificate.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 19 Feb 2019 01:12:27 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 18 Feb 2019 01:12:29 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 17 Feb 2019 01:13:48 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 16 Feb 2019 01:12:44 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14226 from nextcloud/backport/14221/stable14
Morris Jobke [Fri, 15 Feb 2019 13:12:09 +0000 (14:12 +0100)]
Merge pull request #14226 from nextcloud/backport/14221/stable14

[stable14] Remove trailing spaces from localized strings

5 years agoRemove trailing spaces from localized strings 14226/head
Morris Jobke [Fri, 15 Feb 2019 10:26:52 +0000 (11:26 +0100)]
Remove trailing spaces from localized strings

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 15 Feb 2019 01:13:12 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14196 from nextcloud/backport/14185/stable14
Roeland Jago Douma [Thu, 14 Feb 2019 20:22:05 +0000 (21:22 +0100)]
Merge pull request #14196 from nextcloud/backport/14185/stable14

[stable14] Fix recent files

5 years agoMerge pull request #14086 from nextcloud/backport/14023/stable14
Roeland Jago Douma [Thu, 14 Feb 2019 18:50:01 +0000 (19:50 +0100)]
Merge pull request #14086 from nextcloud/backport/14023/stable14

[stable14] Fix: Check if `$this->params['user']` is an array

5 years agoMerge pull request #14206 from nextcloud/backport/14200/stable14
Roeland Jago Douma [Thu, 14 Feb 2019 18:43:46 +0000 (19:43 +0100)]
Merge pull request #14206 from nextcloud/backport/14200/stable14

[stable14] ensure attribute names are lower cased

5 years agoMerge pull request #14202 from nextcloud/backport/14160/stable14
Roeland Jago Douma [Thu, 14 Feb 2019 18:42:37 +0000 (19:42 +0100)]
Merge pull request #14202 from nextcloud/backport/14160/stable14

[stable14] Update CRL to contain revoked files_external_dropbox, passman & payback

5 years agoMerge pull request #14205 from nextcloud/backport/14177/stable14
Roeland Jago Douma [Thu, 14 Feb 2019 18:41:21 +0000 (19:41 +0100)]
Merge pull request #14205 from nextcloud/backport/14177/stable14

[stable14] Fix small glitches in update notification page

5 years agoensure attribute names are lower cased 14206/head
Arthur Schiwon [Thu, 14 Feb 2019 13:02:03 +0000 (14:02 +0100)]
ensure attribute names are lower cased

otherwise they will be skipped when the results is being formatted and the
lower-cased result keys do not match.

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
5 years agoFix style of warning for EoL version 14205/head
Morris Jobke [Wed, 13 Feb 2019 13:06:00 +0000 (14:06 +0100)]
Fix style of warning for EoL version

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoFix border in update notification section
Morris Jobke [Wed, 13 Feb 2019 13:02:04 +0000 (14:02 +0100)]
Fix border in update notification section

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoUpdate CRL to contain revoked files_external_dropbox, passman & payback 14202/head
Morris Jobke [Tue, 12 Feb 2019 14:01:49 +0000 (15:01 +0100)]
Update CRL to contain revoked files_external_dropbox, passman & payback

* see https://github.com/nextcloud/app-certificate-requests/pull/221
* see https://github.com/nextcloud/app-certificate-requests/pull/219#issuecomment-463577509

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
5 years agoMerge pull request #14188 from nextcloud/dependabot/npm_and_yarn/build/stable14/handl...
Roeland Jago Douma [Thu, 14 Feb 2019 10:47:49 +0000 (11:47 +0100)]
Merge pull request #14188 from nextcloud/dependabot/npm_and_yarn/build/stable14/handlebars-4.1.0

[Security] Bump handlebars from 4.0.11 to 4.1.0 in /build

5 years agoFilter out versions and trashbin 14196/head
Roeland Jago Douma [Wed, 13 Feb 2019 20:27:25 +0000 (21:27 +0100)]
Filter out versions and trashbin

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoLoop for the recent search
Roeland Jago Douma [Wed, 13 Feb 2019 20:22:16 +0000 (21:22 +0100)]
Loop for the recent search

Else it might happen that less entries than requested are returned

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years agoWe need to initialize the storage else the jailed path is always null
Roeland Jago Douma [Wed, 13 Feb 2019 20:01:17 +0000 (21:01 +0100)]
We need to initialize the storage else the jailed path is always null

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years ago[Security] Bump handlebars from 4.0.11 to 4.1.0 in /build 14188/head
dependabot[bot] [Thu, 14 Feb 2019 04:42:33 +0000 (04:42 +0000)]
[Security] Bump handlebars from 4.0.11 to 4.1.0 in /build

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.11 to 4.1.0. **This update includes security fixes.**
- [Release notes](https://github.com/wycats/handlebars.js/releases)
- [Changelog](https://github.com/wycats/handlebars.js/blob/v4.1.0/release-notes.md)
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.11...v4.1.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 14 Feb 2019 01:12:47 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 13 Feb 2019 01:12:35 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14152 from nextcloud/backport/14149/stable14
Roeland Jago Douma [Tue, 12 Feb 2019 08:46:21 +0000 (09:46 +0100)]
Merge pull request #14152 from nextcloud/backport/14149/stable14

[stable14] Fix the thorrtler whitelist bitmask

5 years agoFix the thorrtler whitelist bitmask 14152/head
Roeland Jago Douma [Mon, 11 Feb 2019 22:22:20 +0000 (23:22 +0100)]
Fix the thorrtler whitelist bitmask

Before we actually didn't check each bit of the bitmask. Now we do.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
5 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 12 Feb 2019 01:12:47 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 11 Feb 2019 01:12:40 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 10 Feb 2019 01:13:48 +0000 (01:13 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 9 Feb 2019 01:12:58 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 8 Feb 2019 01:12:58 +0000 (01:12 +0000)]
[tx-robot] updated from transifex

5 years agoMerge pull request #14096 from nextcloud/dependabot/npm_and_yarn/apps/updatenotificat...
Roeland Jago Douma [Thu, 7 Feb 2019 21:37:39 +0000 (22:37 +0100)]
Merge pull request #14096 from nextcloud/dependabot/npm_and_yarn/apps/updatenotification/stable14/lodash-4.17.11

[Security] Bump lodash from 4.17.10 to 4.17.11 in /apps/updatenotification

5 years agoMerge pull request #14092 from nextcloud/dependabot/npm_and_yarn/apps/oauth2/stable14...
Roeland Jago Douma [Thu, 7 Feb 2019 21:36:09 +0000 (22:36 +0100)]
Merge pull request #14092 from nextcloud/dependabot/npm_and_yarn/apps/oauth2/stable14/lodash-4.17.11

[Security] Bump lodash from 4.17.10 to 4.17.11 in /apps/oauth2

5 years agoMerge pull request #14090 from nextcloud/dependabot/npm_and_yarn/apps/accessibility...
Roeland Jago Douma [Thu, 7 Feb 2019 20:51:21 +0000 (21:51 +0100)]
Merge pull request #14090 from nextcloud/dependabot/npm_and_yarn/apps/accessibility/stable14/lodash-4.17.11

[Security] Bump lodash from 4.17.10 to 4.17.11 in /apps/accessibility

5 years agoMerge pull request #14091 from nextcloud/dependabot/npm_and_yarn/build/stable14/lodas...
Roeland Jago Douma [Thu, 7 Feb 2019 20:25:40 +0000 (21:25 +0100)]
Merge pull request #14091 from nextcloud/dependabot/npm_and_yarn/build/stable14/lodash-4.17.11

[Security] Bump lodash from 4.17.10 to 4.17.11 in /build

5 years ago[Security] Bump lodash in /apps/updatenotification 14096/head
dependabot[bot] [Thu, 7 Feb 2019 19:13:28 +0000 (19:13 +0000)]
[Security] Bump lodash in /apps/updatenotification

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.11. **This update includes security fixes.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Changelog](https://github.com/lodash/lodash/blob/master/CHANGELOG)
- [Commits](https://github.com/lodash/lodash/compare/4.17.10...4.17.11)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>