Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update accounts, idp, settings JS dependencies #2420

Merged
merged 1 commit into from
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"acceptance-tests": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require ${TEST_INFRA_DIRECTORY}/acceptance/setup.js --require ui/tests/acceptance/stepDefinitions --require ${TEST_INFRA_DIRECTORY}/acceptance/stepDefinitions --format node_modules/cucumber-pretty -t \"${TEST_TAGS:-not @skip and not @skipOnOC10}\""
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
Expand All @@ -35,7 +35,7 @@
"@rollup/plugin-replace": "^2.3.0",
"archiver": "^5.3.0",
"axios": "^0.21.1",
"core-js": "3",
"core-js": "^3.16.1",
"cross-env": "^7.0.3",
"cucumber": "^6.0.5",
"cucumber-pretty": ">=6.0.0",
Expand All @@ -51,8 +51,8 @@
"fs-extra": "^9.0.1",
"join-path": "^1.1.1",
"ldapjs": "^2.2.3",
"nightwatch": "^1.6.0",
"nightwatch-api": "^3.0.1",
"nightwatch": "1.5.1",
"nightwatch-api": "3.0.1",
"nightwatch-vrt": "^0.2.10",
"node-fetch": "^2.6.1",
"qs": "^6.10.1",
Expand All @@ -76,7 +76,7 @@
"not dead"
],
"peerDependencies": {
"owncloud-design-system": "^7.4.2"
"owncloud-design-system": "^9.3.0"
},
"dependencies": {
"validator": "^13.1.1"
Expand Down
35 changes: 3 additions & 32 deletions accounts/pkg/assets/embed.go

Large diffs are not rendered by default.

566 changes: 416 additions & 150 deletions accounts/yarn.lock

Large diffs are not rendered by default.

238 changes: 119 additions & 119 deletions idp/pkg/assets/embed.go

Large diffs are not rendered by default.

3,167 changes: 1,676 additions & 1,491 deletions idp/yarn.lock

Large diffs are not rendered by default.

21 changes: 9 additions & 12 deletions settings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,18 @@
"easygettext": "^2.7.0",
"eslint": "7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.8.0",
"fs-extra": "^9.0.1",
"fs-extra": "^10.0.0",
"join-path": "^1.1.1",
"ldap": "^0.7.1",
"nightwatch": "^1.6.0",
"nightwatch-api": "^3.0.1",
"ldapjs": "^2.2.4",
"lodash-es": "^4.17.21",
"nightwatch": "1.5.1",
"nightwatch-api": "3.0.1",
"nightwatch-vrt": "^0.2.10",
"node-fetch": "^2.6.1",
"qs": "^6.10.1",
"rimraf": "^3.0.0",
Expand All @@ -67,19 +69,14 @@
"swagger-vue-generator": "^1.0.6",
"url-search-params-polyfill": "^8.1.1",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.2.0",
"xml-js": "^1.6.11"
},
"browserslist": [
"> 1%",
"not dead"
],
"peerDependencies": {
"owncloud-design-system": "^7.4.2"
},
"dependencies": {
"ldapjs": "^2.2.4",
"lodash": "^4.17.15",
"nightwatch-vrt": "^0.2.10",
"vuex": "^3.2.0"
"owncloud-design-system": "^9.3.0"
}
}
35 changes: 3 additions & 32 deletions settings/pkg/assets/embed.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion settings/ui/components/SettingsBundle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</template>

<script>
import assign from 'lodash/assign'
import assign from 'lodash-es/assign'
import { mapGetters, mapActions } from 'vuex'
import SettingBoolean from './settings/SettingBoolean.vue'
import SettingMultiChoice from './settings/SettingMultiChoice.vue'
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/components/settings/SettingBoolean.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</template>

<script>
import isNil from 'lodash/isNil'
import isNil from 'lodash-es/isNil'
export default {
name: 'SettingBoolean',
props: {
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/components/settings/SettingMultiChoice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</template>

<script>
import isNil from 'lodash/isNil'
import isNil from 'lodash-es/isNil'
export default {
name: 'SettingMultiChoice',
props: {
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/components/settings/SettingNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</template>

<script>
import isNil from 'lodash/isNil'
import isNil from 'lodash-es/isNil'
export default {
name: 'SettingNumber',
props: {
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/components/settings/SettingSingleChoice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</template>

<script>
import isNil from 'lodash/isNil'
import isNil from 'lodash-es/isNil'
export default {
name: 'SettingSingleChoice',
props: {
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/components/settings/SettingString.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</template>

<script>
import isNil from 'lodash/isNil'
import isNil from 'lodash-es/isNil'
export default {
name: 'SettingString',
props: {
Expand Down
2 changes: 1 addition & 1 deletion settings/ui/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ValueService_SaveValue
} from '../client/settings'
import axios from 'axios'
import keyBy from 'lodash/keyBy'
import keyBy from 'lodash-es/keyBy'

const state = {
config: null,
Expand Down
Loading