Skip to content

0.21.2

Compare
Choose a tag to compare
@rootpd rootpd released this 06 Apr 12:20
· 1159 commits to master since this release
a0e6189

[Beam]

  • Fixed broken aggregaton of pageviews data which didn't correctly aggregate anonymous pageview and timespent counts/sums. remp/remp#869
    • Based on your current data retention setup, it's recommended to reaggregate the data after you release the segments API fix (replace 1000 with the actual number of hours you want to reaggregate):
      for i in {0..1000} ; do php artisan pageviews:aggregate-load --now="$i hours ago" ; done
      for i in {0..1000} ; do php artisan pageviews:aggregate-timespent --now="$i hours ago" ; done
      

[Mailer]

  • Changed MissingConfiguration component to check configurations of all mailers used as sending mailers in newsletter lists besides default mailer. remp/remp#858
  • Fixed Bearer authorization in /api/v1/users/logs and /api/v1/users/logs-count-per-status API calls. remp/remp#865
  • Added support for checkbox in the settings page. remp/crm#1624
  • Fixed Mailer forms - all fields are required and couldn't be changed. remp/remp#837
  • Added UrlParserGenerator requires articles urls to be filled. remp/remp#837
  • Fixed incompatible types warning in ConfigsRepository. remp/remp#874