chore(release): Bump version to 1.9.3

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2023-09-13 14:43:50 +02:00
parent 9243a43082
commit 3a27e94afa
3 changed files with 135 additions and 112 deletions

View File

@@ -1,6 +1,29 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.9.3
### Added
- Import of deck JSON data through occ @juliushaertl [#5004](https://github.com/nextcloud/deck/pull/5004)
### Fixed
- Prevent tag itself being edit button if user lacks permissions [#4766](https://github.com/nextcloud/deck/pull/4766)
- fix: Allow dynamic autoloading for classes added during upgrade [#4805](https://github.com/nextcloud/deck/pull/4805)
- Fix(occ): set user id for permission sevice from board service [#4814](https://github.com/nextcloud/deck/pull/4814)
- fix(notification): Prevent null in parameters [#4910](https://github.com/nextcloud/deck/pull/4910)
- fix: Split query to fetch board ids to avoid slow query join @juliushaertl [#4950](https://github.com/nextcloud/deck/pull/4950)
- fix: export doesn't handle lists with no cards [#5117](https://github.com/nextcloud/deck/pull/5117)
- Ensure `$boardId` is an integer [#4774](https://github.com/nextcloud/deck/pull/4774)
- fix: execute return int for export command [#4812](https://github.com/nextcloud/deck/pull/4812)
- fix: crash when leaving out system parameter [#4832](https://github.com/nextcloud/deck/pull/4832)
- Remove duplicate button [#5044](https://github.com/nextcloud/deck/pull/5044)
### Other
- Dependency updates
## 1.9.2 ## 1.9.2
### Fixed ### Fixed
@@ -519,7 +542,7 @@ Android app team for helping to improve our REST API:
- Fix comment activities on Nextcloud 15 - Fix comment activities on Nextcloud 15
- Fix issues with Edge - Fix issues with Edge
- API: Fix numeric types that were returned as strings - API: Fix numeric types that were returned as strings
- API: Fix If-Modified-Since header parsing - API: Fix If-Modified-Since header parsing
## 0.5.1 - 2018-12-05 ## 0.5.1 - 2018-12-05
@@ -646,7 +669,7 @@ Android app team for helping to improve our REST API:
### Fixed ### Fixed
- Various frontend fixes - Various frontend fixes
- Fix sidebar drag issues - Fix sidebar drag issues
- Improvements for IE11 - Improvements for IE11
- Fix bug when draging a card to an empty stack - Fix bug when draging a card to an empty stack
## 0.2.1 - 2017-07-04 ## 0.2.1 - 2017-07-04
@@ -720,7 +743,7 @@ Android app team for helping to improve our REST API:
### Fixed ### Fixed
- Various styling improvements - Various styling improvements
- Fix problems with MySQL and PostgreSQL - Fix problems with MySQL and PostgreSQL
- Select first color by default when creating boards - Select first color by default when creating boards
- Fix error when changing board permissions - Fix error when changing board permissions
@@ -728,9 +751,9 @@ Android app team for helping to improve our REST API:
### Added ### Added
- Sharing boards with other users - Sharing boards with other users
- Create and manage boards - Create and manage boards
- Sort cards on stacks by drag-and-drop - Sort cards on stacks by drag-and-drop
- Assign labels - Assign labels
- Markdown notes for each card - Markdown notes for each card
- Archive cards - Archive cards

View File

@@ -16,7 +16,7 @@
- 🚀 Get your project organized - 🚀 Get your project organized
</description> </description>
<version>1.9.2</version> <version>1.9.3</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Julius Härtl</author> <author>Julius Härtl</author>
<documentation> <documentation>

View File

@@ -1,108 +1,108 @@
{ {
"name": "deck", "name": "deck",
"description": "", "description": "",
"version": "1.9.2", "version": "1.9.3",
"authors": [ "authors": [
{ {
"name": "Julius Härtl", "name": "Julius Härtl",
"email": "jus@bitgrid.net", "email": "jus@bitgrid.net",
"role": "Developer" "role": "Developer"
}, },
{ {
"name": "Michael Weimann", "name": "Michael Weimann",
"email": "mail@michael-weimann.eu", "email": "mail@michael-weimann.eu",
"role": "Developer" "role": "Developer"
} }
], ],
"license": "agpl", "license": "agpl",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js", "build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js", "dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src", "lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix", "lint:fix": "eslint --ext .js,.vue src --fix",
"lint:cypress": "eslint --ext .js cypress", "lint:cypress": "eslint --ext .js cypress",
"stylelint": "stylelint src", "stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix", "stylelint:fix": "stylelint src --fix",
"test": "jest", "test": "jest",
"test:coverage": "jest --coverage" "test:coverage": "jest --coverage"
}, },
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.12.1", "@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.21.0", "@babel/runtime": "^7.21.0",
"@nextcloud/auth": "^2.0.0", "@nextcloud/auth": "^2.0.0",
"@nextcloud/axios": "^2.3.0", "@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^4.0.1", "@nextcloud/dialogs": "^4.0.1",
"@nextcloud/event-bus": "^3.0.2", "@nextcloud/event-bus": "^3.0.2",
"@nextcloud/files": "^2.1.0", "@nextcloud/files": "^2.1.0",
"@nextcloud/initial-state": "^2.0.0", "@nextcloud/initial-state": "^2.0.0",
"@nextcloud/l10n": "^2.1.0", "@nextcloud/l10n": "^2.1.0",
"@nextcloud/moment": "^1.2.1", "@nextcloud/moment": "^1.2.1",
"@nextcloud/notify_push": "^1.1.3", "@nextcloud/notify_push": "^1.1.3",
"@nextcloud/router": "^2.0.1", "@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^7.8.4", "@nextcloud/vue": "^7.8.4",
"@nextcloud/vue-richtext": "^2.0.4", "@nextcloud/vue-richtext": "^2.0.4",
"blueimp-md5": "^2.19.0", "blueimp-md5": "^2.19.0",
"dompurify": "^3.0.0", "dompurify": "^3.0.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"markdown-it": "^13.0.1", "markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1", "markdown-it-link-attributes": "^4.0.1",
"markdown-it-task-checkbox": "^1.0.6", "markdown-it-task-checkbox": "^1.0.6",
"moment": "^2.29.4", "moment": "^2.29.4",
"nextcloud-vue-collections": "^0.11.0", "nextcloud-vue-collections": "^0.11.0",
"p-queue": "^7.3.4", "p-queue": "^7.3.4",
"url-search-params-polyfill": "^8.1.1", "url-search-params-polyfill": "^8.1.1",
"vue": "^2.7.14", "vue": "^2.7.14",
"vue-at": "^2.5.1", "vue-at": "^2.5.1",
"vue-click-outside": "^1.1.0", "vue-click-outside": "^1.1.0",
"vue-easymde": "^2.0.0", "vue-easymde": "^2.0.0",
"vue-infinite-loading": "^2.4.5", "vue-infinite-loading": "^2.4.5",
"vue-material-design-icons": "^5.2.0", "vue-material-design-icons": "^5.2.0",
"vue-router": "^3.6.5", "vue-router": "^3.6.5",
"vue-smooth-dnd": "^0.8.1", "vue-smooth-dnd": "^0.8.1",
"vuex": "^3.6.2", "vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0" "vuex-router-sync": "^5.0.0"
}, },
"browserslist": [ "browserslist": [
"extends @nextcloud/browserslist-config" "extends @nextcloud/browserslist-config"
], ],
"engines": { "engines": {
"node": "^16.0.0", "node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0" "npm": "^7.0.0 || ^8.0.0"
}, },
"devDependencies": { "devDependencies": {
"@nextcloud/babel-config": "^1.0.0", "@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.3.0", "@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/cypress": "^1.0.0-beta.2", "@nextcloud/cypress": "^1.0.0-beta.2",
"@nextcloud/eslint-config": "^8.2.1", "@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.3.0", "@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.4.0", "@nextcloud/webpack-vue-config": "^5.4.0",
"@relative-ci/agent": "^4.1.3", "@relative-ci/agent": "^4.1.3",
"@vue/test-utils": "^1.3.4", "@vue/test-utils": "^1.3.4",
"@vue/vue2-jest": "^29.2.2", "@vue/vue2-jest": "^29.2.2",
"cypress": "^12.7.0", "cypress": "^12.7.0",
"eslint-plugin-cypress": "^2.12.1", "eslint-plugin-cypress": "^2.12.1",
"eslint-webpack-plugin": "^4.0.0", "eslint-webpack-plugin": "^4.0.0",
"jest": "^29.4.3", "jest": "^29.4.3",
"jest-serializer-vue": "^3.1.0", "jest-serializer-vue": "^3.1.0",
"stylelint-webpack-plugin": "^4.1.0", "stylelint-webpack-plugin": "^4.1.0",
"vue-template-compiler": "^2.7.14" "vue-template-compiler": "^2.7.14"
}, },
"jest": { "jest": {
"moduleFileExtensions": [ "moduleFileExtensions": [
"js", "js",
"vue" "vue"
], ],
"moduleNameMapper": { "moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1" "^@/(.*)$": "<rootDir>/src/$1"
}, },
"transform": { "transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest", "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}, },
"snapshotSerializers": [ "snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue" "<rootDir>/node_modules/jest-serializer-vue"
] ]
} }
} }