Skip to content

Commit 504e187

Browse files
authored
Merge pull request #37032 from nextcloud/dependabot/npm_and_yarn/query-string-8.1.0
chore(deps): Bump query-string from 7.1.1 to 8.1.0
2 parents 6ce3c54 + 02d0a0e commit 504e187

9 files changed

Lines changed: 53 additions & 62 deletions

File tree

apps/files/src/router/router.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import Vue from 'vue'
2323
import Router from 'vue-router'
2424
import { generateUrl } from '@nextcloud/router'
25-
import { stringify } from 'query-string'
25+
import queryString from 'query-string'
2626

2727
Vue.use(Router)
2828

@@ -49,7 +49,7 @@ const router = new Router({
4949

5050
// Custom stringifyQuery to prevent encoding of slashes in the url
5151
stringifyQuery(query) {
52-
const result = stringify(query).replace(/%2F/gmi, '/')
52+
const result = queryString.stringify(query).replace(/%2F/gmi, '/')
5353
return result ? ('?' + result) : ''
5454
},
5555
})

dist/core-common.js

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/core-common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core-login.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core-login.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 41 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"p-queue": "^7.3.0",
9090
"path": "^0.12.7",
9191
"pinia": "^2.0.30",
92-
"query-string": "^7.1.1",
92+
"query-string": "^8.1.0",
9393
"regenerator-runtime": "^0.13.9",
9494
"select2": "3.5.1",
9595
"snap.js": "^2.0.9",

0 commit comments

Comments
 (0)