The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
TODO:
- Switch to using inside-out objects (probably Class- or Object- InsideOut)
- Scripts/clearpress to auto-generate tests & fixture framework
- Improve migrations
- Improve test coverage (currently at 75%)
- Add regression tests
- config caching
- template caching

174 - Maintenance release - added missing dependencies to Makefile.PL

173 - Improved tests & code coverage for relation accessors (has_a,
      has_many, has_a_through, has_many_through etc), views and database
      drivers.

    - NEW BEHAVIOUR: database handling has started to be pushed into
      ClearPress::driver:: subclasses. You will commonly see transaction
      errors with applications built using older ClearPress which
      implement their own 'dbh' methods in util.pm .

    - NEW BEHAVIOUR: better handling of NULL/undef, zero and empty
      string may cause issues on applications which previously didn't
      check.

168 - Updated POD
    - Generation script now makes use of has_a and has_many
      friend-accessor-auto-constructors

157 - Improved error handling with some smarts about requested content
      types
    - 'packagemap' config section maps uri entity names to package
      subclasses for exceptions to the systematic naming rules, e.g.
      [packagemap]
      array_feature=feature::array

135 - belongs_to_through now supported in the data model
    - Added missing Config::IniFiles dependency. Hopefully more CPAN
      tests will now pass

132 - has_many_through and belongs_to now supported.
    - Easier access to template subsystem for streamed-output responses.

118 - Update now only saves fields which 'exist' in the object, meaning
      you don't have to force $object->load() before updating.
    - New hasa() and hasmany() for easier relationship definitions.
    - Models can now render ->as_xml() and as_json()
    - Tweaked route processing (action & aspect) to be safer and more
      consistent

99  - reworked url/file-extension & HTTP Accept header handling
      deprecated controller::process_uri in favour of process_request

87  - JSON response support

71  - Buffered output handling, better test coverage

12  - Added application builder in scripts/clearpress