diff --git a/CHANGELOG.md b/CHANGELOG.md index c520602f7..3c0eeed1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.9.0-beta.2 + +### Fixed + +- fix: Avoid mutating the due date when calculating days @juliushaertl [#4488](https://github.com/nextcloud/deck/pull/4488) +- fix: Pass user id along to properly check permissions in background jobs @juliushaertl [#4485](https://github.com/nextcloud/deck/pull/4485) +- fix: Use passed userid when getting attachment folder @juliushaertl [#4487](https://github.com/nextcloud/deck/pull/4487) +- fix: Use proper z-index for text menubar @juliushaertl [#4490](https://github.com/nextcloud/deck/pull/4490) +- fix(dashboard): Fix undefined array index @marcelklehr [#4492](https://github.com/nextcloud/deck/pull/4492) +- fix: Always return sorted index array to make sure a json array is the result @juliushaertl [#4493](https://github.com/nextcloud/deck/pull/4493) +- chore(CI): Adjust testing matrix for Nextcloud 26 on stable26 @nickvergessen [#4498](https://github.com/nextcloud/deck/pull/4498) + ## 1.9.0-beta.1 diff --git a/appinfo/info.xml b/appinfo/info.xml index 00b36abe7..8861c6fca 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -16,7 +16,7 @@ - 🚀 Get your project organized - 1.9.0-beta.1 + 1.9.0-beta.2 agpl Julius Härtl diff --git a/package.json b/package.json index 91886b3cd..11344c357 100644 --- a/package.json +++ b/package.json @@ -1,109 +1,109 @@ { - "name": "deck", - "description": "", - "version": "1.9.0-beta.1", - "authors": [ - { - "name": "Julius Härtl", - "email": "jus@bitgrid.net", - "role": "Developer" - }, - { - "name": "Michael Weimann", - "email": "mail@michael-weimann.eu", - "role": "Developer" - } - ], - "license": "agpl", - "private": true, - "scripts": { - "build": "NODE_ENV=production webpack --progress --config webpack.js", - "dev": "NODE_ENV=development webpack --progress --config webpack.js", - "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", - "lint": "eslint --ext .js,.vue src", - "lint:fix": "eslint --ext .js,.vue src --fix", - "lint:cypress": "eslint --ext .js cypress", - "stylelint": "stylelint src", - "stylelint:fix": "stylelint src --fix", - "test": "jest", - "test:coverage": "jest --coverage" - }, - "dependencies": { - "@babel/polyfill": "^7.12.1", - "@babel/runtime": "^7.21.0", - "@nextcloud/auth": "^2.0.0", - "@nextcloud/axios": "^2.3.0", - "@nextcloud/dialogs": "^4.0.1", - "@nextcloud/event-bus": "^3.0.2", - "@nextcloud/files": "^2.1.0", - "@nextcloud/initial-state": "^2.0.0", - "@nextcloud/l10n": "^2.1.0", - "@nextcloud/moment": "^1.2.1", - "@nextcloud/notify_push": "^1.1.3", - "@nextcloud/router": "^2.0.1", - "@nextcloud/vue": "^7.7.1", - "@nextcloud/vue-dashboard": "^2.0.1", - "@nextcloud/vue-richtext": "^2.0.4", - "blueimp-md5": "^2.19.0", - "dompurify": "^3.0.0", - "lodash": "^4.17.21", - "markdown-it": "^13.0.1", - "markdown-it-link-attributes": "^4.0.1", - "markdown-it-task-checkbox": "^1.0.6", - "moment": "^2.29.4", - "nextcloud-vue-collections": "^0.11.0", - "p-queue": "^7.3.4", - "url-search-params-polyfill": "^8.1.1", - "vue": "^2.7.14", - "vue-at": "^2.5.1", - "vue-click-outside": "^1.1.0", - "vue-easymde": "^2.0.0", - "vue-infinite-loading": "^2.4.5", - "vue-material-design-icons": "^5.2.0", - "vue-router": "^3.6.5", - "vue-smooth-dnd": "^0.8.1", - "vuex": "^3.6.2", - "vuex-router-sync": "^5.0.0" - }, - "browserslist": [ - "extends @nextcloud/browserslist-config" - ], - "engines": { - "node": "^16.0.0", - "npm": "^7.0.0 || ^8.0.0" - }, - "devDependencies": { - "@nextcloud/babel-config": "^1.0.0", - "@nextcloud/browserslist-config": "^2.3.0", - "@nextcloud/cypress": "^1.0.0-beta.2", - "@nextcloud/eslint-config": "^8.2.1", - "@nextcloud/stylelint-config": "^2.3.0", - "@nextcloud/webpack-vue-config": "^5.4.0", - "@relative-ci/agent": "^4.1.3", - "@vue/test-utils": "^1.3.4", - "@vue/vue2-jest": "^29.2.2", - "cypress": "^12.7.0", - "eslint-plugin-cypress": "^2.12.1", - "eslint-webpack-plugin": "^4.0.0", - "jest": "^29.4.3", - "jest-serializer-vue": "^3.1.0", - "stylelint-webpack-plugin": "^4.1.0", - "vue-template-compiler": "^2.7.14" - }, - "jest": { - "moduleFileExtensions": [ - "js", - "vue" - ], - "moduleNameMapper": { - "^@/(.*)$": "/src/$1" - }, - "transform": { - "^.+\\.js$": "/node_modules/babel-jest", - ".*\\.(vue)$": "/node_modules/vue-jest" - }, - "snapshotSerializers": [ - "/node_modules/jest-serializer-vue" - ] - } -} + "name": "deck", + "description": "", + "version": "1.9.0-beta.2", + "authors": [ + { + "name": "Julius Härtl", + "email": "jus@bitgrid.net", + "role": "Developer" + }, + { + "name": "Michael Weimann", + "email": "mail@michael-weimann.eu", + "role": "Developer" + } + ], + "license": "agpl", + "private": true, + "scripts": { + "build": "NODE_ENV=production webpack --progress --config webpack.js", + "dev": "NODE_ENV=development webpack --progress --config webpack.js", + "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", + "lint": "eslint --ext .js,.vue src", + "lint:fix": "eslint --ext .js,.vue src --fix", + "lint:cypress": "eslint --ext .js cypress", + "stylelint": "stylelint src", + "stylelint:fix": "stylelint src --fix", + "test": "jest", + "test:coverage": "jest --coverage" + }, + "dependencies": { + "@babel/polyfill": "^7.12.1", + "@babel/runtime": "^7.21.0", + "@nextcloud/auth": "^2.0.0", + "@nextcloud/axios": "^2.3.0", + "@nextcloud/dialogs": "^4.0.1", + "@nextcloud/event-bus": "^3.0.2", + "@nextcloud/files": "^2.1.0", + "@nextcloud/initial-state": "^2.0.0", + "@nextcloud/l10n": "^2.1.0", + "@nextcloud/moment": "^1.2.1", + "@nextcloud/notify_push": "^1.1.3", + "@nextcloud/router": "^2.0.1", + "@nextcloud/vue": "^7.7.1", + "@nextcloud/vue-dashboard": "^2.0.1", + "@nextcloud/vue-richtext": "^2.0.4", + "blueimp-md5": "^2.19.0", + "dompurify": "^3.0.0", + "lodash": "^4.17.21", + "markdown-it": "^13.0.1", + "markdown-it-link-attributes": "^4.0.1", + "markdown-it-task-checkbox": "^1.0.6", + "moment": "^2.29.4", + "nextcloud-vue-collections": "^0.11.0", + "p-queue": "^7.3.4", + "url-search-params-polyfill": "^8.1.1", + "vue": "^2.7.14", + "vue-at": "^2.5.1", + "vue-click-outside": "^1.1.0", + "vue-easymde": "^2.0.0", + "vue-infinite-loading": "^2.4.5", + "vue-material-design-icons": "^5.2.0", + "vue-router": "^3.6.5", + "vue-smooth-dnd": "^0.8.1", + "vuex": "^3.6.2", + "vuex-router-sync": "^5.0.0" + }, + "browserslist": [ + "extends @nextcloud/browserslist-config" + ], + "engines": { + "node": "^16.0.0", + "npm": "^7.0.0 || ^8.0.0" + }, + "devDependencies": { + "@nextcloud/babel-config": "^1.0.0", + "@nextcloud/browserslist-config": "^2.3.0", + "@nextcloud/cypress": "^1.0.0-beta.2", + "@nextcloud/eslint-config": "^8.2.1", + "@nextcloud/stylelint-config": "^2.3.0", + "@nextcloud/webpack-vue-config": "^5.4.0", + "@relative-ci/agent": "^4.1.3", + "@vue/test-utils": "^1.3.4", + "@vue/vue2-jest": "^29.2.2", + "cypress": "^12.7.0", + "eslint-plugin-cypress": "^2.12.1", + "eslint-webpack-plugin": "^4.0.0", + "jest": "^29.4.3", + "jest-serializer-vue": "^3.1.0", + "stylelint-webpack-plugin": "^4.1.0", + "vue-template-compiler": "^2.7.14" + }, + "jest": { + "moduleFileExtensions": [ + "js", + "vue" + ], + "moduleNameMapper": { + "^@/(.*)$": "/src/$1" + }, + "transform": { + "^.+\\.js$": "/node_modules/babel-jest", + ".*\\.(vue)$": "/node_modules/vue-jest" + }, + "snapshotSerializers": [ + "/node_modules/jest-serializer-vue" + ] + } +} \ No newline at end of file