2019-10-31 10:49:04 +01:00
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
2020-06-24 11:31:32 +02:00
## Unreleased
2020-09-30 10:38:28 +02:00
### Special operations
We added `application/ld+json` as acceptable MIME type for ActivityPub requests, so you'll need to recompile the `mime` library we use before recompiling Mobilizon:
```
MIX_ENV=prod mix deps.clean mime --build
```
2020-07-05 13:46:10 +02:00
### Added
- Possibility to login using LDAP
- Possibility to login using OAuth providers
2020-06-24 16:33:59 +02:00
### Changed
- Completely replaced HTMLSanitizeEx with FastSanitize [!490 ](https://framagit.org/framasoft/mobilizon/-/merge_requests/490 )
2020-06-24 11:31:32 +02:00
### Fixed
2020-06-24 16:33:59 +02:00
- Fixed notification scheduler [!486 ](https://framagit.org/framasoft/mobilizon/-/merge_requests/486 )
- Fixed event title escaping [!490 ](https://framagit.org/framasoft/mobilizon/-/merge_requests/490 )
2020-06-24 11:31:32 +02:00
2020-06-24 10:11:09 +02:00
## [1.0.0-beta.3] - 2020-06-24
2020-01-30 20:27:25 +01:00
### Special operations
Config has moved from `.env` files to a more traditional way to handle things in the Elixir world, with `.exs` files.
To migrate existing configuration, you can simply run `mix mobilizon.instance gen` and fill in the adequate values previously in `.env` files (you don't need to perform the operations to create the database).
A minimal file template [is available ](https://framagit.org/framasoft/mobilizon/blob/master/priv/templates/config.template.eex ) to check for missing configuration.
Also make sure to remove the `EnvironmentFile=` line from the systemd service and set `Environment=MIX_ENV=prod` instead. See [the updated file ](https://framagit.org/framasoft/mobilizon/blob/master/support/systemd/mobilizon.service ).
### Added
2020-06-08 15:01:47 +02:00
- Possibility to participate to an event without an account (confirmation through email required)
2020-01-30 20:27:25 +01:00
- Possibility to participate to a remote event (being redirected by providing federated identity)
2020-03-05 19:32:34 +01:00
- Possibility to add a note as a participant when event participation is manually validated (required when participating without an account)
2020-06-08 15:01:47 +02:00
- Email notifications for events (one hour before, on the day of the event, each week)
- Email notifications for pending participation approval requests (disabled, directly, at most 1 per hour, at most 1 per day)
2020-02-13 15:48:12 +01:00
- Possibility to change email address for the account
- Possibility to delete your account
2020-06-08 15:01:47 +02:00
- Duplicate an event
- Ability to handle basic administration settings in the admin panel
2020-06-09 14:07:49 +02:00
- Config option to allow anonymous reporting
2020-06-23 11:29:30 +02:00
- Basic user and profile management admin interface to suspend local users or remote profiles
- Default Terms of service and Privacy policies
- As an admin, possibility to add rules and contact information
- Allow user to change language
2020-01-30 20:27:25 +01:00
2020-02-14 17:56:36 +01:00
### Changed
2020-06-08 15:01:47 +02:00
- Configuration handling (see above)
2020-02-18 08:47:41 +01:00
- Improved a bit color theme
2020-02-14 17:56:36 +01:00
- Signature validation also now checks if `Date` header has acceptable values
- Actor profiles are now stale after two days and have to be refetched
- Actor keys are rotated some time after sending a `Delete` activity
2020-03-05 19:32:34 +01:00
- Improved event participations managing interface
2020-06-23 11:29:30 +02:00
- Added physical address change to the list of important changes that trigger event notifications
2020-06-08 15:01:47 +02:00
- Improved public event page
2020-02-14 17:56:36 +01:00
2020-02-07 17:07:09 +01:00
### Fixed
- Fixed URL search
- Fixed content accessed through URL search being public
2020-02-10 09:58:16 +01:00
- Fix event links in some emails
2020-02-07 17:07:09 +01:00
2019-12-18 16:15:28 +01:00
## [1.0.0-beta.2] - 2019-12-18
2019-10-31 10:49:04 +01:00
### Special operations
These two operations couldn't be handled during migrations.
They are optional, but you won't be able to search or get participant stats on existing events if they are not executed.
These commands will be removed in Mobilizon 1.0.0-beta.3.
In order to populate search index for existing events, you need to run the following command (with prod environment):
* `mix mobilizon.setup_search`
In order to move participant stats to the event table for existing events, you need to run the following command (with prod environment):
* `mix mobilizon.move_participant_stats`
### Added
2019-12-18 16:15:28 +01:00
- Federation is active
- Added an interface for admins to view and manage instance followers and followings
- Ability to comment below events
2019-10-31 10:49:04 +01:00
- Implement search engine & service in backend ** (read special instructions above)**
- Allow WebP and Gif pics upload
- Optimize uploaded pics
- Make tags clickable, redirecting to search
2019-12-18 16:15:28 +01:00
- Added a websocket API call to check if your participation status has changed
2019-10-31 10:49:04 +01:00
- Add a different welcome message when coming from registration
- Link to participation page from event page when you are an organizer
2019-12-18 16:15:28 +01:00
- Added several mix commands to manage users and view actors (`mix mobilizon.users` and `mix mobilizon.actors` ) and their documentation
- Added a demo mode to show or hide instance warning
- Added a config option to whitelist users emails or email domains
2019-10-31 10:49:04 +01:00
- Updated Occitan translations (Quentin)
2019-12-18 16:15:28 +01:00
- Updated French translations (Gavy, Zilverspar, ty kayn, numéro6)
- Updated Swedish translations (Anton Strömkvist, Filip Bengtsson)
- Updated Polish translations (Marcin Mikolajczak)
- Updated Italian translations (AlessiBilos)
- Updated Arabic translations (Butterflyoffire)
- Updated Catalan translations (fadelkon, Francesc)
- Updated Belarusian translations (fadelkon)
2019-10-31 10:49:04 +01:00
- Upgraded frontend and backend dependencies
### Changed
2019-11-04 15:32:55 +01:00
- Move participant stats to event table ** (read special instructions above)**
2019-10-31 10:49:04 +01:00
- Limit length (20 characters) and number (10) of tags allowed
- Added some backend changes and validation for field length
2019-11-04 15:32:55 +01:00
- Handle error message difference between user not found and user not confirmed
- Make external links (from URL field and description) open in a new tab with `noopener`
- Improve Docker setup and docs
- Upgrade vue-cli to v4, change the way server params injection is made
2019-10-31 10:49:04 +01:00
- Improve some production ipv6 configuration
2019-11-04 17:07:07 +01:00
- Limited year range in the DatePicker
2019-12-18 16:15:28 +01:00
- Event title is now clickable on cards (Léo Mouyna)
- Also consider the PeerTube `CommentsEnabled` property to know if you can reply to an event
2019-10-31 10:49:04 +01:00
### Fixed
- Fix event URL validation and check if hostname is correct before showing it
- Fix participations stats on the MyEvents page
- Fix event description lists margin
2019-12-18 16:15:28 +01:00
- Clear errors on resend password page (Léo Mouyna)
- End datetime being able to happen before begin datetime (Léo Mouyna)
- Fix issue when activating/deactivating limited places (Léo Mouyna)
2019-10-31 10:49:04 +01:00
- Fix Cypress tests
- Fix contribution guide link and improve contribution guide (Joel Takvorian)
- Improve grammar (Damien)
- Fix recursive alias in systemd unit file (Geno)
- Fix multiline display on participants page
- Add polyfill for IntersectionObserver so that it's usable on relatively old browsers
- Fixed crash on Safari on description input by removing `-apple-system` from font-family
- Improve installation docs (mkljczk)
2019-12-18 16:15:28 +01:00
- Fixed links to contributing and docs (Alex Addams)
2019-10-31 10:49:04 +01:00
- Limit file uploads to 10MB
- Added missing `setup_db.psql` file (Geno)
- Fixed docker setup when using non-GNU make (JohanBaskovec)
- Fixed actors deletion that didn't cascade to followers
2019-11-04 16:37:57 +01:00
- Reduced datetime picker input width
2019-12-18 16:15:28 +01:00
- Clear ActivityPub cache when content is updated or deleted
- Fix HTTP signatures not checked for relay inbox
- Handle actor or object being AP Public string (for Mastodon relay subscriptions)
- Fixed Mastodon relay instances subscriptions being shown as users
- Fixed an issue when accessing "My Account"
- Fixed pagination for followers/followings page
- Fixed event HTML representation when `GET` request has no `Accept` header
2019-10-31 10:49:04 +01:00
### Security
- Sanitize event title to avoid XSS
## [1.0.0-beta.1] - 2019-10-15
### Added
- Initial release