From 346a3dfab69c5cc066843c1287a21942d258883c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 4 Mar 2024 11:28:14 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] # [2.0.0](https://github.com/mauricerenck/komments/compare/v1.13.2...v2.0.0) (2024-03-04) * Code and compatibility improvements (#66) ([51e4ccf](https://github.com/mauricerenck/komments/commit/51e4ccf8a09ae8b9454c86c7d4ce1bcb8721947d)), closes [#66](https://github.com/mauricerenck/komments/issues/66) ### BREAKING CHANGES * Komments plugin will not use cookies anymore * improvement: use structures in snippets no more arrays * comments and replies are splitted, strcutures are used now * chore: add deprecation warning * improvement: base utils optimization * feat: added frontend class (wip) * feat: removed unused quote feature BRAKING CHANGE: Quotes are getting removed * improvement: moved kommentsAreExpired to frontend class * feat: multilang page mock * improvement: tests * chore: ignore tilde folder * chore: remove dump * chore: class loader * improvement: refactored classes and tests * improvement: remove needless api calls * fix: better backwards compatibility with Kirby 3 * chore: added translations * fix: show all language comments in panel * improvement: reduced css * CSS has been reduced to a minimum --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ composer.json | 14 ++++++++++---- 2 files changed, 58 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f43d5..1fba039 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,51 @@ +# [2.0.0](https://github.com/mauricerenck/komments/compare/v1.13.2...v2.0.0) (2024-03-04) + + +* Code and compatibility improvements (#66) ([51e4ccf](https://github.com/mauricerenck/komments/commit/51e4ccf8a09ae8b9454c86c7d4ce1bcb8721947d)), closes [#66](https://github.com/mauricerenck/komments/issues/66) + + +### BREAKING CHANGES + +* Komments plugin will not use cookies anymore + +* improvement: use structures in snippets no more arrays +* comments and replies are splitted, strcutures are used now + +* chore: add deprecation warning + +* improvement: base utils optimization + +* feat: added frontend class (wip) + +* feat: removed unused quote feature + +BRAKING CHANGE: Quotes are getting removed + +* improvement: moved kommentsAreExpired to frontend class + +* feat: multilang page mock + +* improvement: tests + +* chore: ignore tilde folder + +* chore: remove dump + +* chore: class loader + +* improvement: refactored classes and tests + +* improvement: remove needless api calls + +* fix: better backwards compatibility with Kirby 3 + +* chore: added translations + +* fix: show all language comments in panel + +* improvement: reduced css +* CSS has been reduced to a minimum + ## [1.13.2](https://github.com/mauricerenck/komments/compare/v1.13.1...v1.13.2) (2024-01-22) diff --git a/composer.json b/composer.json index 3680697..c99602e 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "mauricerenck/komments", - "version": "1.13.2", + "version": "2.0.0", "description": "A comment and webmention plugin for Kirby 3", "homepage": "https://github.com/mauricerenck/komments", "type": "kirby-plugin", @@ -15,7 +15,9 @@ "psr-4": { "mauricerenck\\Komments\\": "utils/" }, - "classmap": ["utils"] + "classmap": [ + "utils" + ] }, "require-dev": { "getkirby/cms": "^4", @@ -41,6 +43,10 @@ "test": "vendor/bin/phpunit --testdox --colors=always", "build-test-package": "git archive HEAD -o komments.zip --worktree-attributes", "build-composer": "composer install --no-dev --optimize-autoloader", - "build-release": ["composer test tests", "composer install --no-dev --optimize-autoloader", "npm run build"] + "build-release": [ + "composer test tests", + "composer install --no-dev --optimize-autoloader", + "npm run build" + ] } -} +} \ No newline at end of file