CHANGE LOG
==========

0.6.0
-----
- Add tests for work on supporting complex SCIM filtering
- Update PATCH handler to decipher path key

  This commit contains a BREAKING CHANGE.

  If you have overridden the "handle_<op_code>" methods on the User and
  Group adapters, those methods need to be updated to take path, and value
  in addition to operation.

  New adapter signature:

  def handle_<op_code (eg. add)>(self, path, value, operation):
      ...

0.5.3
-----
- Bug fix: https://github.com/15five/django-scim2/issues/13
  Thank you @tomatsue

0.5.2
-----
- Bug fix

0.5.1
-----
- Added tests for grammar
- Added back explicit support for python2.7 on Django 1.11

0.5.0
-----
- Added a group grammar for parsing group pushes

0.4.1
-----
- Docs changes

0.4.0
-----
** BREAKING CHANGES **
- Port to Python 3.6, drop support for anything less than Python 3.6
- Port to Django 1.11+, drop support for anything less than Django 1.11

** NON BREAKING CHANGES **
- change accuracy of timestamp from micro- to milli-second
- Upgrade dateutil library
- Support Django 2.0.0

