Pottery

Latest version: v3.0.1

Safety actively analyzes 724087 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 9

1.3.2

Not secure
1. **Quality of Life**: Raise `ValueError` on invalid arguments to `Redlock.__init__()`
2. **Optimization**: Define `_ContextPipeline.__slots__` to reduce memory usage and improve performance
3. **Quality of Life**: Track and log the time that the `synchronize()` decorator spends waiting for and holding the `Redlock`

What's Changed
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/430
* Raise ValueError on invalid Redlock init args by brainix in https://github.com/brainix/pottery/pull/431
* Reduce unit test by one level of indentation by brainix in https://github.com/brainix/pottery/pull/432
* Make Redlock context manager unit tests consistent by brainix in https://github.com/brainix/pottery/pull/433
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/435
* Type check unit tests by brainix in https://github.com/brainix/pottery/pull/436
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/437
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/438
* Document why you need 5 Redis masters in prod by brainix in https://github.com/brainix/pottery/pull/439
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/441
* Define _ContextPipeline.__slots__ by brainix in https://github.com/brainix/pottery/pull/442
* Refactor synchronize() decorator by brainix in https://github.com/brainix/pottery/pull/443


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.3.1...v1.3.2

1.3.1

Not secure
Optimization: Define `.__slots__` on `Redlock` and `NextId`

`Redlock` and `NextId` are designed to be instantiated often. `.__slots__` might help someone.

1. https://docs.python.org/3/reference/datamodel.html#slots
2. https://stackoverflow.com/a/28059785

What's Changed
* Update documentation by brainix in https://github.com/brainix/pottery/pull/425
* Improve wording in README by brainix in https://github.com/brainix/pottery/pull/426
* Define Redlock.__slots__ and NextId.__slots__ by brainix in https://github.com/brainix/pottery/pull/427
* Refactor Lua scripts out of primitive classes by brainix in https://github.com/brainix/pottery/pull/428
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/429


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.3.0...v1.3.1

1.3.0

Not secure
New Feature: Allow blocking/timeout behavior when using Redlock as a context manager
Discussion here: https://github.com/brainix/pottery/issues/422

What's Changed
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/415
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/416
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/417
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/418
* Upgrade Python to 3.9.6 by brainix in https://github.com/brainix/pottery/pull/419
* Improve setup.py by brainix in https://github.com/brainix/pottery/pull/420
* Make ._modules() recursively walk dir for modules by brainix in https://github.com/brainix/pottery/pull/421
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/423
* Add context manager blocking/timeout params by brainix in https://github.com/brainix/pottery/pull/424


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.2.1...v1.3.0

1.2.1

Not secure
Quality of Life: Log when Redlock is enqueued, waiting to acquire

What's Changed
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/407
* In README, recommend instantiating new Redlocks by brainix in https://github.com/brainix/pottery/pull/408
* Improve Redlock unit test coverage by brainix in https://github.com/brainix/pottery/pull/409
* Reorder code for consistency by brainix in https://github.com/brainix/pottery/pull/410
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/411
* Remove type annotation stubs by brainix in https://github.com/brainix/pottery/pull/412
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/413
* Implement Librato-style structured log metrics by brainix in https://github.com/brainix/pottery/pull/414


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.2.0...v1.2.1

1.2.0

Not secure
1. **Quality of Life**: Allow re-raising on `RedisError`s https://github.com/brainix/pottery/issues/404
2. **Bug Fix**: Don't let `RedisList`s equal tuples

This is how Python behaves:

python
>>> [1, 2, 3] == (1, 2, 3)
False


As of this release, this is also how Pottery behaves:

python
>>> from pottery import RedisList
>>> RedisList((1, 2, 3)) == (1, 2, 3)
False


What's Changed
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/393
* Make all of our distributed algorithms consistent by brainix in https://github.com/brainix/pottery/pull/394
* Tighten .__exit__() type annotations by brainix in https://github.com/brainix/pottery/pull/395
* Make .__exit__() return a bool by brainix in https://github.com/brainix/pottery/pull/396
* Don't let RedisLists equal tuples by brainix in https://github.com/brainix/pottery/pull/397
* Clean up RedisList unit tests by brainix in https://github.com/brainix/pottery/pull/398
* Make RedisList unit tests consistent by brainix in https://github.com/brainix/pottery/pull/399
* Write doctest Makefile target by brainix in https://github.com/brainix/pottery/pull/400
* Improve redis_cache() documentation by brainix in https://github.com/brainix/pottery/pull/401
* Test _store_on_self() decorator by brainix in https://github.com/brainix/pottery/pull/403
* Improve Redlock unit test coverage by brainix in https://github.com/brainix/pottery/pull/405
* Raise exception if quorum is impossible by brainix in https://github.com/brainix/pottery/pull/406


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.1.8...v1.2.0

1.1.8

Not secure
Optimization: Make `Redlock.locked()` slightly more efficient

Bail out of `Redlock.locked()` as soon as we've achieved quorum.

What's Changed
* Improve wording by brainix in https://github.com/brainix/pottery/pull/380
* Upgrade requirements by brainix in https://github.com/brainix/pottery/pull/381
* Improve grammar in log messages by brainix in https://github.com/brainix/pottery/pull/382
* Document RedisList limitations by brainix in https://github.com/brainix/pottery/pull/383
* Test BailOutExecutor by brainix in https://github.com/brainix/pottery/pull/384
* Fix flapping test by brainix in https://github.com/brainix/pottery/pull/385
* Upgrade Python to 3.9.5 by brainix in https://github.com/brainix/pottery/pull/386
* Simplify code by using chunking by brainix in https://github.com/brainix/pottery/pull/387
* Simplify code to reduce cognitive load by brainix in https://github.com/brainix/pottery/pull/388
* Preserve Open-Closed Principle with name mangling by brainix in https://github.com/brainix/pottery/pull/389
* Bail out of Redlock.locked() on quorum by brainix in https://github.com/brainix/pottery/pull/390
* Simplify Redlock.locked() by brainix in https://github.com/brainix/pottery/pull/391
* Make all of our distributed algorithms consistent by brainix in https://github.com/brainix/pottery/pull/392


**Full Changelog**: https://github.com/brainix/pottery/compare/v1.1.7...v1.1.8

Page 6 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.