Skip to content

Commit bb11141

Browse files
authored
Merge pull request #1552 from nextcloud-libraries/chore/prepare-1.8.0
chore: Prepare v1.8.0 release
2 parents a9b7dfd + e069b81 commit bb11141

File tree

3 files changed

+68
-54
lines changed

3 files changed

+68
-54
lines changed

CHANGELOG.md

+18-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,28 @@
44
-->
55
# Changelog
66

7+
## [v1.8.0](https://github.com/nextcloud-libraries/nextcloud-upload/tree/v1.8.0) \(2025-01-20\)
8+
9+
### Added
10+
* feat: add upload menu shortcuts [\#1529](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1529) \([skjnldsv](https://github.com/skjnldsv)\)
11+
12+
### Fixed
13+
* fix(NodesPicker): Use preview fit cover [\#1548](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1548) \([provokateurin](https://github.com/provokateurin)\)
14+
15+
### Changed
16+
* Updated translations
17+
* Updated development dependencies
18+
* chore(deps): bump nanoid to 3.3.8 [\#1523](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1523)
19+
* chore(deps): bump @nextcloud/files to 3.10.1 [\#1527](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1527)
20+
721
## [v1.7.1](https://github.com/nextcloud-libraries/nextcloud-upload/tree/v1.7.1) \(2024-12-10\)
822
### Fixed
9-
* fix(uploader): only monitor the queue being idle when we know we are finishing the upload by @skjnldsv in https://github.com/nextcloud-libraries/nextcloud-upload/pull/1521
23+
* fix(uploader): only monitor the queue being idle when we know we are finishing the upload [\#1521](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1521) \([skjnldsv](https://github.com/skjnldsv)\)
1024

1125
### Changed
12-
* chore(deps): Bump @nextcloud/files from 3.9.1 to 3.10.0 by @dependabot
13-
* chore(deps): Bump @nextcloud/sharing from 0.2.3 to 0.2.4 by @dependabot
14-
* chore(deps): Bump axios from 1.7.7 to 1.7.9 by @dependabot
26+
* chore(deps): Bump @nextcloud/files to 3.10.0
27+
* chore(deps): Bump @nextcloud/sharing to 0.2.4
28+
* chore(deps): Bump axios to 1.7.9
1529
* Translations updates
1630

1731
**Full Changelog**: https://github.com/nextcloud-libraries/nextcloud-upload/compare/v1.7.0...v1.7.1

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+48-48
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,70 @@
11
{
22
"name": "@nextcloud/upload",
3-
"version": "1.7.1",
3+
"version": "1.8.0",
44
"description": "Nextcloud file upload client",
5+
"keywords": [
6+
"nextcloud",
7+
"webdav",
8+
"client",
9+
"upload",
10+
"chunk"
11+
],
12+
"homepage": "https://github.com/nextcloud-libraries/nextcloud-upload",
13+
"bugs": {
14+
"url": "https://github.com/nextcloud-libraries/nextcloud-upload/issues"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/nextcloud-libraries/nextcloud-upload.git"
19+
},
20+
"license": "AGPL-3.0-or-later",
21+
"author": "Nextcloud GmbH and Nextcloud contributors",
522
"type": "module",
6-
"main": "dist/index.cjs",
7-
"module": "dist/index.js",
8-
"types": "dist/index.d.ts",
923
"exports": {
1024
".": {
1125
"types": "./dist/index.d.ts",
1226
"import": "./dist/index.mjs",
1327
"require": "./dist/index.cjs"
1428
}
1529
},
30+
"main": "dist/index.cjs",
31+
"module": "dist/index.js",
32+
"types": "dist/index.d.ts",
1633
"files": [
1734
"dist"
1835
],
19-
"author": "John Molakvoæ <[email protected]>",
20-
"license": "AGPL-3.0-or-later",
21-
"keywords": [
22-
"nextcloud",
23-
"webdav",
24-
"client",
25-
"upload",
26-
"chunk"
27-
],
2836
"scripts": {
2937
"build": "vite --mode production build",
30-
"dev": "vite --mode development build",
31-
"watch": "vite --mode development build --watch",
3238
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
33-
"lint": "eslint --ext .js,.vue .",
34-
"lint:fix": "eslint --ext .js,.vue --fix .",
3539
"cypress": "cypress run --component",
3640
"cypress:gui": "cypress open --component",
41+
"dev": "vite --mode development build",
42+
"l10n:extract": "node build/extract-l10n.js",
43+
"lint": "eslint --ext .js,.vue .",
44+
"lint:fix": "eslint --ext .js,.vue --fix .",
3745
"test": "vitest run",
38-
"test:watch": "vitest watch",
3946
"test:coverage": "vitest run --coverage",
40-
"l10n:extract": "node build/extract-l10n.js"
41-
},
42-
"repository": {
43-
"type": "git",
44-
"url": "https://github.com/skjnldsv/nextcloud-upload.git"
45-
},
46-
"bugs": {
47-
"url": "https://github.com/skjnldsv/nextcloud-upload/issues"
47+
"test:watch": "vitest watch",
48+
"watch": "vite --mode development build --watch"
4849
},
49-
"engines": {
50-
"node": "^20.0.0",
51-
"npm": "^10.0.0"
50+
"dependencies": {
51+
"@nextcloud/auth": "^2.4.0",
52+
"@nextcloud/axios": "^2.5.1",
53+
"@nextcloud/capabilities": "^1.2.0",
54+
"@nextcloud/dialogs": "^6.0.1",
55+
"@nextcloud/files": "^3.10.1",
56+
"@nextcloud/l10n": "^3.1.0",
57+
"@nextcloud/logger": "^3.0.2",
58+
"@nextcloud/paths": "^2.2.1",
59+
"@nextcloud/router": "^3.0.0",
60+
"@nextcloud/sharing": "^0.2.4",
61+
"axios": "^1.7.9",
62+
"axios-retry": "^4.5.0",
63+
"crypto-browserify": "^3.12.1",
64+
"p-cancelable": "^4.0.1",
65+
"p-queue": "^8.0.0",
66+
"simple-eta": "^3.0.2"
5267
},
53-
"homepage": "https://github.com/skjnldsv/nextcloud-upload",
5468
"devDependencies": {
5569
"@codecov/vite-plugin": "^1.8.0",
5670
"@cypress/vue2": "^2.1.1",
@@ -73,26 +87,12 @@
7387
"vue-material-design-icons": "^5.3.1",
7488
"webdav": "^5.7.1"
7589
},
76-
"dependencies": {
77-
"@nextcloud/auth": "^2.4.0",
78-
"@nextcloud/axios": "^2.5.1",
79-
"@nextcloud/capabilities": "^1.2.0",
80-
"@nextcloud/dialogs": "^6.0.1",
81-
"@nextcloud/files": "^3.10.1",
82-
"@nextcloud/l10n": "^3.1.0",
83-
"@nextcloud/logger": "^3.0.2",
84-
"@nextcloud/paths": "^2.2.1",
85-
"@nextcloud/router": "^3.0.0",
86-
"@nextcloud/sharing": "^0.2.4",
87-
"axios": "^1.7.9",
88-
"axios-retry": "^4.5.0",
89-
"crypto-browserify": "^3.12.1",
90-
"p-cancelable": "^4.0.1",
91-
"p-queue": "^8.0.0",
92-
"simple-eta": "^3.0.2"
93-
},
9490
"peerDependencies": {
9591
"@nextcloud/vue": "^8.0.0-beta || ^8.0.0",
9692
"vue": "^2.7.16"
93+
},
94+
"engines": {
95+
"node": "^20.0.0",
96+
"npm": "^10.0.0"
9797
}
9898
}

0 commit comments

Comments
 (0)