Merge pull request #789 from nextcloud/release/5.0.6

Bump version to 5.0.6
This commit is contained in:
Julius Härtl 2020-03-16 19:18:04 +01:00 committed by GitHub
commit 9606dbd0f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1202 additions and 1433 deletions

View file

@ -1,3 +1,8 @@
## 5.0.6
- Fix sharing files from groupfolders trough ocs api
- Bump dependencies
## 5.0.5
- Search for users by display name

View file

@ -8,7 +8,7 @@ sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
webpack=node_modules/.bin/webpack
version+=5.0.5
version+=5.0.6
jssources=$(wildcard js/*) $(wildcard js/*/*) $(wildcard css/*/*) $(wildcard css/*)
othersources=$(wildcard appinfo/*) $(wildcard css/*/*) $(wildcard controller/*/*) $(wildcard templates/*/*) $(wildcard log/*/*)

View file

@ -10,7 +10,7 @@ Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.
Note: encrypting the contents of group folders is currently not supported.]]></description>
<version>5.0.5</version>
<version>5.0.6</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>GroupFolders</namespace>

2581
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -4,16 +4,16 @@
"build": "webpack --colors --display-error-details --config webpack.prod.config.js"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-arrow-functions": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/bootstrap": "^4.3.1",
"@types/jquery": "^3.3.31",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack": "^4.41.0",
"@types/webpack-env": "^1.14.1",
"@types/jquery": "^3.3.33",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/webpack": "^4.41.7",
"@types/webpack-env": "^1.15.1",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
@ -21,9 +21,9 @@
"babel-polyfill": "^6.26.0",
"browserslist-config-nextcloud": "0.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"eslint-plugin-react": "^7.17.0",
"less": "^3.10.3",
"css-loader": "^3.4.2",
"eslint-plugin-react": "^7.19.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.2",
@ -31,26 +31,25 @@
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"react-hot-loader": "4.12.12",
"style-loader": "^1.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"typescript": "^3.8.3",
"url-loader": "^2.3.0",
"vue-loader": "^15.8.3",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"less": "^3.10.3",
"less-loader": "^5.0.0",
"nextcloud-server": "^0.15.10",
"nextcloud-vue": "^0.12.8",
"nextcloud-vue": "^0.12.11",
"oc-react-components": "^0.2.0",
"react": "^16.9.0",
"react-dom": "^16.12.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-flip-move": "^3.0.4",
"react-select": "^3.0.4",
"react-select": "^3.0.8",
"vue": "^2.6.11",
"whatwg-fetch": "^3.0.0"
}