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

chore: Prepare v1.8.0 release #1552

Merged
merged 1 commit into from
Jan 21, 2025
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
22 changes: 18 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,28 @@
-->
# Changelog

## [v1.8.0](https://github.com/nextcloud-libraries/nextcloud-upload/tree/v1.8.0) \(2025-01-20\)

### Added
* feat: add upload menu shortcuts [\#1529](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1529) \([skjnldsv](https://github.com/skjnldsv)\)

### Fixed
* fix(NodesPicker): Use preview fit cover [\#1548](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1548) \([provokateurin](https://github.com/provokateurin)\)

### Changed
* Updated translations
* Updated development dependencies
* chore(deps): bump nanoid to 3.3.8 [\#1523](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1523)
* chore(deps): bump @nextcloud/files to 3.10.1 [\#1527](https://github.com/nextcloud-libraries/nextcloud-upload/pull/1527)

## [v1.7.1](https://github.com/nextcloud-libraries/nextcloud-upload/tree/v1.7.1) \(2024-12-10\)
### Fixed
* 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
* 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)\)

### Changed
* chore(deps): Bump @nextcloud/files from 3.9.1 to 3.10.0 by @dependabot
* chore(deps): Bump @nextcloud/sharing from 0.2.3 to 0.2.4 by @dependabot
* chore(deps): Bump axios from 1.7.7 to 1.7.9 by @dependabot
* chore(deps): Bump @nextcloud/files to 3.10.0
* chore(deps): Bump @nextcloud/sharing to 0.2.4
* chore(deps): Bump axios to 1.7.9
* Translations updates

**Full Changelog**: https://github.com/nextcloud-libraries/nextcloud-upload/compare/v1.7.0...v1.7.1
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

96 changes: 48 additions & 48 deletions package.json
provokateurin marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,56 +1,70 @@
{
"name": "@nextcloud/upload",
"version": "1.7.1",
"version": "1.8.0",
"description": "Nextcloud file upload client",
"keywords": [
"nextcloud",
"webdav",
"client",
"upload",
"chunk"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-upload",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-upload/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/nextcloud-upload.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "John Molakvoæ <[email protected]>",
"license": "AGPL-3.0-or-later",
"keywords": [
"nextcloud",
"webdav",
"client",
"upload",
"chunk"
],
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue --fix .",
"cypress": "cypress run --component",
"cypress:gui": "cypress open --component",
"dev": "vite --mode development build",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"l10n:extract": "node build/extract-l10n.js"
},
"repository": {
"type": "git",
"url": "https://github.com/skjnldsv/nextcloud-upload.git"
},
"bugs": {
"url": "https://github.com/skjnldsv/nextcloud-upload/issues"
"test:watch": "vitest watch",
"watch": "vite --mode development build --watch"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/files": "^3.10.1",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.0",
"@nextcloud/sharing": "^0.2.4",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"crypto-browserify": "^3.12.1",
"p-cancelable": "^4.0.1",
"p-queue": "^8.0.0",
"simple-eta": "^3.0.2"
},
"homepage": "https://github.com/skjnldsv/nextcloud-upload",
"devDependencies": {
"@codecov/vite-plugin": "^1.7.0",
"@cypress/vue2": "^2.1.1",
Expand All @@ -73,26 +87,12 @@
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.7.1"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/files": "^3.10.1",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.0",
"@nextcloud/sharing": "^0.2.4",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"crypto-browserify": "^3.12.1",
"p-cancelable": "^4.0.1",
"p-queue": "^8.0.0",
"simple-eta": "^3.0.2"
},
"peerDependencies": {
"@nextcloud/vue": "^8.0.0-beta || ^8.0.0",
"vue": "^2.7.16"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}
Loading