Skip to content

Releases: monicahq/monica

v3.0.1

02 May 21:12
fbac248
Compare
Choose a tag to compare

In this release we have removed the imagick php library requirement (see #5143)! This will help PHP 8.0 adoption.

Bug Fixes

  • fix deploy on fortrabbit with version number (#5139) (c5394af)
  • fix import job without subscription bypass (#5147) (fbac248)

v3.0.0

30 Apr 12:49
02ba369
Compare
Choose a tag to compare

v3.0.0 is not a major change in Monica, but it contains a breaking change that requires the change of version.

In this release, we finally got rid of the assets that are compiled during the yarn run production process. This includes all the JS, CSS and font files. This also drastically reduces the size of the code in the repository.

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

Features

⚠️ BREAKING CHANGES

  • The assets are no longer embedded in source code: javascript, css, font files. Run yarn install then yarn run production to recreate them from sources, or download a release file that contains compiled files.
  • For Heroku users: You'll have to manually go to Settings > Buildpacks and add buildpack: nodejs. See this doc.
  • See more information about how to install a Monica instance here.

v2.22.1

30 Apr 12:38
570dde1
Compare
Choose a tag to compare
v2.22.1 Pre-release
Pre-release

2.22.1 (2021-04-30)

Code Refactoring

BREAKING CHANGES

  • The assets are no longer embedded in source code: javascript, css, font files. Run yarn install then yarn run production to recreate them from sources, or download a release file that contains compiled files.
  • For Heroku users: You'll have to manually go to Settings > Buildpacks and add buildpack: nodejs. See this doc.
  • See more information about how to install a Monica instance here.

v2.22.0

30 Apr 11:22
1a16bea
Compare
Choose a tag to compare

2.22.0 (2021-04-30)

Bug Fixes

Features

v2.21.0

25 Apr 20:36
7901b24
Compare
Choose a tag to compare

2.21.0 (2021-04-25)

Features

Bug Fixes

  • fix udpate maintenance mode message (#4983) (225e68e)
  • sort and group relationships by relationship type (#4985) (105b74f)

v2.20.0

18 Mar 21:01
6952f41
Compare
Choose a tag to compare

This release is mainly about bug fixes and small improvements, although there are two nice features though:

  • ability to customize the types of life events,
  • the default gender when adding contacts is now "unknown" instead of "man".

Thanks so much to our contributors and translators for their work.

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

This version requires to run migrations.
Please use the embedded command php artisan monica:update, it will run all needed commands to bring you to the next version.

Features

Bug Fixes

2.19.1

12 Sep 19:08
6d809fd
Compare
Choose a tag to compare

This release contains some fixes, doc update and translation updates.

🌍Thanks so much to our contributors and translators for their work.

Docker image

Note that the old docker image monicahq/monicahq is now deprecated, and will not be updated anymore.
Feal free to use the new standard docker image monica.
See more information on how to migrate to this new docker image here.

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

⚛ Fixed

  • Fix journal entry XSS vulnerability (#4451 - thanks to @asbiin)

2.19.0

27 Aug 21:35
afded47
Compare
Choose a tag to compare

This release contains some fixes and light changes.

🌍Thanks so much to our contributors and translators for their work.

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

This version requires a new php dependency module: imagick. Install it before you upgrade to this version.

This version requires to run migrations.
Please use the embedded command php artisan monica:update, it will run all needed commands to bring you to the next version.

✴️ Changed

  • Update tag management on the contact profile (#4349 - thanks to @djaiss)
  • Add next and previous arrows when viewing photos (#4083 - thanks to @paulrodriguez)
  • Add dependency to php imagick module (#4275 - thanks to @asbiin)
  • Renamed MOBILE_CLIENT_ID and MOBILE_CLIENT_SECRET variables to PASSPORT_PERSONAL_ACCESS_CLIENT_ID and PASSPORT_PERSONAL_ACCESS_CLIENT_SECRET (#4275 - thanks to @asbiin)

⚛ Fixed

  • Fix amount display on subscription account settings (#4378 - thanks to @asbiin)
  • Fix exception when registering in certain cases (#4226 - thanks to @asbiin)
  • Fix vue-select usage (#4294 - thanks to @asbiin)

2.18.0

23 May 11:34
186f336
Compare
Choose a tag to compare

This release contains several new features

  • You can now crop contact photos on upload
  • Display age of death to relationship sidebar if the person is dead
  • There is a new name order, with the nickname in first position
  • The title for birthday reminder on decease people is better

We also added two more langages: Chinese Traditional and Japanese.

🌍Thanks so much to our contributors and translators for their work.

New environment variable

This release also introduce a new environment variable: APP_FORCE_URL.
It allows you to force using APP_URL as base url of your application.
You should not need it, but it's useful to install Monica in a subdirectoy url, like https://my.domain/monica

New command lines

  • php artisan monica:test-email allows you to test your email sending configuration
  • php artisan monica:passport install encryption keys and Personal Access Client if needed

Docker image

Our docker image has slightly changed.
Sources files are now back in /var/www/monica directory.
If you used to have a mounted volume in that directory, you should remove it, and keep only the mounted volume for storage.
See more examples in the dedicated documentation.

DAV Connection

CardDAV or CalDAV client connection now requires an API token as the password. Using login+password directly will not work anymore.
Go to /settings/api to generate a new token and use it as the password.

See also this documentation about CardDAV client.

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

This version requires to run migrations.
Please use the embedded command php artisan monica:update, it will run all needed commands to bring you to the next version.

✳️ Added

  • Display age of death to relationship sidebar if the person is dead (#4021 - thanks to @paulrodriguez)
  • Crop contact photos on upload (#3942 - thanks to @jeremies)
  • Add new name orders <nickname> (<First name> <Last name>) & <nickname> (<Last name> <First name>) (#3933 - thanks to @vwvw and @maantje)
  • Add console command to test email delivery (#3212 - thanks to @mechanarchy)
  • Add Traditional Chinese langage (#3978 - thanks to @asbiin)
  • Add Japanese langage (#3819 - thanks to @asbiin)
  • Change title of birthday reminder for deceased people (#3720 - thanks to @jeremies)

✴️ Changed

  • Change docker image sync (#4010 - thanks to @asbiin)
  • Stores amount as integer-ish values, and fix debts and gifts amount forms (#3906 - thanks to @asbiin)
  • Use current text from search bar to create a new person (#3817 - thanks to @jeremies)
  • Always allow to add a new person from search bar (#3817 - thanks to @jeremies)
  • Use queue to send email verification (#3985 - thanks to @asbiin)
  • Improve autocomplete fields on signup and login forms (#3832 - thanks to @asbiin)
  • Add cache for S3 storage, and use new standard variables (#3821 - thanks to @asbiin)
  • Remove authentication with login+password for carddav (#3830 - thanks to @asbiin)
  • Add new command monica:passport to generate encryption if needed (#3816 - thanks to @asbiin)
  • Improve nginx config docker examples (#3800 - thanks to @asbiin)
  • Remove u2f support (replaced with WebAuthn) (#3756 - thanks to @asbiin)
  • Serialize photo content in VCard photo value (#3765 - thanks to @asbiin)

⚛ Fixed

  • Fix life event categories and types are not translated when adding new life event (#4033 - thanks to @jeremies)
  • Fix subdirectory config url (#4020 - thanks to @asbiin)
  • Fix google2fa column size (#3975 - thanks to @asbiin)
  • Fix errors display for api (#3949 - thanks to @asbiin)
  • Fix currency in double (#3899 - thanks to @asbiin)
  • Fix route cache (#3882 - thanks to @asbiin)
  • Fix mail config setting (#3878 - thanks to @asbiin)
  • Fix AuthenticateWithTokenOnBasicAuth (#3861 - thanks to @asbiin)
  • Fix authentication with token on basic auth (#3830 - thanks to @asbiin)
  • Fix editing multiple notes at the same time only edits one note (#3779 - thanks to @jeremies)
  • Fix countries in fake contact seeder (#3815 - thanks to @jeremies)
  • Fix docker rsync exclude rules (#3806 - thanks to @asbiin)
  • Fix docker cron (legacy) on apache variant (#3807 - thanks to @asbiin)
  • Fix login route already set by Laravel now (#3802 - thanks to @asbiin)
  • Fix setMe contact controller (#3792 - thanks to @asbiin)
  • Fix carddav sync-collection reporting wrong syncToken (#3734 - thanks to @asbiin)

2.17.0

22 Mar 16:33
3a1243d
Compare
Choose a tag to compare

This release contains several new features and important internal changes.

  • You can now associate a photo to a gift
  • You can now edit activities
  • We now support a first iteration of audit logs - ie everything that happened to a contact
  • You can now set yourself as a contact in your settings
  • Fix a lot of bugs

Please everyone, be safe!

Upgrade notes

⚠️ Please make sure you backup your database before upgrading.

This version requires to run migrations (php artisan migrate).

🌍Thanks so much to our contributors and translators for their work.

✳️ Added

  • Associate a photo to a gift (#3342 - thanks to asbiin).
  • Enable activities edit (#3422 - thanks to asbiin).
  • Add vuelidate (#3438 - thanks to asbiin).
  • Get all contacts for a given tag in the api (#3534 - thanks to djaiss).
  • Clickable contacts on activity list (#3539 - thanks to djaiss).
  • Add a link to archive all contacts during downgrade (#3536 - thanks to djaiss).
  • services to set and clear personal description (#3573 - thanks to djaiss).
  • Add support for audit log (#3547 - thanks to djaiss).
  • Add audit log for contact description (#3582 - thanks to djaiss).
  • Add ability to indicate the number of contacts in seeders (#3585 - thanks to djaiss).
  • Add contact field labels (#3606 - thanks to asbiin).
  • Allow editing middle name (#3218 - thanks to ivankruchkoff).
  • Add ability to set me contact (#3481 - thanks to asbiin).
  • Add a weekly job to update gravatars (#3638 - thanks to asbiin).
  • Use Carbon v2 library as translator for dates (#3672 - thanks to asbiin).

✴️ Changed

  • Optimize images (#3432 - thanks to imgbot).
  • Update composer-install step (#3427 - thanks to asbiin).
  • Fix ArtifactStagingDirectory (#3456 - thanks to asbiin).
  • Fix activity services rules (#3459 - thanks to asbiin).
  • Prepare removal of jQuery dependency (#3337 - thanks to asbiin).
  • Fix ci signature (#3504 - thanks to asbiin).
  • Add notes in contact api call (#3533 - thanks to djaiss).
  • Remove old method to delete all information about a contact (#3535 - thanks to djaiss).
  • Replace whoops by ignition (#3565 - thanks to djaiss).
  • Refactor user model (#3564 - thanks to djaiss).
  • Remove greenkeeper (#3579 - thanks to asbiin).
  • Refactor account model (#3570 - thanks to djaiss).
  • Last consulted at field update is now in a job (#3586 - thanks to djaiss).
  • Add audit log for updating work information (#3588 - thanks to djaiss).
  • Add audit logs for company creation (#3592 - thanks to djaiss).
  • Update i18n (#3607 - thanks to djaiss).
  • Fix this test that won t work on 29th feb (#3637 - thanks to asbiin).
  • Minor grammer/wording change (#3621 - thanks to patski123).
  • Fix some wording (#3622 - thanks to patski123).
  • Remove access of eager load object if not needed (#3639 - thanks to asbiin).
  • Remove deprecated call (#3671 - thanks to asbiin).
  • Documentation: fix typo in heroku.md (#3665 - thanks to buenalabs).
  • Documentation: update heroku.md to reflect switch to JawsDB (#3675 - thanks to buenalabs).
  • Use psalm output for github/azure devops (#3676 - thanks to asbiin).
  • Documentation: update screenshot for heroku.md (#3680 - thanks to buenalabs).
  • Start mysql (#3708 - thanks to asbiin).
  • Setup cypress (#3152 - thanks to asbiin).
  • Documentation: upload new screenshot to reflect switch to JawsDB (#3699 - thanks to buenalabs).
  • Optimize images (#3715 - thanks to imgbot).
  • Require redis php extension (#3690 - thanks to asbiin).
  • Update translations (#3716 - thanks to asbiin).
  • Documentation: update second screenshot (#3718 - thanks to buenalabs).

⚛ Fixed

  • Fix locale (#3420 - thanks to asbiin).
  • Fix VCard export of LinkedIn data (#3434 - thanks to muglug).
  • Fix contacts list UX with 2 tabs opened (#3428 - thanks to asbiin).
  • Fix docker instances (#3486 - thanks to asbiin).
  • Activity seeder to use new schema (#3503 - thanks to mechanarchy).
  • Contact sorting by last activity date (#3512 - thanks to anegoda1995).
  • Fix markdown not being applied for a phone call description (#3537 - thanks to djaiss).
  • Order contact tag list alphabetically (#3243 - thanks to mechanarchy).
  • Fix how you met date not being deleted upon save (#3542 - thanks to djaiss).
  • Fix display of the toggle buttons in the Settings page (#3541 - thanks to djaiss).
  • Fix gift photo migration (#3558 - thanks to asbiin).
  • Fix edit conversation date not being editable (#3560 - thanks to djaiss).
  • Fix gift photo migration again (#3559 - thanks to asbiin).
  • Fix _header blade include (#3587 - thanks to asbiin).
  • Fix resend email verification feature not sending email (#3597 - thanks to djaiss).
  • Fix i18n (#3609 - thanks to asbiin).
  • Fix vcard categories import/export as tags (#3615 - thanks to asbiin).
  • Fix summary of activities showing the same date for every entry (#3654 - thanks to [djai...
Read more