- Adds the ability to have a single token shared across multiple reservations in a single session. [href]
0.1.4
~~~~~~~~~~~~~~~~~~~
- Adds the ability to change unapproved reservations. [href]
- Adds an extra check for start/end time. If the requested start/end time lies outside any possible allocation, an error is raised. [href]
- Ensures that approved reservations cannot be somehow removed during cleanup. [href]
0.1.3
~~~~~~~~~~~~~~~~~~
- Adds a method to remove unused allocations. [href]
0.1.2
~~~~~~~~~~~~~~~~~~
- Replaces libres.modules.calendar with sedate. [href]
- Naive start/end dates on the allocation are now automatically converted into the correct timezone when they are set. [href]
0.1.1
~~~~~~~~~~~~~~~~~~
- It was possible to add or move an allocation to an invalid state (end before start date). This is now caught correctly. [href]
0.1.0
~~~~~~~~~~~~~~~~~~
- BREAKING CHANGE: This release switches to a single SERIALIZED connections.
Previously it used a READ COMMITED and a SERIALIZED connection in parallel, switching to the READ COMMITED connection for readonly queries and using the SERIALIZED connection for write queries.
Using a serialized connection for everything reduces speed slightly (though we haven't been able to measure the effect on our lowish traffic sites). But it makes it easier to use libres with an existing connection when integrating it.