acsfer
dae769d082
Update Tests
2021-10-22 12:16:11 +02:00
acsfer
11169c86f8
Tests update
2021-08-15 12:23:29 +02:00
acsfer
9324a74bba
Handle files with is_file instead of file_exists
...
Should fix things like `fread(): read of 8192 bytes failed with errno=21 Is a directory`
2021-08-15 11:55:00 +02:00
dependabot[bot]
cf895e1430
Merge pull request #28427 from nextcloud/dependabot/npm_and_yarn/jsdom-17.0.0
2021-08-15 09:27:30 +00:00
John Molakvoæ
d24929b98a
Merge pull request #28420 from nextcloud/fix/composer-2-missing-files
...
Add missing files for Composer v2
2021-08-15 10:25:46 +02:00
dependabot[bot]
106f27c026
Bump jsdom from 16.7.0 to 17.0.0
...
Bumps [jsdom](https://github.com/jsdom/jsdom ) from 16.7.0 to 17.0.0.
- [Release notes](https://github.com/jsdom/jsdom/releases )
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md )
- [Commits](https://github.com/jsdom/jsdom/compare/16.7.0...17.0.0 )
---
updated-dependencies:
- dependency-name: jsdom
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-15 08:20:08 +00:00
Nextcloud bot
cf85a4dc73
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-15 02:26:04 +00:00
dependabot[bot]
32be036cd6
Merge pull request #28424 from nextcloud/dependabot/npm_and_yarn/dompurify-2.3.1
2021-08-15 00:46:34 +00:00
nextcloud-command
6f894b24b9
Compile assets
...
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-08-15 00:00:44 +00:00
John Molakvoæ
fd1296856b
Merge pull request #24185 from nextcloud/bugfix/noid/external-s3-delete-folder
2021-08-14 09:28:16 +02:00
Nextcloud bot
b61bb729c2
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-14 02:26:43 +00:00
dependabot[bot]
9716b13dc6
Bump dompurify from 2.3.0 to 2.3.1
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 2.3.0 to 2.3.1.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/2.3.0...2.3.1 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-14 01:02:03 +00:00
Julius Härtl
bc3c46362a
Make sure that a empty directory can still be deleted when copied from another storage
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-13 16:34:48 +00:00
Julius Härtl
8a14f64ac2
Delete object to cleanup leftover of paths when removing directories
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-13 16:34:48 +00:00
Christoph Wurst
6a50c4a344
Add missing files for Composer v2
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-08-13 15:01:02 +02:00
Richard Steinmetz
fa56c13484
Merge pull request #28062 from nextcloud/fix/27809/smb-acl-users-without-domain
...
Gracefully handle smb acls for users without a domain
2021-08-13 10:38:41 +02:00
Richard Steinmetz
2e53cf4c1f
Gracefully handle smb acls for users without a domain
...
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2021-08-13 09:43:50 +02:00
Nextcloud bot
05ec2faea8
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-13 02:26:37 +00:00
szaimen
26a4d73d85
Merge pull request #28402 from nextcloud/alias-locale-to-moment-supported-locale
...
Alias locales to moment supported locales
2021-08-12 23:27:28 +02:00
Thomas Citharel
092e6be473
Alias locales to moment supported locales
...
Moment doesn't have aliases for every locale and doesn't parse some locale IDs correctly so we need to alias them
Close #27982
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-08-12 20:24:58 +00:00
Nextcloud bot
9603069cc7
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-12 02:27:20 +00:00
Vincent Petry
1daab5751d
Merge pull request #28318 from nextcloud/bugfix/noid/flow-oracle-allow-null-on-name
...
Make "name" column nullable for workflows
2021-08-11 15:52:01 +02:00
Nextcloud bot
283f394c60
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-11 02:26:43 +00:00
szaimen
a6ab0e188d
Merge pull request #28348 from smichel17/patch-1
...
cron: exit 1 on exception
2021-08-10 15:01:52 +02:00
Lukas Reschke
8193a0d1cf
Merge pull request #27923 from nextcloud/remove-flysystem-storage-class
...
Remove Flysystem storage class
2021-08-10 13:18:46 +02:00
Vincent Petry
15a62c5237
Make "name" column nullable in workflow operations
...
The "name" column is now unused and the code is always inserting an
empty string. While this works with most databases, Oracle complains
because an empty string is equivalent to null.
To fix this, the column definition is changed to allow null values now.
Also added some logging in case of database exceptions, because without
this nothing would be logged to detect the above problem.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-08-10 11:19:15 +02:00
John Molakvoæ
7f69a60ab1
Merge pull request #28360 from nextcloud/revert-28351-enh/27553/user-status-plural-singular
...
Revert "Fix Recent statuses plural/singular"
2021-08-10 07:10:56 +02:00
Nextcloud bot
a716c35888
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-10 02:31:43 +00:00
kesselb
224fdc10f4
Revert "Fix Recent statuses plural/singular"
...
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2021-08-09 19:33:25 +02:00
John Molakvoæ
5bd91eac31
Merge pull request #28013 from nextcloud/jitter-appstore-and-updater-server-pinging
2021-08-09 19:30:12 +02:00
John Molakvoæ
67e6468b9e
Merge pull request #28220 from nextcloud/get-by-id-multiple-mounts-single-storage
2021-08-09 19:27:23 +02:00
szaimen
f5604194bc
Merge pull request #28351 from nextcloud/enh/27553/user-status-plural-singular
...
Fix Recent statuses plural/singular
2021-08-09 10:37:15 +02:00
John Molakvoæ
c5c377f3f5
Merge pull request #28352 from nextcloud/enh/18537/fix-concurrent-upload-limit
...
Change the concurrent upload limit to less than 10
2021-08-09 09:56:08 +02:00
Nextcloud bot
410382f765
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-09 02:26:50 +00:00
szaimen
3897b68883
Fix Recent statuses plural/singular
...
Signed-off-by: szaimen <szaimen@e.mail.de>
2021-08-08 21:04:48 +02:00
szaimen
b11741cf58
Change the concurrent upload limit to less than 10
...
Signed-off-by: szaimen <szaimen@e.mail.de>
2021-08-08 20:17:09 +02:00
smichel17
84d3a5f8e6
cron: exit 1 on exception
...
Allows the caller to more easily respond to cron failures.
Signed-off-by: Stephen Michel <git@smichel.me>
2021-08-08 11:59:51 -04:00
Nextcloud bot
27847a9250
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-08 02:21:43 +00:00
dependabot[bot]
c934b48386
Merge pull request #28335 from nextcloud/dependabot/npm_and_yarn/sass-1.37.5
2021-08-07 04:39:35 +00:00
dependabot[bot]
bb62299c1f
Merge pull request #28337 from nextcloud/dependabot/npm_and_yarn/testing-library/vue-5.8.2
2021-08-07 03:20:00 +00:00
dependabot[bot]
5b4aff3eee
Bump sass from 1.37.0 to 1.37.5
...
Bumps [sass](https://github.com/sass/dart-sass ) from 1.37.0 to 1.37.5.
- [Release notes](https://github.com/sass/dart-sass/releases )
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md )
- [Commits](https://github.com/sass/dart-sass/compare/1.37.0...1.37.5 )
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-07 02:51:10 +00:00
dependabot[bot]
ade3996827
Merge pull request #28336 from nextcloud/dependabot/npm_and_yarn/jsdom-16.7.0
2021-08-07 02:49:48 +00:00
dependabot[bot]
feca899808
Merge pull request #28334 from nextcloud/dependabot/npm_and_yarn/vue-loader-15.9.8
2021-08-07 02:39:55 +00:00
Nextcloud bot
c2e7594f97
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-07 02:27:28 +00:00
dependabot[bot]
8c227064f0
Bump @testing-library/vue from 5.8.1 to 5.8.2
...
Bumps [@testing-library/vue](https://github.com/testing-library/vue-testing-library ) from 5.8.1 to 5.8.2.
- [Release notes](https://github.com/testing-library/vue-testing-library/releases )
- [Commits](https://github.com/testing-library/vue-testing-library/compare/v5.8.1...v5.8.2 )
---
updated-dependencies:
- dependency-name: "@testing-library/vue"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-07 01:03:36 +00:00
dependabot[bot]
c92e49da8d
Bump jsdom from 16.6.0 to 16.7.0
...
Bumps [jsdom](https://github.com/jsdom/jsdom ) from 16.6.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases )
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md )
- [Commits](https://github.com/jsdom/jsdom/compare/16.6.0...16.7.0 )
---
updated-dependencies:
- dependency-name: jsdom
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-07 01:03:13 +00:00
dependabot[bot]
b94257e2da
Bump vue-loader from 15.9.7 to 15.9.8
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.9.7 to 15.9.8.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/compare/v15.9.7...v15.9.8 )
---
updated-dependencies:
- dependency-name: vue-loader
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-08-07 01:02:26 +00:00
John Molakvoæ
30d8704bf3
Merge pull request #28331 from nextcloud/feat/workflow-auto-update-command-compile.yml
2021-08-06 10:08:30 +02:00
Nextcloud bot
ed36b8b7f0
Updating command-compile.yml workflow from template
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-06 07:33:28 +00:00
Julius Härtl
75df8182ac
Merge pull request #28330 from nextcloud/clean-all-makefile
...
Update Makefile to clean all apps
2021-08-06 09:08:23 +02:00