diff --git a/CHANGELOG.md b/CHANGELOG.md
index b17cb5187..c31565180 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.
+## 1.8.6
+
+### Fixed
+
+- Prevent tag itself being edit button if user lacks permissions [#4767](https://github.com/nextcloud/deck/pull/4767)
+- Fix(occ): set user id for permission sevice from board service [#4815](https://github.com/nextcloud/deck/pull/4815)
+- fix(notification): Prevent null in parameters [#4911](https://github.com/nextcloud/deck/pull/4911)
+- fix: Allow dynamic autoloading for classes added during upgrade [#4806](https://github.com/nextcloud/deck/pull/4806)
+- Ensure `$boardId` is an integer [#4775](https://github.com/nextcloud/deck/pull/4775)
+- fix: crash when leaving out system parameter [#4833](https://github.com/nextcloud/deck/pull/4833)
+- Fix CI @juliushaertl [#4912](https://github.com/nextcloud/deck/pull/4912)
+- fix: Split query to fetch board ids to avoid slow query join @juliushaertl [#4963](https://github.com/nextcloud/deck/pull/4963)
+- Dependency updates
+
## 1.8.5
### Fixed
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 657ef545f..0e4dafcf5 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -16,7 +16,7 @@
- 🚀 Get your project organized
- 1.8.5
+ 1.8.6
agpl
Julius Härtl
Deck
diff --git a/package.json b/package.json
index e04ec7616..341a97a8c 100644
--- a/package.json
+++ b/package.json
@@ -1,106 +1,106 @@
{
- "name": "deck",
- "description": "",
- "version": "1.8.5",
- "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",
- "stylelint": "stylelint src",
- "stylelint:fix": "stylelint src --fix",
- "test": "jest",
- "test:coverage": "jest --coverage"
- },
- "dependencies": {
- "@babel/polyfill": "^7.12.1",
- "@babel/runtime": "^7.19.0",
- "@juliushaertl/vue-richtext": "^1.0.1",
- "@nextcloud/auth": "^2.0.0",
- "@nextcloud/axios": "^2.0.0",
- "@nextcloud/dialogs": "^3.2.0",
- "@nextcloud/event-bus": "^3.0.2",
- "@nextcloud/files": "^2.1.0",
- "@nextcloud/initial-state": "^2.0.0",
- "@nextcloud/l10n": "^1.6.0",
- "@nextcloud/moment": "^1.2.1",
- "@nextcloud/router": "^2.0.0",
- "@nextcloud/vue": "^7.3.0",
- "@nextcloud/vue-dashboard": "^2.0.1",
- "@nextcloud/vue-richtext": "^2.0.1",
- "blueimp-md5": "^2.19.0",
- "dompurify": "^2.4.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.10.0",
- "p-queue": "^7.3.0",
- "url-search-params-polyfill": "^8.1.1",
- "vue": "^2.7.9",
- "vue-at": "^2.5.0",
- "vue-click-outside": "^1.1.0",
- "vue-easymde": "^2.0.0",
- "vue-infinite-loading": "^2.4.5",
- "vue-material-design-icons": "^5.1.2",
- "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/eslint-config": "^8.0.0",
- "@nextcloud/stylelint-config": "^2.2.0",
- "@nextcloud/webpack-vue-config": "^5.3.0",
- "@relative-ci/agent": "^4.1.0",
- "@vue/test-utils": "^1.3.0",
- "cypress": "^10.8.0",
- "eslint-webpack-plugin": "^3.2.0",
- "jest": "^29.0.1",
- "jest-serializer-vue": "^2.0.2",
- "stylelint-webpack-plugin": "^3.3.0",
- "vue-jest": "^3.0.7",
- "vue-template-compiler": "^2.7.9"
- },
- "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.8.6",
+ "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",
+ "stylelint": "stylelint src",
+ "stylelint:fix": "stylelint src --fix",
+ "test": "jest",
+ "test:coverage": "jest --coverage"
+ },
+ "dependencies": {
+ "@babel/polyfill": "^7.12.1",
+ "@babel/runtime": "^7.19.0",
+ "@juliushaertl/vue-richtext": "^1.0.1",
+ "@nextcloud/auth": "^2.0.0",
+ "@nextcloud/axios": "^2.0.0",
+ "@nextcloud/dialogs": "^3.2.0",
+ "@nextcloud/event-bus": "^3.0.2",
+ "@nextcloud/files": "^2.1.0",
+ "@nextcloud/initial-state": "^2.0.0",
+ "@nextcloud/l10n": "^1.6.0",
+ "@nextcloud/moment": "^1.2.1",
+ "@nextcloud/router": "^2.0.0",
+ "@nextcloud/vue": "^7.3.0",
+ "@nextcloud/vue-dashboard": "^2.0.1",
+ "@nextcloud/vue-richtext": "^2.0.1",
+ "blueimp-md5": "^2.19.0",
+ "dompurify": "^2.4.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.10.0",
+ "p-queue": "^7.3.0",
+ "url-search-params-polyfill": "^8.1.1",
+ "vue": "^2.7.9",
+ "vue-at": "^2.5.0",
+ "vue-click-outside": "^1.1.0",
+ "vue-easymde": "^2.0.0",
+ "vue-infinite-loading": "^2.4.5",
+ "vue-material-design-icons": "^5.1.2",
+ "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/eslint-config": "^8.0.0",
+ "@nextcloud/stylelint-config": "^2.2.0",
+ "@nextcloud/webpack-vue-config": "^5.3.0",
+ "@relative-ci/agent": "^4.1.0",
+ "@vue/test-utils": "^1.3.0",
+ "cypress": "^10.8.0",
+ "eslint-webpack-plugin": "^3.2.0",
+ "jest": "^29.0.1",
+ "jest-serializer-vue": "^2.0.2",
+ "stylelint-webpack-plugin": "^3.3.0",
+ "vue-jest": "^3.0.7",
+ "vue-template-compiler": "^2.7.9"
+ },
+ "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