Skip to content

Releases: VirtusLab-Open-Source/strapi-plugin-comments

v2.0.0 - Public Beta #2

06 Jan 18:00
Compare
Choose a tag to compare
Pre-release

Fixes

  • fix default GET operation for client Public API

v2.0.0 - Public Beta #1

05 Jan 14:27
Compare
Choose a tag to compare
Pre-release

❗ ❗ This is a first beta release of a plugin for Strapi v4. Do not use it on production ❗ ❗

After a while of development we're delighted to present you the first beta release of Comments Plugin which is complete re-write for v4.

Already delivered:

  • Listing comments
  • Discussion discovery
  • Abuse reports flow
  • Public API

To be done:

  • Advanced filtering by relations and statuses
  • GraphQL support
  • Database migrations for v3 -> v4
  • Updates page - which is going to serve the most recent events happen
  • Reports page - which is going to be dedicated for a special new role which might only review the reports
  • Settings page - which will allow to change settings on the UI rather than via config file

v1.0.4

14 Nov 16:30
Compare
Choose a tag to compare

Features

  • Add pre-moderation option (issue #45)
  • Email notifications for moderators (issue #6)

Refactor

  • change config file name (pr #87)

Fixes

  • GraphQL findAll pagination not working (issue #81)
  • Server can not start after installing plugin - incompatibility with strapi-plugin-graphql (issue #72)

v1.0.2

08 Sep 07:18
Compare
Choose a tag to compare

Official non-beta release for v1.0.2-beta.1.

Features

  • GQL support provided #54

v1.0.2 - Public Beta #1

20 Jul 13:01
Compare
Choose a tag to compare
Pre-release

Features

  • GQL support provided #54

v1.0.1

26 Apr 06:31
84ba281
Compare
Choose a tag to compare

Compatibility with Strapi 3.6.x

Fixes

  • provides compatibility changed plugins actions register flow #49

v1.0.1 - Public Beta #7

13 Apr 06:50
Compare
Choose a tag to compare
Pre-release

Features

  • filtering panel introduced for comments
  • possibility to filter by relation type and exact entity
  • support for filters query parameters

Fixes

  • multiple mongoDB compat issues fixes
  • threadOf property fix #40

v1.0.1 - Public Beta #6

14 Jan 20:29
Compare
Choose a tag to compare
Pre-release

Fixes

  • Based on comment in #25, filters & query are now applied only to the root level of comments.

v1.0.1-beta.4

11 Jan 10:07
753dc0c
Compare
Choose a tag to compare
v1.0.1-beta.4 Pre-release
Pre-release

Feature

  • introduce query parameters support ( #25 #29 )
  • introduce email validation for non-strapi users ( #29 )

Fixes

  • fix the 500 error while fetching comments in version v1.0.1-beta.3

Migration

Those developers who has been overwriting / extending the logic a service methods need to migrate their usage of:

await strapi.plugins.comments.services.comments.findAllInHierarchy(relation, null, true)

to

await strapi.plugins.comments.services.comments.findAllInHierarchy(relation, query, null, true)

because of introduced support for query parameters

v1.0.1 - Public Beta #3

11 Jan 07:55
f1fad77
Compare
Choose a tag to compare
Pre-release

Features

  • support for bad word filtering customization in the config file