esphome 2025.7.0b4__py3-none-any.whl → 2025.7.0b5__py3-none-any.whl

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.
@@ -3,8 +3,6 @@
3
3
  #include "esphome/core/component.h"
4
4
  #include "esphome/components/as3935/as3935.h"
5
5
  #include "esphome/components/spi/spi.h"
6
- #include "esphome/components/sensor/sensor.h"
7
- #include "esphome/components/binary_sensor/binary_sensor.h"
8
6
 
9
7
  namespace esphome {
10
8
  namespace as3935_spi {
esphome/const.py CHANGED
@@ -4,7 +4,7 @@ from enum import Enum
4
4
 
5
5
  from esphome.enum import StrEnum
6
6
 
7
- __version__ = "2025.7.0b4"
7
+ __version__ = "2025.7.0b5"
8
8
 
9
9
  ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
10
10
  VALID_SUBSTITUTIONS_CHARACTERS = (
@@ -309,6 +309,12 @@ void Application::disable_component_loop_(Component *component) {
309
309
  if (this->in_loop_ && i == this->current_loop_index_) {
310
310
  // Decrement so we'll process the swapped component next
311
311
  this->current_loop_index_--;
312
+ // Update the loop start time to current time so the swapped component
313
+ // gets correct timing instead of inheriting stale timing.
314
+ // This prevents integer underflow in timing calculations by ensuring
315
+ // the swapped component starts with a fresh timing reference, avoiding
316
+ // errors caused by stale or wrapped timing values.
317
+ this->loop_component_start_time_ = millis();
312
318
  }
313
319
  }
314
320
  return;
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: esphome
3
- Version: 2025.7.0b4
3
+ Version: 2025.7.0b5
4
4
  Summary: ESPHome is a system to configure your microcontrollers by simple yet powerful configuration files and control them remotely through Home Automation systems.
5
5
  Author-email: The ESPHome Authors <esphome@openhomefoundation.org>
6
6
  License: MIT
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=H_WB4rj0uEowvlhEb31EjJQwutLQ5CQkJIsNgDK-wx8,1917
5
5
  esphome/config.py,sha256=b-Gh-DEx_pax0ZKqHTKb5gmMIvaQA71bJvE-15AI0JI,42211
6
6
  esphome/config_helpers.py,sha256=BpyuWRxj5edJGIW7VP4S59i4I8g8baSlWpNyu6nB_uM,5413
7
7
  esphome/config_validation.py,sha256=_SMAcS_AhMh0kaLki86hjPZp5b95culJZtQePqoL_fU,63712
8
- esphome/const.py,sha256=mU7VLIe3-EviInBcx72Pc8stxBa5D5BJ8lTArZfh4A4,43369
8
+ esphome/const.py,sha256=ZN5l8FPwSzYuD1F2D6mg8t8hInoTSQzYPVWPyLOnkA0,43369
9
9
  esphome/coroutine.py,sha256=HNBqqhaTbpvsOI19bTXltxJCMVtoeqZPe4qTf4CKkAc,9309
10
10
  esphome/cpp_generator.py,sha256=khmyuRIOc-ST9zIZjX7uOWLy9sSJhk4C2KexoBv51uk,31946
11
11
  esphome/cpp_helpers.py,sha256=P9FVGpid75_UcKxIf-sj7GbhWGQNRcBm_2XVF3r7NtU,3998
@@ -216,7 +216,7 @@ esphome/components/as3935_i2c/as3935_i2c.cpp,sha256=hgsX0IBzLntVsQst41EhOTaMD-Ja
216
216
  esphome/components/as3935_i2c/as3935_i2c.h,sha256=Y_ZgPtVLwNe5oLrA841PuX4lLxqcxpiDonWaqK_YItQ,480
217
217
  esphome/components/as3935_spi/__init__.py,sha256=391auaqRigi9P7cZydd-5VKadpNK-1zbLyxp5syXDEQ,726
218
218
  esphome/components/as3935_spi/as3935_spi.cpp,sha256=H48t8Kjo3sqUD5oreznQOiQQFsC6kDmxCgE3Fm8w-Qo,1231
219
- esphome/components/as3935_spi/as3935_spi.h,sha256=5TKfNr9Pu4j196xmExGhde7LjxKVrpHsgF7uWna7r7A,870
219
+ esphome/components/as3935_spi/as3935_spi.h,sha256=qq6BrQPw8wCPk7By2_wfbu4MmMqma4LNtjgw3acA7w4,764
220
220
  esphome/components/as5600/__init__.py,sha256=X6MeVj1aIwgYA8OhZpRAXTUBRVM-KTKa3vGiS-Zejcw,6997
221
221
  esphome/components/as5600/as5600.cpp,sha256=w1em0O2IYeEyLeI8_Sx6bwINwxPOftZz6To6WAdJqRU,5014
222
222
  esphome/components/as5600/as5600.h,sha256=EqqWEUcSm_TlinuMtiArXL6ICLOOxyocsIYxxU--qBc,3941
@@ -3593,7 +3593,7 @@ esphome/components/zyaura/sensor.py,sha256=cSmO4ozYdi4ZD7NK4lmYjswWVmJoDvEruU1Hh
3593
3593
  esphome/components/zyaura/zyaura.cpp,sha256=F7WM8XAZ5MYuCD3eERm2_IA-O7sP1i-A-yF5TV4PqX8,3679
3594
3594
  esphome/components/zyaura/zyaura.h,sha256=7O3EGFIopUEfBp3A5sBC0l4zx2mesRxDWa_MBdGtPKQ,2307
3595
3595
  esphome/core/__init__.py,sha256=uWhgtqaPGiMeMp6KMvRs60gvFG_4jabueLzKTMuVAHc,28445
3596
- esphome/core/application.cpp,sha256=M1_ip9CpcuQac7MspqE0uawKnwbDgMUnflsBXyPGLGM,18333
3596
+ esphome/core/application.cpp,sha256=Tsl2sCS3awRjrJL5A9g2syW7s8tRwl1RtoCUhZUrQsI,18762
3597
3597
  esphome/core/application.h,sha256=upjEdRfEZWrH27s3PFYqmORG7Kd4SlbtexipPdYKwUk,21848
3598
3598
  esphome/core/area.h,sha256=mtFxmuv8fC2hArcey3cZ0F6hMXSO2QpFZ9Xv49z4rvk,393
3599
3599
  esphome/core/automation.h,sha256=UgoI-ebaL5YJ_cyRB-3ijHQxzt4cTbTaWw4eRGoOwBI,8627
@@ -3655,9 +3655,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
3655
3655
  esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
3656
3656
  esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
3657
3657
  esphome/dashboard/util/text.py,sha256=wwFtORlvHjsYkqb68IT-772LHAhWxT4OtnkIcPICQB0,317
3658
- esphome-2025.7.0b4.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3659
- esphome-2025.7.0b4.dist-info/METADATA,sha256=JwAeWnRoqwlNNGkBxX-oTWR4wKUmRfhnBjP0B5kVJ_c,3707
3660
- esphome-2025.7.0b4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3661
- esphome-2025.7.0b4.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3662
- esphome-2025.7.0b4.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3663
- esphome-2025.7.0b4.dist-info/RECORD,,
3658
+ esphome-2025.7.0b5.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3659
+ esphome-2025.7.0b5.dist-info/METADATA,sha256=Hm8UwtfOHLC_vphdoULkU0CFP34c2qrxWMuIbubMGTs,3707
3660
+ esphome-2025.7.0b5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3661
+ esphome-2025.7.0b5.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3662
+ esphome-2025.7.0b5.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3663
+ esphome-2025.7.0b5.dist-info/RECORD,,