lifx-emulator 3.1.0__tar.gz → 4.0.0__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.
Files changed (30) hide show
  1. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/CHANGELOG.md +20 -0
  2. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/PKG-INFO +1 -1
  3. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/pyproject.toml +1 -1
  4. lifx_emulator-4.0.0/src/lifx_emulator_app/__main__.py +1120 -0
  5. lifx_emulator-4.0.0/src/lifx_emulator_app/config.py +314 -0
  6. lifx_emulator-4.0.0/tests/test_cli.py +1913 -0
  7. lifx_emulator-4.0.0/tests/test_config.py +738 -0
  8. lifx_emulator-4.0.0/tests/test_export_config.py +661 -0
  9. lifx_emulator-3.1.0/src/lifx_emulator_app/__main__.py +0 -592
  10. lifx_emulator-3.1.0/tests/test_cli.py +0 -897
  11. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/.gitignore +0 -0
  12. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/README.md +0 -0
  13. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/__init__.py +0 -0
  14. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/__init__.py +0 -0
  15. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/app.py +0 -0
  16. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/mappers/__init__.py +0 -0
  17. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/mappers/device_mapper.py +0 -0
  18. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/models.py +0 -0
  19. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/routers/__init__.py +0 -0
  20. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/routers/devices.py +0 -0
  21. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/routers/monitoring.py +0 -0
  22. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/routers/scenarios.py +0 -0
  23. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/services/__init__.py +0 -0
  24. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/services/device_service.py +0 -0
  25. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/static/dashboard.js +0 -0
  26. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/src/lifx_emulator_app/api/templates/dashboard.html +0 -0
  27. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/tests/conftest.py +0 -0
  28. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/tests/test_api.py +0 -0
  29. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/tests/test_api_validation.py +0 -0
  30. {lifx_emulator-3.1.0 → lifx_emulator-4.0.0}/tests/test_cli_validation.py +0 -0
@@ -2,6 +2,26 @@
2
2
 
3
3
  <!-- version list -->
4
4
 
5
+ ## v4.0.0 (2026-02-01)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **app**: Pad zone_colors to zone_count with default color
10
+ ([`46aed0a`](https://github.com/Djelibeybi/lifx-emulator/commit/46aed0a389bf2c6185fc9f07751fea3fbbf6e8d5))
11
+
12
+ - **app**: Preserve explicit empty devices/scenarios and truncate zone_colors
13
+ ([`b5c420c`](https://github.com/Djelibeybi/lifx-emulator/commit/b5c420cb1a9bdc3cae3b6a7a373b4251828cfed5))
14
+
15
+ ### Features
16
+
17
+ - **app**: Add YAML config file support for CLI
18
+ ([`fceb9af`](https://github.com/Djelibeybi/lifx-emulator/commit/fceb9af1da6368a672cd24b58f68b2063b397c23))
19
+
20
+ ### Breaking Changes
21
+
22
+ - **app**: No devices are created by default anymore.
23
+
24
+
5
25
  ## v3.1.0 (2026-01-11)
6
26
 
7
27
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lifx-emulator
3
- Version: 3.1.0
3
+ Version: 4.0.0
4
4
  Summary: Standalone LIFX Emulator with CLI and HTTP management API
5
5
  Author-email: Avi Miller <me@dje.li>
6
6
  Maintainer-email: Avi Miller <me@dje.li>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lifx-emulator"
3
- version = "3.1.0"
3
+ version = "4.0.0"
4
4
  description = "Standalone LIFX Emulator with CLI and HTTP management API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"