Skip to content

Commit

Permalink
chore(release): 2.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.0.0](v1.13.2...v2.0.0) (2024-03-04)

* Code and compatibility improvements (#66) ([51e4ccf](51e4ccf)), closes [#66](#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
  • Loading branch information
semantic-release-bot committed Mar 4, 2024
1 parent 51e4ccf commit 346a3df
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 4 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -15,7 +15,9 @@
"psr-4": {
"mauricerenck\\Komments\\": "utils/"
},
"classmap": ["utils"]
"classmap": [
"utils"
]
},
"require-dev": {
"getkirby/cms": "^4",
Expand All @@ -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"
]
}
}
}

0 comments on commit 346a3df

Please sign in to comment.