CHANGES 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. Changelog
  2. =========
  3. Here you can see the full list of changes between each release.
  4. Version 2.1.0
  5. -------------
  6. * Reimplemented User views using services
  7. * Services for changing email, password, settings and details
  8. * Hooks for email, password, settings and details updates
  9. * Hook for user profile sidebar links
  10. * Added helper for generating dynamic navbar content
  11. * Gender is now a text field rather than a dropdown
  12. Version 2.0.2
  13. -------------
  14. Released July 15th, 2018
  15. * Fix issue with declaring log config file path
  16. Version 2.0.1
  17. -------------
  18. Released June 21st, 2018
  19. * Fix issue where activation tokens would fail with an exception
  20. Version 2.0.0
  21. -------------
  22. Released on May 16th, 2018.
  23. * Improved management panel load time by requesting celery status async (PR #429)
  24. * Migrated FlaskBB internal behavior to use plugin hook system (PRs
  25. #369, #413, #419, #423, #426, #435, #436)
  26. * Migrated behavior in flaskbb.auth from living in route handlers and into
  27. services (PRs #421, #424)
  28. * Improved emoji support (PR #417)
  29. * Migrated private messages into a
  30. [plugin](https://github.com/sh4nks/flaskbb-plugins/tree/master/conversations)
  31. (PR #414)
  32. * Fixed issue where user could not re-select having the default theme (PR #387)
  33. * Fixed issue where a reinstall would attempt to drop the entire database
  34. instead of just the tables associated with FlaskBB (PR #364)
  35. * Added ability to hide and unhide topics and posts, preventing unprivileged
  36. users from viewing them (PR #325)
  37. * Fixed issue where password was not required when editing a user in the admin
  38. panel (PR #321)
  39. * Migrated from Flask-Plugins to Pluggy as plugin system for plugins.
  40. Plugins are now loaded via entry points and thus have to be installed
  41. into the same environment as FlaskBB. During this migration we also moved
  42. the [portal plugin](https://github.com/sh4nks/flaskbb-plugins) into its own
  43. python package which can be installed via
  44. ``pip install flaskbb-plugin-portal``. (PR #311)
  45. * Adds the functionality to "soft delete" posts and topics. (PR #325)
  46. * Improve logging. (PR #327)
  47. * Prefixes migrations with a timestamp which will sort them by creation date. (PR #353)
  48. * Transform views into Class-based Views. (PR #324)
  49. * Drop the tables instead of dropping the database when uninstalling FlaskBB. (PR #364)
  50. * Create the database using SQLAlchemy's ``db.create_all`` and stamp it as
  51. 'latest' instead of going through all migrations.
  52. * Fixes a bug that prevented users to activate their accounts via the form
  53. input.
  54. * Fixes a translations bug that wouldn't take the territory code into account
  55. when choosing a language (#299).
  56. * Fixes a bug which would not show all conversations in the conversations view.
  57. * Fixes a bug that made a forum section inaccessible when the ``last_post_id``
  58. of a topic was set to None.
  59. * Various translations updated.
  60. * Multiple permission fixes and various other fixes.
  61. Version 1.0
  62. -----------
  63. Released on May 5th, 2017.
  64. * First release of FlaskBB