2.3 KiB
2.3 KiB
CHANGELOG
6.4
- Make
MongoDbStoreinstantiable with the mongodb extension directly
6.3
- Create migration for lock table when DoctrineDbalStore is used
- Add optional parameter
$isSameDatabasetoDoctrineDbalStore::configureSchema() - Add support for Relay PHP extension for Redis
- Renamed the
gcProbablityoption togcProbabilityto fix a typo in its name
6.0
- Remove the
NotSupportedException. It shouldn't be thrown anymore - Remove the
RetryTillSaveStore. Logic has been moved inLockand is not needed anymore - Remove support of Doctrine DBAL in
PdoStoreandPostgreSqlStore
5.4
- Add
DoctrineDbalStoreidentical toPdoStoreforDoctrine\DBAL\Connectionor DBAL url - Deprecate usage of
PdoStorewithDoctrine\DBAL\Connectionor DBAL url - Add
DoctrineDbalPostgreSqlStoreidentical toPdoPostgreSqlStoreforDoctrine\DBAL\Connectionor DBAL url - Deprecate usage of
PdoPostgreSqlStorewithDoctrine\DBAL\Connectionor DBAL url
5.2.0
MongoDbStoredoes not implementBlockingStoreInterfaceanymore, typehint againstPersistingStoreInterfaceinstead.- added support for shared locks
- added
NoLock - deprecated
NotSupportedException, it shouldn't be thrown anymore. - deprecated
RetryTillSaveStore, logic has been moved inLockand is not needed anymore. - added
InMemoryStore - added
PostgreSqlStore - added the
LockFactory::CreateLockFromKey()method.
5.1.0
- added the MongoDbStore supporting MongoDB servers >=2.2
5.0.0
Factoryhas been removed, useLockFactoryinstead.StoreInterfacehas been removed, useBlockingStoreInterfaceandPersistingStoreInterfaceinstead.- removed the
waitAndSave()method fromCombinedStore,MemcachedStore,RedisStore, andZookeeperStore
4.4.0
- added InvalidTtlException
- deprecated
StoreInterfacein favor ofBlockingStoreInterfaceandPersistingStoreInterface Factoryis deprecated, useLockFactoryinsteadStoreFactory::createStoreallows PDO and Zookeeper DSN.- deprecated services
lock.store.flock,lock.store.semaphore,lock.store.memcached.abstractandlock.store.redis.abstract, useStoreFactory::createStoreinstead.
4.2.0
- added the PDO Store
- added a new Zookeeper Data Store for Lock Component
3.4.0
- added the component