diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eaca0ee95..53c176dbcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 8.0.3 + +### Fixed + +- Fix plugin watermark for php 8.1 [#2989](https://github.com/nextcloud/richdocuments/pull/2989) +- fix: Adapt to new NcEmptyContent usage [#2986](https://github.com/nextcloud/richdocuments/pull/2986) +- fix: Catch and skip errors for adjusting the files view when the file is not present in the list [#3013](https://github.com/nextcloud/richdocuments/pull/3013) +- fix: Create empty files from template if available [#3066](https://github.com/nextcloud/richdocuments/pull/3066) +- Accept alternative MIME type for OpenType fonts [#3039](https://github.com/nextcloud/richdocuments/pull/3039) +- fix: Allow dynamic autoloading for classes added during upgrade [#3002](https://github.com/nextcloud/richdocuments/pull/3002) +- Update Writer template (template.odt) for dark mode. [#3004](https://github.com/nextcloud/richdocuments/pull/3004) +- CollaboraOnline#6546 enable automatic color in default paragraph style [#3062](https://github.com/nextcloud/richdocuments/pull/3062) +- Dependency updates + ## 8.0.2 ### Fixed diff --git a/appinfo/info.xml b/appinfo/info.xml index bd342673ea..a6c7fd2638 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -6,7 +6,7 @@ - 8.0.2 + 8.0.3 agpl Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk diff --git a/package.json b/package.json index ca69e9b6d6..d5cfd22c13 100644 --- a/package.json +++ b/package.json @@ -1,85 +1,85 @@ { - "name": "richdocuments", - "description": "Collabora online integration", - "version": "8.0.2", - "authors": [ - { - "name": "Julius Härtl", - "email": "jus@bitgrid.net", - "role": "Developer" - } - ], - "license": "AGPL-3.0-or-later", - "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/**/*.vue src/**/*.scss src/**/*.css css/*.scss", - "stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss --fix", - "test": "NODE_ENV=test jest --passWithNoTests", - "test:coverage": "NODE_ENV=test jest --coverage" - }, - "dependencies": { - "@nextcloud/auth": "^2.0.0", - "@nextcloud/axios": "^2.3.0", - "@nextcloud/capabilities": "^1.0.4", - "@nextcloud/dialogs": "^3.2.0", - "@nextcloud/event-bus": "^3.0.2", - "@nextcloud/initial-state": "^2.0.0", - "@nextcloud/l10n": "^2.0.1", - "@nextcloud/moment": "^1.2.1", - "@nextcloud/router": "^2.0.1", - "@nextcloud/vue": "^7.7.1", - "@nextcloud/vue-richtext": "^2.1.0-beta.6", - "vue": "^2.7.14", - "vue-material-design-icons": "^5.2.0" - }, - "browserslist": [ - "extends @nextcloud/browserslist-config" - ], - "engines": { - "node": "^16.0.0", - "npm": "^7.0.0 || ^8.0.0" - }, - "devDependencies": { - "@cypress/browserify-preprocessor": "^3.0.2", - "@nextcloud/babel-config": "^1.0.0", - "@nextcloud/browserslist-config": "^2.3.0", - "@nextcloud/cypress": "^1.0.0-beta.2", - "@nextcloud/eslint-config": "^8.2.0", - "@nextcloud/stylelint-config": "^2.3.0", - "@nextcloud/webpack-vue-config": "^5.4.0", - "babel-loader-exclude-node-modules-except": "^1.2.1", - "cypress": "^12.7.0", - "eslint-plugin-cypress": "^2.12.1", - "ts-loader": "^9.4.2", - "typescript": "^4.9.5" - }, - "jest": { - "verbose": true, - "testEnvironment": "jest-environment-jsdom-fourteen", - "moduleFileExtensions": [ - "js", - "vue" - ], - "moduleNameMapper": { - "^@/(.*)$": "/src/$1" - }, - "testPathIgnorePatterns": [ - "/src/tests/fixtures/", - "/build" - ], - "transform": { - "^.+\\.js$": "/node_modules/babel-jest", - ".*\\.(vue)$": "/node_modules/vue-jest" - }, - "snapshotSerializers": [ - "/node_modules/jest-serializer-vue" - ], - "globalSetup": "/src/tests/setup.js" - } + "name": "richdocuments", + "description": "Collabora online integration", + "version": "8.0.3", + "authors": [ + { + "name": "Julius Härtl", + "email": "jus@bitgrid.net", + "role": "Developer" + } + ], + "license": "AGPL-3.0-or-later", + "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/**/*.vue src/**/*.scss src/**/*.css css/*.scss", + "stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss --fix", + "test": "NODE_ENV=test jest --passWithNoTests", + "test:coverage": "NODE_ENV=test jest --coverage" + }, + "dependencies": { + "@nextcloud/auth": "^2.0.0", + "@nextcloud/axios": "^2.3.0", + "@nextcloud/capabilities": "^1.0.4", + "@nextcloud/dialogs": "^3.2.0", + "@nextcloud/event-bus": "^3.0.2", + "@nextcloud/initial-state": "^2.0.0", + "@nextcloud/l10n": "^2.0.1", + "@nextcloud/moment": "^1.2.1", + "@nextcloud/router": "^2.0.1", + "@nextcloud/vue": "^7.7.1", + "@nextcloud/vue-richtext": "^2.1.0-beta.6", + "vue": "^2.7.14", + "vue-material-design-icons": "^5.2.0" + }, + "browserslist": [ + "extends @nextcloud/browserslist-config" + ], + "engines": { + "node": "^16.0.0", + "npm": "^7.0.0 || ^8.0.0" + }, + "devDependencies": { + "@cypress/browserify-preprocessor": "^3.0.2", + "@nextcloud/babel-config": "^1.0.0", + "@nextcloud/browserslist-config": "^2.3.0", + "@nextcloud/cypress": "^1.0.0-beta.2", + "@nextcloud/eslint-config": "^8.2.0", + "@nextcloud/stylelint-config": "^2.3.0", + "@nextcloud/webpack-vue-config": "^5.4.0", + "babel-loader-exclude-node-modules-except": "^1.2.1", + "cypress": "^12.7.0", + "eslint-plugin-cypress": "^2.12.1", + "ts-loader": "^9.4.2", + "typescript": "^4.9.5" + }, + "jest": { + "verbose": true, + "testEnvironment": "jest-environment-jsdom-fourteen", + "moduleFileExtensions": [ + "js", + "vue" + ], + "moduleNameMapper": { + "^@/(.*)$": "/src/$1" + }, + "testPathIgnorePatterns": [ + "/src/tests/fixtures/", + "/build" + ], + "transform": { + "^.+\\.js$": "/node_modules/babel-jest", + ".*\\.(vue)$": "/node_modules/vue-jest" + }, + "snapshotSerializers": [ + "/node_modules/jest-serializer-vue" + ], + "globalSetup": "/src/tests/setup.js" + } } \ No newline at end of file