lifx-emulator-core 3.0.1__tar.gz → 3.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/CHANGELOG.md +8 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/PKG-INFO +2 -1
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/pyproject.toml +3 -2
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/.gitignore +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/README.md +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/constants.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/device.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/manager.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/observers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/persistence.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/state_restorer.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/state_serializer.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/states.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/builder.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/default_config.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/factory.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/firmware_config.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/serial_generator.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/base.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/device_handlers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/light_handlers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/multizone_handlers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/registry.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/tile_handlers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/generator.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/registry.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/specs.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/specs.yml +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/base.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/const.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/generator.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/header.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/packets.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/protocol_types.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/serializer.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/repositories/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/repositories/device_repository.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/repositories/storage_backend.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/__init__.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/manager.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/models.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/persistence.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/server.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/conftest.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_async_storage.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_backwards_compatibility.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_device.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_device_edge_cases.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_device_handlers_extended.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_device_manager.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_handler_registry.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_integration.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_light_handlers_extended.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_multizone_handlers_extended.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_observers.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_products_generator.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_products_specs.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_protocol_generator.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_protocol_types_coverage.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_repositories.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_scenario_manager.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_scenario_persistence.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_serializer.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_server.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_state_restorer.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_switch_devices.py +0 -0
- {lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_tile_handlers_extended.py +0 -0
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- version list -->
|
|
4
4
|
|
|
5
|
+
## v3.0.2 (2025-11-27)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **core**: Add missing pydantic dependency to lifx-emulator-core
|
|
10
|
+
([`7cd2309`](https://github.com/Djelibeybi/lifx-emulator/commit/7cd230948285706c3d31ed5478e2e271ed134033))
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## v3.0.1 (2025-11-26)
|
|
6
14
|
|
|
7
15
|
### Bug Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lifx-emulator-core
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Core LIFX Emulator library for testing LIFX LAN protocol libraries
|
|
5
5
|
Author-email: Avi Miller <me@dje.li>
|
|
6
6
|
Maintainer-email: Avi Miller <me@dje.li>
|
|
@@ -19,6 +19,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
19
19
|
Classifier: Topic :: Software Development :: Testing
|
|
20
20
|
Classifier: Typing :: Typed
|
|
21
21
|
Requires-Python: >=3.11
|
|
22
|
+
Requires-Dist: pydantic>=2.0.0
|
|
22
23
|
Requires-Dist: pyyaml>=6.0.3
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "lifx-emulator-core"
|
|
3
|
-
version = "3.0.
|
|
3
|
+
version = "3.0.2"
|
|
4
4
|
description = "Core LIFX Emulator library for testing LIFX LAN protocol libraries"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
7
7
|
dependencies = [
|
|
8
|
+
"pydantic>=2.0.0",
|
|
8
9
|
"pyyaml>=6.0.3",
|
|
9
10
|
]
|
|
10
11
|
license = "UPL-1.0"
|
|
@@ -56,7 +57,7 @@ asyncio_default_fixture_loop_scope = "function"
|
|
|
56
57
|
[tool.semantic_release]
|
|
57
58
|
commit_parser = "conventional-monorepo"
|
|
58
59
|
commit_message = """\
|
|
59
|
-
chore(release): lifx-emulator-core@{version}
|
|
60
|
+
chore(release): lifx-emulator-core@{version}
|
|
60
61
|
|
|
61
62
|
Automatically generated by python-semantic-release
|
|
62
63
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/observers.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/persistence.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/state_restorer.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/devices/state_serializer.py
RENAMED
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/__init__.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/builder.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/default_config.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/factory.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/factories/firmware_config.py
RENAMED
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/device_handlers.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/light_handlers.py
RENAMED
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/registry.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/handlers/tile_handlers.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/__init__.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/generator.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/products/registry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/generator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/protocol_types.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/protocol/serializer.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/repositories/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/__init__.py
RENAMED
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/manager.py
RENAMED
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/src/lifx_emulator/scenarios/persistence.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_device_handlers_extended.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lifx_emulator_core-3.0.1 → lifx_emulator_core-3.0.2}/tests/test_multizone_handlers_extended.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|