Jesse Hills 
							
						 
					 
					
						
						
							
						
						9fbbcd6d8a 
					 
					
						
						
							
							Merge pull request  #4683  from esphome/bump-2023.4.0b1  
						
						 
						
						... 
						
						
						
						2023.4.0b1 
						
						
					 
					
						2023-04-13 11:06:53 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1a86167a47 
					 
					
						
						
							
							Bump version to 2023.4.0b1  
						
						 
						
						
						
						
					 
					
						2023-04-13 10:13:52 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						614ed7fd0c 
					 
					
						
						
							
							Merge branch 'dev' into bump-2023.4.0b1  
						
						 
						
						
						
						
					 
					
						2023-04-13 10:13:52 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								spacemanspiff2007 
							
						 
					 
					
						
						
							
						
						4eb69d6af5 
					 
					
						
						
							
							Fix restore ( #4655 )  
						
						 
						
						... 
						
						
						
						* ALWAYS_OFF for fan
* ALWAYS_OFF for light
* ALWAYS_OFF for switch 
						
						
					 
					
						2023-04-12 21:28:02 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						0547f2a931 
					 
					
						
						
							
							Add KSZ8081 support. ( #4668 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-04-12 21:22:08 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								unhold 
							
						 
					 
					
						
						
							
						
						b5fbe0b145 
					 
					
						
						
							
							Fix cut-off on 2.13" waveshare/ttgo epaper displays ( #4255 )  
						
						 
						
						... 
						
						
						
						The controller of the 2.13" waveshare/ttgo epaper displays operates with a 128x250 buffer,
while only 122x250 pixels are shown. While this can be ignored for rotations 0/270°,
with roations 90/180°, 6 pixels are cut-off from the top or left edge.
This change introduces a distinction between object width and controller width,
resulting in pixel-perfect rotations. 
						
						
					 
					
						2023-04-12 21:19:52 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								unhold 
							
						 
					 
					
						
						
							
						
						443c3c2a56 
					 
					
						
						
							
							Fix graph limits for negative values and other corner cases ( #4253 )  
						
						 
						
						... 
						
						
						
						Fix lower graph limit for negative values by rounding down instead of truncating.
Consistently handle the corner cases: empty trace, min=max (e.g. single value)
by drawing the grid lines for a single grid division. 
						
						
					 
					
						2023-04-12 21:18:09 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								X-Ryl669 
							
						 
					 
					
						
						
							
						
						d75daa9644 
					 
					
						
						
							
							Add always trigger stop ( #4249 )  
						
						 
						
						... 
						
						
						
						* feat: Add manual control config override 1/3
* feat: Add manual control config override 2/3
* feat: Add manual control config override 3/3
* No magical number is better
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com >
---------
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com > 
						
						
					 
					
						2023-04-12 21:16:44 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joe 
							
						 
					 
					
						
						
							
						
						7963abb27a 
					 
					
						
						
							
							Fix BedJet setup priority [fixes esphome/issues#3807] ( #4677 )  
						
						 
						
						... 
						
						
						
						There is a race condition where a BedJet unit previously had its BLE
"notify" flag enabled, and it continues to broadcast these notify
packets even after the ESP32 (and BLEClient) goes away, such as during
a crash or unplugging power.
BLEClient::setup_priority=AFTER_BLUETOOTH, while
BedJetHub::setup_priority=AFTER_WIFI. When the ESP32 starts back up
again, BLEClient::setup() happens first and will start receiving the
BLE notify packets almost immediately. Since we register the BLEClient
child from codegen, BedJetHub is registered as a child already by this
point, so BLEClient dispatches the notify status packet (and other gatt
events) to the BedJetHub handler, even though BedJetHub::setup() has
not been called yet.
We initialize BedJetHub::codec_ in setup(), so if BLEClient starts
dispatching gatt events before setup() is called, then codec_ will not
be initialized yet. This causes BedJetHub's gatt notify handler to call
`this->codec_->decode_notify()` on an uninitialized null pointer. Since
invoking a method does not have to dereference the pointer, that method
invocation is allowed; but later trying to access memory on that
instance results in a StoreProhibited panic.
Changing the BedJetHub's setup_priority to BLUETOOTH causes it to be
setup before BLEClient, so that by the time BLEClient starts to receive
BLE packets, BedJetHub is ready to receive them. 
						
						
					 
					
						2023-04-12 08:33:15 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0b9e8fda34 
					 
					
						
						
							
							Fix pin schema for i2s microphone ( #4680 )  
						
						 
						
						
						
						
					 
					
						2023-04-12 08:25:19 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dave Johnston 
							
						 
					 
					
						
						
							
						
						a3cacc0c8b 
					 
					
						
						
							
							Add support for SSD1306 72x40 displays ( #4659 )  
						
						 
						
						... 
						
						
						
						* add SSD1306 72x40
* fix indents
* fix clang style 
						
						
					 
					
						2023-04-12 04:02:29 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						5a4840f641 
					 
					
						
						
							
							Fix some NFC/PN532 crashes ( #4678 )  
						
						 
						
						... 
						
						
						
						* Add + use some constants, fix some crashes
* Fix PN532 crashes 
						
						
					 
					
						2023-04-12 02:29:06 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						3d7d689040 
					 
					
						
						
							
							Fix ESP32 SPI hardware assignment in Arduino fw ( #4669 )  
						
						 
						
						
						
						
					 
					
						2023-04-12 01:38:41 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b60c08dd28 
					 
					
						
						
							
							Add push to talk voice assistant ( #4648 )  
						
						 
						
						... 
						
						
						
						* Add push to talk voice assistant
* Refactor most code into voice_assistant
* Make voice_assistant the component and remove push_to_talk (can be done in yaml)
* Fix component setup
* Always AF_INET to match serverside
* Fix microphone and media player co-existence
* Format
* Update codeowners
* Update test file
* Fix endifs
* nullptr not NULL
* clang-tidy
* Format
* fixup: Add VA event data
* Generate proto
* Parse and log events
* Add default to switch
* Fix
* Add mic/va to test5 
						
						
					 
					
						2023-04-11 23:45:10 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						80bc567c31 
					 
					
						
						
							
							Bump pytest from 7.2.2 to 7.3.0 ( #4673 )  
						
						 
						
						... 
						
						
						
						Bumps [pytest](https://github.com/pytest-dev/pytest ) from 7.2.2 to 7.3.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases )
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest/compare/7.2.2...7.3.0 )
---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-10 22:29:40 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						888ac2e180 
					 
					
						
						
							
							Bump zeroconf from 0.47.4 to 0.56.0 ( #4674 )  
						
						 
						
						... 
						
						
						
						Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf ) from 0.47.4 to 0.56.0.
- [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases )
- [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md )
- [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.47.4...0.56.0 )
---
updated-dependencies:
- dependency-name: zeroconf
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-04-10 22:29:22 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jörg Thalheim 
							
						 
					 
					
						
						
							
						
						421ebcc8b2 
					 
					
						
						
							
							use PRIx macros for printing u32/i32 ints ( #4671 )  
						
						 
						
						... 
						
						
						
						This fix compilation issues with the latest esp-idf. 
						
						
					 
					
						2023-04-10 22:20:02 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b56fa8c50a 
					 
					
						
						
							
							Bump black from 23.1.0 to 23.3.0 ( #4635 )  
						
						 
						
						... 
						
						
						
						* Bump black from 23.1.0 to 23.3.0
Bumps [black](https://github.com/psf/black ) from 23.1.0 to 23.3.0.
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/23.1.0...23.3.0 )
---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Update black in pre-commit
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-04-04 02:34:36 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ben Hoff 
							
						 
					 
					
						
						
							
						
						42401775e1 
					 
					
						
						
							
							Added in mmc5603 code ( #4175 )  
						
						 
						
						... 
						
						
						
						* added in mmc5603 code
* added in codeowner
* fix linter errors
* whitespace linter errors
* added codeowner
* clang format
* remove clang format from python code
* fix whitespace
* add tests
* fix test
* make requested edits
* remove status manipulation
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-04-04 02:34:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						9c9bc58c16 
					 
					
						
						
							
							Bump pylint from 2.16.4 to 2.17.2 ( #4650 )  
						
						 
						
						... 
						
						
						
						* Bump pylint from 2.16.4 to 2.17.2
Bumps [pylint](https://github.com/PyCQA/pylint ) from 2.16.4 to 2.17.2.
- [Release notes](https://github.com/PyCQA/pylint/releases )
- [Commits](https://github.com/PyCQA/pylint/compare/v2.16.4...v2.17.2 )
---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Add return 0 to run_miniterm
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-04-03 23:55:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tracestep 
							
						 
					 
					
						
						
							
						
						fbc129cccc 
					 
					
						
						
							
							Version retry (fixes esphome/issues#3823) ( #4651 )  
						
						 
						
						
						
						
					 
					
						2023-04-03 22:23:31 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						99638190cb 
					 
					
						
						
							
							VSCode / devcontainer updates ( #4647 )  
						
						 
						
						
						
						
					 
					
						2023-04-03 19:44:46 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						d78e9e6aa8 
					 
					
						
						
							
							Number step not optional ( #4649 )  
						
						 
						
						... 
						
						
						
						* Number step not optional
* Update __init__.py
* Update __init__.py
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-04-03 19:31:11 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mikkel Jeppesen 
							
						 
					 
					
						
						
							
						
						878155a03d 
					 
					
						
						
							
							Log calibration results at level INFO ( #4240 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-31 09:05:28 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						9922eb83e2 
					 
					
						
						
							
							Support advanced UART customization ( #4465 )  
						
						 
						
						... 
						
						
						
						* Add methods to get hardware uart details.
* Fix `setRxBufferSize` error.
---------
Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-31 04:30:24 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						79f861f012 
					 
					
						
						
							
							Avoid sensor padding. ( #4638 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-31 04:29:17 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						4faa9d109e 
					 
					
						
						
							
							entity_base avoid padding bytes. ( #4637 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-31 04:28:49 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								kahrendt 
							
						 
					 
					
						
						
							
						
						28534ecc61 
					 
					
						
						
							
							Binary map bugfixes ( #4636 )  
						
						 
						
						... 
						
						
						
						* limit configuration to 64 binary sensors to match code limitation
* remove superfluous debug logging
* improve state publishing logic eliminating NAN being sent on boot in certain cases
* adjust type for bitmask shift to match mask variable type 
						
						
					 
					
						2023-03-31 04:27:24 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								felixlungu 
							
						 
					 
					
						
						
							
						
						616e0a21d8 
					 
					
						
						
							
							add bluetooth mac address in dump_config() ( #4628 )  
						
						 
						
						... 
						
						
						
						* add bluetooth mac address in dump_config()
* Update ble.cpp
* Update ble.cpp
* Update ble.cpp
* Update ble.cpp
* Update ble.cpp
* Update ble.cpp
* Update ble.cpp 
						
						
					 
					
						2023-03-30 01:12:06 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a546ffd490 
					 
					
						
						
							
							Add ifdef to new bt proxy unsubscribe ( #4634 )  
						
						 
						
						... 
						
						
						
						* Add ifdef to new bt proxy unsubscribe
* Also add to subscribe message and wrap api conneciton code
* Format file 
						
						
					 
					
						2023-03-30 01:08:51 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b5d0aede38 
					 
					
						
						
							
							Remove AUTO_LOAD from as3935 ( #4630 )  
						
						 
						
						
						
						
					 
					
						2023-03-30 01:08:31 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								github-actions[bot] 
							
						 
					 
					
						
						
							
						
						a014d853a4 
					 
					
						
						
							
							Synchronise Device Classes from Home Assistant ( #4633 )  
						
						 
						
						... 
						
						
						
						* Synchronise Device Classes from Home Assistant
* Remove count do the `DEVICE_CLASSES` list is also updated
* Format file
---------
Co-authored-by: esphomebot <esphome@nabucasa.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-29 02:47:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c4ddf7697d 
					 
					
						
						
							
							Update sync-device-classes.yml  
						
						 
						
						
						
						
					 
					
						2023-03-29 14:02:34 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a2931b6774 
					 
					
						
						
							
							Add workflow to sync device classes with HA dev ( #4629 )  
						
						 
						
						
						
						
					 
					
						2023-03-28 23:31:07 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						3ac7bf3761 
					 
					
						
						
							
							EntityBase: Move ObjectId to Flash  ( #4569 )  
						
						 
						
						... 
						
						
						
						* Move EntityBase Object Id from memory to flash.
* Sprinkler use common `setup_entity` method.
* Remove `EntityBase` from Sprinkler.
* Support for entity names set to None
* change so gh PR picks up commit.
---------
Co-authored-by: Your Name <you@example.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-28 09:00:34 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								richardhopton 
							
						 
					 
					
						
						
							
						
						922344811f 
					 
					
						
						
							
							feat: Add support to unsubscribe from BLE advertisements ( #4620 )  
						
						 
						
						... 
						
						
						
						* feat: Add support to unsubscribe from BLE advertisements
* Fix tests & clang
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-28 08:54:58 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						cb2fcaa9b1 
					 
					
						
						
							
							EntityBase Name can stay in flash. (#4594 )  
						
						 
						
						... 
						
						
						
						* `EntityBase`can stay in flash.
* Trying to please the CI.
---------
Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-28 06:38:56 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Alfredo 
							
						 
					 
					
						
						
							
						
						1f50bd0649 
					 
					
						
						
							
							Fix EzoCommandType enum ( #4593 )  
						
						 
						
						... 
						
						
						
						* Fix EzoCommandType enum
Assign explicit value to EZO_CALIBRATION, and rescale all subsequent values.
* Remove enum values
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-27 22:08:26 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						06f83bf1c0 
					 
					
						
						
							
							Fix platform restriction for bme680_bsec ( #4616 )  
						
						 
						
						... 
						
						
						
						* Fix platform restriction for bme680_bsec
* Fix
* revert spi change
* Add comment back
* Dont crash on rp2040 platform 
						
						
					 
					
						2023-03-26 22:50:33 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c2756d57d8 
					 
					
						
						
							
							Allow entity names to be set to None ( #4607 )  
						
						 
						
						... 
						
						
						
						* Allow entity names to be set to None so they take on the device friendly_name automatically
* Use empty 
						
						
					 
					
						2023-03-26 22:49:09 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Berend Haan 
							
						 
					 
					
						
						
							
						
						56504692af 
					 
					
						
						
							
							Lower range of CONF_FREQUENCY ( #4619 )  
						
						 
						
						
						
						
					 
					
						2023-03-26 22:48:17 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e542e75b9e 
					 
					
						
						
							
							Require step to be set when calling register_number ( #4622 )  
						
						 
						
						
						
						
					 
					
						2023-03-26 22:44:56 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tracestep 
							
						 
					 
					
						
						
							
						
						806e43c34c 
					 
					
						
						
							
							SX1509 minimum loop period (fixes esphome/issues#4325) ( #4613 )  
						
						 
						
						... 
						
						
						
						* Minimum loop period (fixes  esphome/issues#4325 )
* clang-tidy suggestions
* More clang-tidy suggestions 
						
						
					 
					
						2023-03-26 21:59:57 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						29e7d00894 
					 
					
						
						
							
							Bump actions/stale from 7 to 8 ( #4615 )  
						
						 
						
						... 
						
						
						
						Bumps [actions/stale](https://github.com/actions/stale ) from 7 to 8.
- [Release notes](https://github.com/actions/stale/releases )
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/stale/compare/v7...v8 )
---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-26 21:51:37 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						9ee661c1e4 
					 
					
						
						
							
							Add ability to clear the gatt cache ( #4621 )  
						
						 
						
						... 
						
						
						
						* Add ability to clear the gatt cache
With BlueZ we can fully clear the cache when something goes wrong with the services, however since this is also a cache on the ESP32 we need to be able to clear the on device cache as well for the proxies since if something goes wrong with the service resolution it can cache the bad resolution on NVS forever.
Our current client implementation is limited to clearing the memory cache in Home Assistant 89355e0879/homeassistant/components/esphome/bluetooth/client.py (L512) 
related issue https://github.com/esphome/issues/issues/4156 
https://github.com/esphome/aioesphomeapi/pull/410 
* naming
* lint
* lint
* naming
* naming
* naming
* 88 now that 87 is taken
* make const
* Update esphome/components/api/api_frame_helper.cpp 
						
						
					 
					
						2023-03-26 21:48:56 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Regev Brody 
							
						 
					 
					
						
						
							
						
						36c0e2416d 
					 
					
						
						
							
							add select_schema to select component ( #4545 )  
						
						 
						
						... 
						
						
						
						* add select_schema to select component
* add select_schema to select component
* fix cr 
						
						
					 
					
						2023-03-26 20:01:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						e4ba3ff1db 
					 
					
						
						
							
							Limit range on filter time period for remote_receiver ( #4604 )  
						
						 
						
						... 
						
						
						
						* Limit range on filter time period for remote_receiver
* pylint 
						
						
					 
					
						2023-03-23 18:41:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						be69b49880 
					 
					
						
						
							
							Bump pytest-asyncio from 0.20.3 to 0.21.0 ( #4599 )  
						
						 
						
						... 
						
						
						
						Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio ) from 0.20.3 to 0.21.0.
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases )
- [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.20.3...v0.21.0 )
---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-23 18:38:47 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						cc317d27f5 
					 
					
						
						
							
							Bump zeroconf from 0.47.3 to 0.47.4 ( #4597 )  
						
						 
						
						... 
						
						
						
						Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf ) from 0.47.3 to 0.47.4.
- [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases )
- [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md )
- [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.47.3...0.47.4 )
---
updated-dependencies:
- dependency-name: zeroconf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-23 18:38:20 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dominik Skalník 
							
						 
					 
					
						
						
							
						
						c16709ed95 
					 
					
						
						
							
							fix wrong port multiplexer name in dump GPIO function ( #4592 )  
						
						 
						
						
						
						
					 
					
						2023-03-23 18:37:40 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								guillempages 
							
						 
					 
					
						
						
							
						
						e13eaf6706 
					 
					
						
						
							
							Fix animation resizing ( #4608 )  
						
						 
						
						... 
						
						
						
						Animation resizing in RGB24 format is causing an error "Image cannot be resized to a bigger size". Other image types do not show the issue, and the only difference is the "image.thumbnail" call.
Removed the call and tested; the animation is shown with the desired size. 
						
						
					 
					
						2023-03-22 08:05:09 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a1eb3b8475 
					 
					
						
						
							
							Swap curly brackets for round on LockGuard ( #4610 )  
						
						 
						
						
						
						
					 
					
						2023-03-22 07:56:02 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d52e425ba2 
					 
					
						
						
							
							Remove EntityBase from sprinkler ( #4606 )  
						
						 
						
						... 
						
						
						
						* Remove EntityBase form sprinkler
* remove unneeded method
* Set name correctly
Move some timers to `setup` that rely on this->name_
* Fix SprinklerControllerSwitch setup
* Update esphome/components/sprinkler/__init__.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
---------
Co-authored-by: Samuel Sieb <samuel-github@sieb.net >
Co-authored-by: Keith Burzinski <kbx81x@gmail.com > 
						
						
					 
					
						2023-03-22 07:35:16 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d70e7da0ef 
					 
					
						
						
							
							rp2040: Use fake Mutex lock ( #4602 )  
						
						 
						
						
						
						
					 
					
						2023-03-21 20:25:19 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d42f35de5d 
					 
					
						
						
							
							Wrap ipv6 code a bit more ( #4574 )  
						
						 
						
						... 
						
						
						
						* Wrap ipv6 code a bit more for when ipv6 support should not be compiled in
* More checks
* More uses
* Fix 
						
						
					 
					
						2023-03-21 20:24:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jerome992 
							
						 
					 
					
						
						
							
						
						cd57469e06 
					 
					
						
						
							
							Fix negative sqrt root in ct_clamp_sensor.cpp ( #2701 ) ( #4236 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jerome <jerome992@internet.lu > 
						
						
					 
					
						2023-03-20 04:22:22 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Aaron S. Jackson 
							
						 
					 
					
						
						
							
						
						d98d6ff45f 
					 
					
						
						
							
							B/W support for GooDisplay GDEY029T94 (as used on Adafruit MagTag) ( #4222 )  
						
						 
						
						... 
						
						
						
						* B/W support for GooDisplay GDEY029T94
* Fix python style ci
* linter recommendations
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-20 03:45:50 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						14e38f0469 
					 
					
						
						
							
							Upgrade clang-format to v13 ( #4535 )  
						
						 
						
						... 
						
						
						
						* Upgrade clang-format to v13
* Apply clang-format-13 formatting changes
* Format
* Format bme_680
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-20 03:38:41 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f0f6d3f1cd 
					 
					
						
						
							
							Disallow uart0/1/2 as ids in config ( #4446 )  
						
						 
						
						... 
						
						
						
						* Disallow uart0/1/2 as ids in config
* Update test files 
						
						
					 
					
						2023-03-20 02:29:21 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0b383542da 
					 
					
						
						
							
							Split test3.yaml ( #4591 )  
						
						 
						
						
						
						
					 
					
						2023-03-19 22:39:02 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Bisbjerg 
							
						 
					 
					
						
						
							
						
						b2cec10601 
					 
					
						
						
							
							Fix outdated filter string in platformio_api ( #4587 )  
						
						 
						
						
						
						
					 
					
						2023-03-19 19:11:18 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sybren A. Stüvel 
							
						 
					 
					
						
						
							
						
						48658d5a55 
					 
					
						
						
							
							Add a simple 'skip_initial' filter ( #4582 )  
						
						 
						
						... 
						
						
						
						* Add a simple 'skip' filter
This filter simply skips the first `send_first_at` values, then passes
everything as-is. This is quite useful when you know the first few sensor
readings should be ignored.
Example YAML:
```yaml
sensor:
  - platform: sgp30
    id: mysensor_sgp30
    eco2:
      id: mysensor_sgp30_co2
      name: "eCO₂"
      accuracy_decimals: 0
      filters:
        - skip:
            send_first_at: 41
```
* Rename the filter to `skip_initial` and simplify the schema
New usage:
```yaml
      filters:
        - skip_initial: 41
```
* Apply clang-format 
						
						
					 
					
						2023-03-19 19:08:51 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Peter Halicky 
							
						 
					 
					
						
						
							
						
						5207ca1d52 
					 
					
						
						
							
							Add support for ESP32 CAM resolutions for 3MP and 5MP sensors (OV5640 for example). Also support (almost) arbitrary camera clock, some cameras/ESP chips need slightly lower clock than 20MHz to avoid image corruption. ( #4580 )  
						
						 
						
						
						
						
					 
					
						2023-03-19 19:03:38 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						7196fb8e82 
					 
					
						
						
							
							add define __str__ method ( #4576 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-19 18:55:12 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						48ada2eebb 
					 
					
						
						
							
							Bump aioesphomeapi from 13.5.0 to 13.5.1 ( #4572 )  
						
						 
						
						... 
						
						
						
						Bumps [aioesphomeapi](https://github.com/esphome/aioesphomeapi ) from 13.5.0 to 13.5.1.
- [Release notes](https://github.com/esphome/aioesphomeapi/releases )
- [Commits](https://github.com/esphome/aioesphomeapi/compare/v13.5.0...v13.5.1 )
---
updated-dependencies:
- dependency-name: aioesphomeapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-19 18:54:18 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nathaniel Wesley Filardo 
							
						 
					 
					
						
						
							
						
						0de5808ed2 
					 
					
						
						
							
							climate: brown paper bag fix for on_configure ( #4573 )  
						
						 
						
						... 
						
						
						
						I forgot this hunk in https://github.com/esphome/esphome/pull/4511  .
I'm sorry for the noise. 
						
						
					 
					
						2023-03-19 18:54:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kai Gerken 
							
						 
					 
					
						
						
							
						
						ebc544e4b4 
					 
					
						
						
							
							Fix compile error on pzemdc.h ( #4583 )  
						
						 
						
						
						
						
					 
					
						2023-03-19 18:31:05 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Raph 
							
						 
					 
					
						
						
							
						
						a31fb3c987 
					 
					
						
						
							
							Add option flip_x ( #4555 )  
						
						 
						
						... 
						
						
						
						* Adding flip_x
* Adding flip_x
* Adding flip_x
* Adding flip_x
* Adding flip_x
* convert tab to space
* update format 
						
						
					 
					
						2023-03-15 22:23:01 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						dfc7cd7f5d 
					 
					
						
						
							
							allow using a binary output for the status led ( #4532 )  
						
						 
						
						... 
						
						
						
						* allow using a binary output for the status led
* lint
* output status as well
* simplify
---------
Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-03-15 22:21:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Witold Krecicki 
							
						 
					 
					
						
						
							
						
						a8bb2a42a1 
					 
					
						
						
							
							Add an option to force SPI into software mode, useful when ( #4556 )  
						
						 
						
						... 
						
						
						
						reusing pins for different purposes. 
						
						
					 
					
						2023-03-15 22:21:25 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								R Huish 
							
						 
					 
					
						
						
							
						
						3d4c0e6667 
					 
					
						
						
							
							Added missing PM_1_0 and PM_10_0 for PMS5003T and PMS5003ST  ( #4560 )  
						
						 
						
						... 
						
						
						
						* Added missing PM_1_0 and PM_10_0 for PMS5003T
Added missing PM_1_0 and PM_10_0 for PMS5003T
* Revert "Added missing PM_1_0 and PM_10_0 for PMS5003T"
This reverts commit 86084f7c61 .
* Added tests for PMS5003T
* Added missing PM_1_0 and PM_10_0 for PMS5003T PMS5003ST
* Added missing PM_1_0 and PM_10_0 for PMS5003T
* lint: Trailing whitespace fixed
* tab character removed
* Clang format suggested edit 
						
						
					 
					
						2023-03-15 22:21:10 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Trent Houliston 
							
						 
					 
					
						
						
							
						
						25fb288016 
					 
					
						
						
							
							Update the delta filter to take a percentage value as well as an absolute value ( #4391 )  
						
						 
						
						
						
						
					 
					
						2023-03-15 22:20:18 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						1b8b8cdd11 
					 
					
						
						
							
							EntityBase: Icon string can stay in flash. ( #4566 )  
						
						 
						
						... 
						
						
						
						* Icon string can stay in flash.
* Remove redundant const.
---------
Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-15 22:20:12 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c298c1166f 
					 
					
						
						
							
							Merge pull request  #4567  from esphome/bump-2023.3.0b6  
						
						 
						
						... 
						
						
						
						2023.3.0b6 
						
						
					 
					
						2023-03-16 09:34:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c3d9eef01f 
					 
					
						
						
							
							Bump version to 2023.3.0b6  
						
						 
						
						
						
						
					 
					
						2023-03-16 08:57:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						5ffdc66864 
					 
					
						
						
							
							fixing  shrink and extend functions of the displaybuffer's Rect class  ( #4565 )  
						
						 
						
						... 
						
						
						
						* fixing rectangle's `shrink` and `extend`
* fixed the rect::shrink and rect::inside methods
and added rect:equal() method
* fixed internal clang issue again. When would is
this going to be fixed :(
* fixed internal clang issue again. When would is
this going to be fixed :(
* remove trailing space 
						
						
					 
					
						2023-03-16 08:57:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						2f50e18eb5 
					 
					
						
						
							
							fixing  shrink and extend functions of the displaybuffer's Rect class  ( #4565 )  
						
						 
						
						... 
						
						
						
						* fixing rectangle's `shrink` and `extend`
* fixed the rect::shrink and rect::inside methods
and added rect:equal() method
* fixed internal clang issue again. When would is
this going to be fixed :(
* fixed internal clang issue again. When would is
this going to be fixed :(
* remove trailing space 
						
						
					 
					
						2023-03-15 19:45:50 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9922c1503a 
					 
					
						
						
							
							Merge pull request  #4564  from esphome/bump-2023.3.0b5  
						
						 
						
						... 
						
						
						
						2023.3.0b5 
						
						
					 
					
						2023-03-15 23:46:14 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fce99d4b17 
					 
					
						
						
							
							Bump version to 2023.3.0b5  
						
						 
						
						
						
						
					 
					
						2023-03-15 21:20:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						11567085d8 
					 
					
						
						
							
							Mark esp32_touch supported only on standard esp32 variant ( #4562 )  
						
						 
						
						... 
						
						
						
						* Mark esp32_touch supported only on standard esp32 variant
* Add back default 
						
						
					 
					
						2023-03-15 21:20:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						83f8e84247 
					 
					
						
						
							
							Remove switch actions during config; bump setup priority ( #4563 )  
						
						 
						
						
						
						
					 
					
						2023-03-15 21:20:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						215107e8ea 
					 
					
						
						
							
							Mark esp32_touch supported only on standard esp32 variant ( #4562 )  
						
						 
						
						... 
						
						
						
						* Mark esp32_touch supported only on standard esp32 variant
* Add back default 
						
						
					 
					
						2023-03-15 07:42:33 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						d3f2b93c42 
					 
					
						
						
							
							Remove switch actions during config; bump setup priority ( #4563 )  
						
						 
						
						
						
						
					 
					
						2023-03-15 05:21:23 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						11eb5cb0fa 
					 
					
						
						
							
							Merge pull request  #4559  from esphome/bump-2023.3.0b4  
						
						 
						
						... 
						
						
						
						2023.3.0b4 
						
						
					 
					
						2023-03-14 16:17:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9a7af97b2d 
					 
					
						
						
							
							Bump version to 2023.3.0b4  
						
						 
						
						
						
						
					 
					
						2023-03-14 14:11:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stroe Andrei Catalin 
							
						 
					 
					
						
						
							
						
						5e11469f50 
					 
					
						
						
							
							Added response for Tuya RSSI command ( #4549 )  
						
						 
						
						... 
						
						
						
						* Added wifi rssi util
Added tuya mcu response to wifi rssi command
* Cleanup
* PR Comments
* PR Comments 
						
						
					 
					
						2023-03-14 14:11:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								DAVe3283 
							
						 
					 
					
						
						
							
						
						0c7a3d1fff 
					 
					
						
						
							
							Revert "Remove state class from uptime sensor ( #4345 )" ( #4557 )  
						
						 
						
						... 
						
						
						
						This reverts commit 36c2e770bf .
Addresses esphome/issues#4193 . 
						
						
					 
					
						2023-03-14 14:11:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eduardo Roldan 
							
						 
					 
					
						
						
							
						
						8a705bf4b0 
					 
					
						
						
							
							pipsolar component. Correct the sscanf format for QPIG command parsing to set pv_input_voltage as float (not int) ( #4165 )  
						
						 
						
						
						
						
					 
					
						2023-03-14 14:11:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stroe Andrei Catalin 
							
						 
					 
					
						
						
							
						
						ee7102fcd1 
					 
					
						
						
							
							Added response for Tuya RSSI command ( #4549 )  
						
						 
						
						... 
						
						
						
						* Added wifi rssi util
Added tuya mcu response to wifi rssi command
* Cleanup
* PR Comments
* PR Comments 
						
						
					 
					
						2023-03-14 00:54:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								DAVe3283 
							
						 
					 
					
						
						
							
						
						a44e38300b 
					 
					
						
						
							
							Revert "Remove state class from uptime sensor ( #4345 )" ( #4557 )  
						
						 
						
						... 
						
						
						
						This reverts commit 36c2e770bf .
Addresses esphome/issues#4193 . 
						
						
					 
					
						2023-03-14 00:52:19 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eduardo Roldan 
							
						 
					 
					
						
						
							
						
						b00e20c29f 
					 
					
						
						
							
							pipsolar component. Correct the sscanf format for QPIG command parsing to set pv_input_voltage as float (not int) ( #4165 )  
						
						 
						
						
						
						
					 
					
						2023-03-13 22:46:46 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6a89180deb 
					 
					
						
						
							
							Merge pull request  #4553  from esphome/bump-2023.3.0b3  
						
						 
						
						... 
						
						
						
						2023.3.0b3 
						
						
					 
					
						2023-03-13 15:31:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						65d2b806cc 
					 
					
						
						
							
							Bump version to 2023.3.0b3  
						
						 
						
						
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c149a3033c 
					 
					
						
						
							
							Map gpio pins for touch on esp32-s2/s3 ( #4552 )  
						
						 
						
						... 
						
						
						
						* Map gpio pins for touch on esp32-s2/s3
* fix value 
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						4b7c233f1a 
					 
					
						
						
							
							On the ILI9xxx display's enable the psram on esp32 and allow big screen ( #4551 )  
						
						 
						
						... 
						
						
						
						* enable the psram on esp32 and allow big screen
* update CODEOWNERS
* small update
* update CODEOWNERS again.
* Removed the M5STACK because it is a ESP32 device.
* i removed the wrong model
* update the error message. 
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6e8e9c2aa9 
					 
					
						
						
							
							Allow AUTO_LOAD to be a function ( #4550 )  
						
						 
						
						
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dorian Zedler 
							
						 
					 
					
						
						
							
						
						b6f628ee40 
					 
					
						
						
							
							Feat: add support for hex color in color component ( #4493 )  
						
						 
						
						... 
						
						
						
						* Feat: add support for hex color in color component
* Chore: move hex color validator to color component
* Chore: add test
* Chore: fix formatting
* Chore: make linter happy
* Chore: make linter happy
* Fix: parse correct offsets
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
* Chore: use cv.Invalid
* Fix: remove # because it indicates a comment in yaml
* Fix: only allow hex if no other color value is set
* Fix: tests
* Fix: mutual exclusion of raw and hex colors
* Chore: format file
* Update __init__.py
---------
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Murray 
							
						 
					 
					
						
						
							
						
						bf79a700b7 
					 
					
						
						
							
							Add carbon dioxide device class to scd30 sensor schema. ( #4547 )  
						
						 
						
						
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jakehdk 
							
						 
					 
					
						
						
							
						
						cdeb6e750f 
					 
					
						
						
							
							Add support for new clones of mpu6050 responding with 0x70 address ( #4546 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: jakehdk <Jake@Jakobs-MacBook-Pro.local > 
						
						
					 
					
						2023-03-13 13:32:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d642aeba0f 
					 
					
						
						
							
							Map gpio pins for touch on esp32-s2/s3 ( #4552 )  
						
						 
						
						... 
						
						
						
						* Map gpio pins for touch on esp32-s2/s3
* fix value 
						
						
					 
					
						2023-03-13 00:13:36 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						6a6aee510d 
					 
					
						
						
							
							On the ILI9xxx display's enable the psram on esp32 and allow big screen ( #4551 )  
						
						 
						
						... 
						
						
						
						* enable the psram on esp32 and allow big screen
* update CODEOWNERS
* small update
* update CODEOWNERS again.
* Removed the M5STACK because it is a ESP32 device.
* i removed the wrong model
* update the error message. 
						
						
					 
					
						2023-03-13 00:13:19 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ea17a92dbc 
					 
					
						
						
							
							Allow AUTO_LOAD to be a function ( #4550 )  
						
						 
						
						
						
						
					 
					
						2023-03-12 22:43:31 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dorian Zedler 
							
						 
					 
					
						
						
							
						
						32a0a60480 
					 
					
						
						
							
							Feat: add support for hex color in color component ( #4493 )  
						
						 
						
						... 
						
						
						
						* Feat: add support for hex color in color component
* Chore: move hex color validator to color component
* Chore: add test
* Chore: fix formatting
* Chore: make linter happy
* Chore: make linter happy
* Fix: parse correct offsets
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
* Chore: use cv.Invalid
* Fix: remove # because it indicates a comment in yaml
* Fix: only allow hex if no other color value is set
* Fix: tests
* Fix: mutual exclusion of raw and hex colors
* Chore: format file
* Update __init__.py
---------
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-12 20:26:27 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Murray 
							
						 
					 
					
						
						
							
						
						5a56644702 
					 
					
						
						
							
							Add carbon dioxide device class to scd30 sensor schema. ( #4547 )  
						
						 
						
						
						
						
					 
					
						2023-03-12 20:16:48 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jakehdk 
							
						 
					 
					
						
						
							
						
						29113808ee 
					 
					
						
						
							
							Add support for new clones of mpu6050 responding with 0x70 address ( #4546 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: jakehdk <Jake@Jakobs-MacBook-Pro.local > 
						
						
					 
					
						2023-03-12 20:14:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						dd226360bb 
					 
					
						
						
							
							Merge pull request  #4542  from esphome/bump-2023.3.0b2  
						
						 
						
						... 
						
						
						
						2023.3.0b2 
						
						
					 
					
						2023-03-09 19:03:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1a9aedf152 
					 
					
						
						
							
							Bump version to 2023.3.0b2  
						
						 
						
						
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlos Garcia Saura 
							
						 
					 
					
						
						
							
						
						d82c6df57e 
					 
					
						
						
							
							Correct BME680 gas calculation and heater_off ( #4498 )  
						
						 
						
						... 
						
						
						
						* Fix missing data array
* Fix incorrect bit offset
* Correct variable types
* Do same conversions as in original library
* Correct clang-format
* Move out float conversion for clarity
* Added check for heater stability
* Correct clang format
* Allow reporting gas resistance when heater is disabled
* Correct clang format
* Better error reporting by @DAVe3283
* Correct signed operation, range switching error was positive all the time 
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						7c91b4474a 
					 
					
						
						
							
							Revert storing Font glyphs in manually-allocated memory ( #4516 )  
						
						 
						
						... 
						
						
						
						This partially reverts commit 62459a8ae1 . 
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						a4f21db272 
					 
					
						
						
							
							Drop broken logging macros ( #4534 )  
						
						 
						
						
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						58a8e1859e 
					 
					
						
						
							
							Renaming and extending the ili9341 to the ili9xxx component ( #4275 )  
						
						 
						
						... 
						
						
						
						* - Removed cleaning the screen twice.
  \Should be handled by  `DisplayBuffer::init_internal_();`
- Made ili9341::initalize() protected and renamed
  \ it to ili9341::initalize().
- ili9341::initalize() should only init the display
  \ and set the width and heigth.
* removed to much
* clang format fixes
* removing trailing underscors for
protected virtual methods
* removed the "override"  on display()
* clang fixes
* restored old changes
* Renamed the ili9341 platform to ili9xxx and added
multiple drivers as well. including PR #3848 
* fixed most of the clang reported issues
* fixed reported issues
* last fixes
* Setting the right codeowners
* missing changes
* fixed naming Display() method.
* clang again
* clang fix
* fixes reported by @jesserockz & @gpambrozio
* a change to display.py removing an unneeded var
* re-introduce **backlight** option.
* update the ili9488 initialization
* update the ili9488 initialization and fix typo
* fixed typo
* add missing constants
* swap height and width back for the ili9488
* init fixes ili9488
* fixed lint issue
testing the init code
* oeps
* init fixes ili9488
* fixed wrong define
* fixed wrong define again
* removed some spaces
* revert to ili9341
* Remove parts that where used for
the switchplate
* lint fixes and removing unused function
* fix error and introducing 16bit color option
* fix error and introducing 16bit color option
* fix clang issue
* clang fix
* clang issue again
* is this what clang exprect
* clang fix
* clang fix
* try again
* let try again
* and again
* and the last clang fix
* remove the need of wifi
* update dimentions
* update ili8488 init code.
* update dimentions
* allow to change height and width
* dump color mode config
* fix
* fix
* modify logging
* referd back unrelated change
* code formatting commit and moving functions around
* add missing ;
* update code
* update code
* use the correct write_array for sending uint16_t
* fix panic loop
* fix panic loop
* - update the test file
- fixed sending display data
* clang fixes
* clang fixes
* clang fixes again
* remove .gitignore items
* remove .gitignore items
* make sure Update() can can not be called while
called
* clang correction
* adding a test yaml for the ili9341
* Update ili9341 example
* Make test ili9xxx/tests only local
* restore back old ili9341 driver code
* Add a new config for the M5Core
* fix clang request
* reverd to restore of the old ili9341
there is no proper way to say it is depricated.
* Remove the backlight/led pin from the config.
You need to use a proper light platform component
* Ili9488init changes (#88 )
Fixed ILI9488 init settings, and adjusted pixel handling code to push pixels in 18 bit format.
This does not change the internal 16-bit representation.
* fixed some leftover clang issues from the merge.
* fixed the slang-tidy request.
* remove `backlight_pin` warning.
---------
Co-authored-by: JD Steffen <jdsteffen81@gmail.com > 
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Russell Cloran 
							
						 
					 
					
						
						
							
						
						2bed5b18c1 
					 
					
						
						
							
							Add ESP32-S3 support in NeoPixelBus component ( #4114 )  
						
						 
						
						... 
						
						
						
						* Add ESP32-S3 support in NeoPixelBus component
* Update NeoPixelBus version in platformio.ini 
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jared Sanson 
							
						 
					 
					
						
						
							
						
						fb5eb57345 
					 
					
						
						
							
							Fix ethernet clk_mode for GPIO0_OUT ( #4307 )  
						
						 
						
						... 
						
						
						
						* Fix GPIO0_OUT definition for ethernet component
* Formatting
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-09 15:47:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6471361715 
					 
					
						
						
							
							Format test files ( #4541 )  
						
						 
						
						
						
						
					 
					
						2023-03-09 01:54:51 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlos Garcia Saura 
							
						 
					 
					
						
						
							
						
						01687a9d57 
					 
					
						
						
							
							Correct BME680 gas calculation and heater_off ( #4498 )  
						
						 
						
						... 
						
						
						
						* Fix missing data array
* Fix incorrect bit offset
* Correct variable types
* Do same conversions as in original library
* Correct clang-format
* Move out float conversion for clarity
* Added check for heater stability
* Correct clang format
* Allow reporting gas resistance when heater is disabled
* Correct clang format
* Better error reporting by @DAVe3283
* Correct signed operation, range switching error was positive all the time 
						
						
					 
					
						2023-03-09 00:34:06 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						801fbf44c5 
					 
					
						
						
							
							Revert storing Font glyphs in manually-allocated memory ( #4516 )  
						
						 
						
						... 
						
						
						
						This partially reverts commit 62459a8ae1 . 
						
						
					 
					
						2023-03-09 00:14:34 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						ba1416cc0e 
					 
					
						
						
							
							Drop deprecated entity property base methods ( #4539 )  
						
						 
						
						
						
						
					 
					
						2023-03-09 00:08:45 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						afc1c83af4 
					 
					
						
						
							
							Mark unique_id() override as deprecated ( #4538 )  
						
						 
						
						
						
						
					 
					
						2023-03-09 00:06:20 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						da056866ff 
					 
					
						
						
							
							Drop broken logging macros ( #4534 )  
						
						 
						
						
						
						
					 
					
						2023-03-09 00:03:33 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						336c2d34e6 
					 
					
						
						
							
							Renaming and extending the ili9341 to the ili9xxx component ( #4275 )  
						
						 
						
						... 
						
						
						
						* - Removed cleaning the screen twice.
  \Should be handled by  `DisplayBuffer::init_internal_();`
- Made ili9341::initalize() protected and renamed
  \ it to ili9341::initalize().
- ili9341::initalize() should only init the display
  \ and set the width and heigth.
* removed to much
* clang format fixes
* removing trailing underscors for
protected virtual methods
* removed the "override"  on display()
* clang fixes
* restored old changes
* Renamed the ili9341 platform to ili9xxx and added
multiple drivers as well. including PR #3848 
* fixed most of the clang reported issues
* fixed reported issues
* last fixes
* Setting the right codeowners
* missing changes
* fixed naming Display() method.
* clang again
* clang fix
* fixes reported by @jesserockz & @gpambrozio
* a change to display.py removing an unneeded var
* re-introduce **backlight** option.
* update the ili9488 initialization
* update the ili9488 initialization and fix typo
* fixed typo
* add missing constants
* swap height and width back for the ili9488
* init fixes ili9488
* fixed lint issue
testing the init code
* oeps
* init fixes ili9488
* fixed wrong define
* fixed wrong define again
* removed some spaces
* revert to ili9341
* Remove parts that where used for
the switchplate
* lint fixes and removing unused function
* fix error and introducing 16bit color option
* fix error and introducing 16bit color option
* fix clang issue
* clang fix
* clang issue again
* is this what clang exprect
* clang fix
* clang fix
* try again
* let try again
* and again
* and the last clang fix
* remove the need of wifi
* update dimentions
* update ili8488 init code.
* update dimentions
* allow to change height and width
* dump color mode config
* fix
* fix
* modify logging
* referd back unrelated change
* code formatting commit and moving functions around
* add missing ;
* update code
* update code
* use the correct write_array for sending uint16_t
* fix panic loop
* fix panic loop
* - update the test file
- fixed sending display data
* clang fixes
* clang fixes
* clang fixes again
* remove .gitignore items
* remove .gitignore items
* make sure Update() can can not be called while
called
* clang correction
* adding a test yaml for the ili9341
* Update ili9341 example
* Make test ili9xxx/tests only local
* restore back old ili9341 driver code
* Add a new config for the M5Core
* fix clang request
* reverd to restore of the old ili9341
there is no proper way to say it is depricated.
* Remove the backlight/led pin from the config.
You need to use a proper light platform component
* Ili9488init changes (#88 )
Fixed ILI9488 init settings, and adjusted pixel handling code to push pixels in 18 bit format.
This does not change the internal 16-bit representation.
* fixed some leftover clang issues from the merge.
* fixed the slang-tidy request.
* remove `backlight_pin` warning.
---------
Co-authored-by: JD Steffen <jdsteffen81@gmail.com > 
						
						
					 
					
						2023-03-08 23:03:49 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Russell Cloran 
							
						 
					 
					
						
						
							
						
						f3a969d35c 
					 
					
						
						
							
							Add ESP32-S3 support in NeoPixelBus component ( #4114 )  
						
						 
						
						... 
						
						
						
						* Add ESP32-S3 support in NeoPixelBus component
* Update NeoPixelBus version in platformio.ini 
						
						
					 
					
						2023-03-08 22:35:40 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						63db42a1d4 
					 
					
						
						
							
							Merge pull request  #4536  from esphome/bump-2023.3.0b1  
						
						 
						
						... 
						
						
						
						2023.3.0b1 
						
						
					 
					
						2023-03-09 10:43:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jared Sanson 
							
						 
					 
					
						
						
							
						
						c12dd77c64 
					 
					
						
						
							
							Fix ethernet clk_mode for GPIO0_OUT ( #4307 )  
						
						 
						
						... 
						
						
						
						* Fix GPIO0_OUT definition for ethernet component
* Formatting
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-08 21:03:11 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f58ffe41f8 
					 
					
						
						
							
							Bump version to 2023.3.0b1  
						
						 
						
						
						
						
					 
					
						2023-03-09 09:09:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4f138c600b 
					 
					
						
						
							
							Bump version to 2023.4.0-dev  
						
						 
						
						
						
						
					 
					
						2023-03-09 09:09:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						445d2e372c 
					 
					
						
						
							
							Merge branch 'dev' into bump-2023.3.0b1  
						
						 
						
						
						
						
					 
					
						2023-03-09 09:09:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kai Gerken 
							
						 
					 
					
						
						
							
						
						1087cb55b4 
					 
					
						
						
							
							Added pzemdc reset energy action ( #4481 )  
						
						 
						
						... 
						
						
						
						* remove unused sensors on pzemdc
* add reset energy action for pzemdc
* fix lint errors
* remove trailing space on pzemdc.h
* make method reset_energy of pzemdc public
* Apply suggestions from code review
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-08 19:00:44 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						600f4be2c4 
					 
					
						
						
							
							Bump esp-idf to 4.4.4 ( #4528 )  
						
						 
						
						... 
						
						
						
						There are some nice BLE fixes and this uses about ~5000-8000 bytes
less RAM
https://github.com/espressif/esp-idf/releases/tag/v4.4.4  
						
						
					 
					
						2023-03-08 18:25:25 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						5e6665494d 
					 
					
						
						
							
							Use PSRam for BLE scan results. ( #4486 )  
						
						 
						
						... 
						
						
						
						* Use PSRam for BLE scan results.
* Format Document
* Use generic define `CONFIG_SPIRAM`.
* Formatting changes.
* Memory allocation is allowed to fail.
* Use mark_failed instead of abort.
---------
Co-authored-by: Your Name <you@example.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-08 18:23:02 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2ef25f3153 
					 
					
						
						
							
							Fix ethernet driver setting gpio 5 high when no power pin defined ( #4531 )  
						
						 
						
						
						
						
					 
					
						2023-03-08 07:12:07 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Morgan Robertson 
							
						 
					 
					
						
						
							
						
						bc28ea1fde 
					 
					
						
						
							
							Add AS7341 spectral color sensor ( #4331 )  
						
						 
						
						... 
						
						
						
						* Add support for AS7341 spectral color sensor.
* Run clang-format and clang-tidy.
* Post-review changes.
* Apply suggestions from code review
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-08 01:15:49 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						623e31ddee 
					 
					
						
						
							
							sn74hc165 fixes ( #4457 )  
						
						 
						
						... 
						
						
						
						* Add delay between clock changes on sn74hc165
* Increase to 10us
* Add another delay after clock low
* Print input bits every second
* Fix pin order
* Remove log
* Fix for inverted pins
* formatting 
						
						
					 
					
						2023-03-08 01:11:12 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						ceebe14628 
					 
					
						
						
							
							Add ability to await safe mode in codegen ( #4529 )  
						
						 
						
						... 
						
						
						
						* Add ability to await OTA safe mode
* Make pylint happy 
						
						
					 
					
						2023-03-07 21:29:45 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								DAVe3283 
							
						 
					 
					
						
						
							
						
						b29cc58144 
					 
					
						
						
							
							Add absolute humidity component ( #4519 )  
						
						 
						
						... 
						
						
						
						* Import Absolute Humidity component
https://PigLab.ReaperLegion.net/home-automation/hass/esphome/custom-components/absolute-humidity 
* Fix terminology, add some docstrings
* Switch from double to float
https://github.com/esphome/esphome/pull/4519#pullrequestreview-1327615169 
The additional precision doesn't matter in practice.
* Address code review suggestions
* Lint code 
						
						
					 
					
						2023-03-07 20:47:25 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						1b328da265 
					 
					
						
						
							
							Bump pylint from 2.16.2 to 2.16.4 ( #4524 )  
						
						 
						
						... 
						
						
						
						Bumps [pylint](https://github.com/PyCQA/pylint ) from 2.16.2 to 2.16.4.
- [Release notes](https://github.com/PyCQA/pylint/releases )
- [Commits](https://github.com/PyCQA/pylint/compare/v2.16.2...v2.16.4 )
---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-07 07:21:45 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						06ca5354b2 
					 
					
						
						
							
							Bump pytest from 7.2.1 to 7.2.2 ( #4505 )  
						
						 
						
						... 
						
						
						
						Bumps [pytest](https://github.com/pytest-dev/pytest ) from 7.2.1 to 7.2.2.
- [Release notes](https://github.com/pytest-dev/pytest/releases )
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest/compare/7.2.1...7.2.2 )
---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-07 07:21:23 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bisbastuner 
							
						 
					 
					
						
						
							
						
						356efdb92c 
					 
					
						
						
							
							Add support for multiple devices in bme680_bsec ( #3550 )  
						
						 
						
						... 
						
						
						
						* Add initial support for multiple devices
Re-introduce support for multiple I2C devices (it was suppressed in df37a7635f ). Devices are identified by their I2C address, and the BME680 can only have the 0x76 or 0x77 address, so this adds support for a maximum of two devices.
* Reintegrate commit ebf13a0b 
Reintegrate commit ebf13a0ba0  which was lost in my changes (I were working on old files)
* wrong commit
* wrong commit
* Reintegrate commit ebf13a0b 
Reintegrate commit ebf13a0ba0  which was lost due to me working on old files
* Reintroduce newlines at end of files
* Reintroduce newlines at end of files
* Adhere to codebase standards
Obey the "All uses of class members and member functions should be prefixed with this-> to distinguish them from global functions in code review" rule of the Codebase Standards
* Fix formatting according to clang-format
* Perform the BSEC library reinitialization+snapshot only when more than one device is present
* Fix formatting according to clang-format
* Degrade abort message in restore_state_() from warning to verbose
This always happen at initial setup, so it's not a really useful message; when some real problems arise, we'll have a more useful warning from snapshot_state_()
Co-authored-by: Trevor North <trevor@freedisc.co.uk >
* Reduce peak stack usage to avoid bootloops on ESP8266
Achieved mainly by moving the work_buffer needed by the BSEC library to the heap, as a single global work buffer shared by all instances.
::set_config_ has been reverted to a code path similar to the original, as that reduces peak stack usage enough to be OK on ESP8266 even without moving the work_buffer to the heap.
* Fix formatting according to clang-format
* Add support for devices with the same i2c address
Devices are now identified using their index in the BME680BSECComponent::instances member, which became a vector. This allows adding two devices with the same i2c address (which should be placed on different i2c buses). Since a BME680 can only have an address of 0x76 or 0x77, a maximum of 2 devices could be added before this commit. Now there is no theoretical limit on the number of devices which could be added.
* Fix formatting according to clang-format
* Fix formatting according to clang-format
---------
Co-authored-by: Trevor North <trevor@freedisc.co.uk >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-07 07:15:40 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						bb5ab8b36d 
					 
					
						
						
							
							Bump esptool from 4.5 to 4.5.1 ( #4497 )  
						
						 
						
						... 
						
						
						
						Bumps [esptool](https://github.com/espressif/esptool ) from 4.5 to 4.5.1.
- [Release notes](https://github.com/espressif/esptool/releases )
- [Commits](https://github.com/espressif/esptool/compare/v4.5...v4.5.1 )
---
updated-dependencies:
- dependency-name: esptool
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-07 06:38:05 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								kahrendt 
							
						 
					 
					
						
						
							
						
						6ecf4ecac6 
					 
					
						
						
							
							FS3000 sensor ( #4502 )  
						
						 
						
						... 
						
						
						
						* Add support for FS3000 sensor.
* add fs3000 to test yaml
* Clean up code with clang.
* Clean up sensor.py file.
* Update CODEOWNERS file.
* Apply suggestions from code review regarding sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Apply suggestions from code review for basic issues regarding C++ code
- removed unnecessary default for FS3000Model
- use "this->" before any sensor update
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Move model setup to overall setup function.
* Remove unneeded CONF_ID from sensor.py
* Run clang-format
* Move set_model code to header file now that it is simplified
* Update fs3000.h
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-07 04:25:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nathaniel Wesley Filardo 
							
						 
					 
					
						
						
							
						
						05ab49a615 
					 
					
						
						
							
							climate: add on_control callbacks ( #4511 )  
						
						 
						
						... 
						
						
						
						This lets downstream components respond to climate configuration
changes, which take place through ClimateCall objects, without also
being notified every time the state changes, which happens every time
the input sensor announces a new value.
FIXES https://github.com/esphome/feature-requests/issues/2136  
						
						
					 
					
						2023-03-07 04:19:49 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						3773c385c7 
					 
					
						
						
							
							Ensure component is ready before update. ( #4523 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-03-07 04:16:42 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						3227ef4bca 
					 
					
						
						
							
							Bump aioesphomeapi from 13.4.0 to 13.5.0 ( #4525 )  
						
						 
						
						... 
						
						
						
						Bumps [aioesphomeapi](https://github.com/esphome/aioesphomeapi ) from 13.4.0 to 13.5.0.
- [Release notes](https://github.com/esphome/aioesphomeapi/releases )
- [Commits](https://github.com/esphome/aioesphomeapi/compare/v13.4.0...v13.5.0 )
---
updated-dependencies:
- dependency-name: aioesphomeapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-03-07 04:07:15 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5a07e8d32b 
					 
					
						
						
							
							Bump docker dependencies ( #4526 )  
						
						 
						
						... 
						
						
						
						* Bump curl to 7.74.0-1.3+deb11u7
* Bump docker base images 
						
						
					 
					
						2023-03-07 04:06:42 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fredrik Gustafsson 
							
						 
					 
					
						
						
							
						
						29571a1acd 
					 
					
						
						
							
							implement pairing for bluetooth proxy ( #4475 )  
						
						 
						
						... 
						
						
						
						* default to just-works encryption
This patch will turn on encryption when making active connections in order to comply with just-works BLE encryption.
* Revert "default to just-works encryption"
This reverts commit 05bc9e9f1c .
* implement pair method
* adhere to clang formatter
* fix oopsie
* bump bluetooth_proxy_version
* add auth callback
* generate new protos
* fix another oopsie
* add pairing status to connection
* clear paired on connect()
* lint
* add unpair ("forget") ble method
* compile protos
* fix oopsie
* add missing unpairing method
* add unpairing
* fix get_paired return type
* remove unused memcpy
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* change to is_paired
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update bluetooth_proxy.cpp
* actually add missing method
* send auth cb on set_encryption failure
* cleanup from havin the worst test setup
* lint
* match auth events to bd_addr
* add second addr check to auth cb
* add addr check to third auth cb
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-06 18:04:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						b8538c2c12 
					 
					
						
						
							
							Fix typo ( #4515 )  
						
						 
						
						
						
						
					 
					
						2023-03-05 23:02:36 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tljuniper 
							
						 
					 
					
						
						
							
						
						7466773ac8 
					 
					
						
						
							
							substitutions: Don't warn when passwords look like a substitution ( #4161 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-03-05 20:28:46 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b8ca40170e 
					 
					
						
						
							
							Remove idf components before checking if any in config ( #4506 )  
						
						 
						
						... 
						
						
						
						* Remove idf components before checking if any in config
* Fix bug with no refresh time specified 
						
						
					 
					
						2023-03-05 20:17:32 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Aliasghar Dashkhaneh 
							
						 
					 
					
						
						
							
						
						bd86a0ac3b 
					 
					
						
						
							
							Update __init__.py ( #4514 )  
						
						 
						
						... 
						
						
						
						In some Sony remote codes, the **data** is more than 16 bits. 
						
						
					 
					
						2023-03-05 18:45:54 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						df3f13ded8 
					 
					
						
						
							
							Add int16 to codegen ( #4507 )  
						
						 
						
						
						
						
					 
					
						2023-03-04 07:19:51 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a428e2b689 
					 
					
						
						
							
							Fix copy-pasta mistake ( #4492 )  
						
						 
						
						
						
						
					 
					
						2023-02-27 01:20:56 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								GitforZhangXL 
							
						 
					 
					
						
						
							
						
						86407b9f6f 
					 
					
						
						
							
							Change variable "skip_updates" and "skip_updates_counter" type from "uint8_t" to "uint16_t" ( #4487 )  
						
						 
						
						... 
						
						
						
						* change 'skip_updates'from 'uint8' to 'uint16_t'
* Delete modbus_controller_fix.md
* Update modbus_controller.h
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-26 22:35:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						eceb79ceab 
					 
					
						
						
							
							Make test3 use huge_app ( #4488 )  
						
						 
						
						
						
						
					 
					
						2023-02-26 22:34:51 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						43fb68f8a0 
					 
					
						
						
							
							Fix parallel invocations of repeat action ( #4480 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-26 22:23:04 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						14e7b8a1ef 
					 
					
						
						
							
							Run CI on merge group ( #4489 )  
						
						 
						
						
						
						
					 
					
						2023-02-26 20:13:45 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						62459a8ae1 
					 
					
						
						
							
							Move Font glyphs to SPI RAM. ( #4485 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-26 18:45:30 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						86c0e6114f 
					 
					
						
						
							
							Lock scheduler items while modifying them  ( #4410 )  
						
						 
						
						... 
						
						
						
						* Cosmetic fixes to scheduler code
* Add generic Mutex API
* Lock scheduler items while modifying them
* Always defer MQTT callbacks on Arduino 
						
						
					 
					
						2023-02-26 18:43:08 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						1a9141877d 
					 
					
						
						
							
							use same heap_caps_malloc parameter as ps_malloc. ( #4484 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Your Name <you@example.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-26 18:42:29 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6ec18fc630 
					 
					
						
						
							
							Update esp32 esp-idf dev and latest version numbers ( #4479 )  
						
						 
						
						
						
						
					 
					
						2023-02-26 18:25:22 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andreas Hergert 
							
						 
					 
					
						
						
							
						
						4d674392e8 
					 
					
						
						
							
							Add energy to pzemdc ( #3626 )  
						
						 
						
						... 
						
						
						
						* added energy to pzemdc
* fixed calculation
* added test
* moved tests
---------
Co-authored-by: Andreas Hergert <andreas.hergert@otrs.com > 
						
						
					 
					
						2023-02-23 17:38:34 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						6704b2cedf 
					 
					
						
						
							
							Bump esp-idf to 4.4.3 via platformio/espressif32 @ 5.3.0 ( #4254 )  
						
						 
						
						... 
						
						
						
						* Bump esp-idf to 3.4.3 via platformio/espressif32 @ 5.3.0
The new version appears to improve the stability of
BLE + WiFi
* bump recommended version as well 
						
						
					 
					
						2023-02-23 02:08:06 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yaroslav Heriatovych 
							
						 
					 
					
						
						
							
						
						fe4fb5f1ac 
					 
					
						
						
							
							Add Haier climate component ( #4001 )  
						
						 
						
						... 
						
						
						
						* Basic functionality works
* Cleanup
* Add tests
* Separate header
* Fix send_data_
* Formatting fix
* Add __init__.py
* Fix type
* Add codeowners
* Rename supported_swing_modes
* Use multiple swing modes, same as midea platform
* Add CLIMATE_FAN_QUIET handler
* PR fixes 
						
						
					 
					
						2023-02-23 02:05:33 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						350d4e5071 
					 
					
						
						
							
							add kuntze component ( #4411 )  
						
						 
						
						... 
						
						
						
						* add kuntze component
* fixes
* more lint
---------
Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-02-23 01:31:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						23f47d0ad2 
					 
					
						
						
							
							Initial stab at importing idf components ( #4000 )  
						
						 
						
						... 
						
						
						
						* Initial stab at importing idf components
* Handle repo with multiple components
Allow components directly from yaml
* Actually use the refresh config var
* Update esphome/components/esp32/__init__.py 
						
						
					 
					
						2023-02-23 01:22:39 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f98d93efa8 
					 
					
						
						
							
							Fix multiple remote_receivers with triggers ( #4477 )  
						
						 
						
						
						
						
					 
					
						2023-02-23 00:38:45 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Shreyas Karnik 
							
						 
					 
					
						
						
							
						
						91e037346b 
					 
					
						
						
							
							add person sensor (SEN21231) from usefulsensors ( #4454 )  
						
						 
						
						... 
						
						
						
						* add person sensor (SEN21231) from usefulsensors
* add person sensor (SEN21231) from usefulsensors
* change file mode
* fix tests
* fix tests
* rollback un-intended changes
* Update esphome/components/sen21231/sen21231.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.h
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* remove unused import
* Update esphome/components/sen21231/sen21231.h
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sensor.py
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.h
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/sen21231/sen21231.h
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* remove unused import
* Update sen21231.h
* lint changes
* linting
* linting
* Update sen21231.h
* Update sen21231.cpp linting
* linting fixes
* fix codeowners
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-23 00:37:23 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						8e1430243e 
					 
					
						
						
							
							fix parity ( #4476 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-02-22 23:40:20 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						98b3d294aa 
					 
					
						
						
							
							Sprinkler "v2" updates ( #4159 )  
						
						 
						
						... 
						
						
						
						* Add standby switch
* Add support for arbitrary run duration in start_single_valve action
* Add divider feature
* Allow zero multiplier
* Fixes for #3740 , misc. cleanup and polishing
* Integrate number components for multiplier, repeat and run duration
* Add various methods to get time remaining
* Add next_prev_ignore_disabled flag
* Optimize next/previous valve selection methods
* Add numbers_use_minutes flag
* Initialize switch states as they are set up
* Ensure SprinklerControllerSwitch has state if it's not restored
* Add repeat validation
* Misc. clean-up and tweaking
* Fix bugprone-integer-division
* More clean-up
* Set entity_category for standby_switch
* Set default entity_category for numbers
* More housekeeping
* Add run request tracking
* Fix time remaining calculation
* Use native unit_of_measurement for run duration numbers
* Unstack some ifs 
						
						
					 
					
						2023-02-22 01:47:50 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mikhail Zakharov 
							
						 
					 
					
						
						
							
						
						38a01988a5 
					 
					
						
						
							
							fix library override logic ( #4474 )  
						
						 
						
						... 
						
						
						
						* fix library override logic
* formatting 
						
						
					 
					
						2023-02-21 21:52:06 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabian 
							
						 
					 
					
						
						
							
						
						d16eff5039 
					 
					
						
						
							
							Support Mopeka Standard LPG tank bluetooth sensor ( #4351 )  
						
						 
						
						... 
						
						
						
						* Add mopeka standard tank sensor.
* Enhance mopeka ble to find standard sensors.
* Updated `CODEOWNERS` file
* Move default from cpp to py.
* Format documents with esphome settings.
* Linter wants changes.
* Update name of `get_lpg_speed_of_sound`.
* manually update `CODEOWNERS`.
* Manually update CODEOWNER, because `build_codeowners.py. is failing.
* Add comments.
* Use percentage for `propane_butane_mix`.
* add config to `dump_config()`
* Formatting
* Use struct for data parsing and find best data.
* Add `this`.
* Consistant naming of configuration.
* Fix format issues.
* Make clang-tidy happy.
* Adjust loop variable.
---------
Co-authored-by: Your Name <you@example.com > 
						
						
					 
					
						2023-02-21 21:48:29 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						8fb481751f 
					 
					
						
						
							
							Bump esptool from 4.4 to 4.5 ( #4428 )  
						
						 
						
						... 
						
						
						
						Bumps [esptool](https://github.com/espressif/esptool ) from 4.4 to 4.5.
- [Release notes](https://github.com/espressif/esptool/releases )
- [Commits](https://github.com/espressif/esptool/compare/v4.4...v4.5 )
---
updated-dependencies:
- dependency-name: esptool
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-02-20 23:01:49 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Muré 
							
						 
					 
					
						
						
							
						
						ba6f89a757 
					 
					
						
						
							
							toshiba: add support for quiet fan mode ( #4283 )  
						
						 
						
						
						
						
					 
					
						2023-02-20 22:31:25 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						48e76e1538 
					 
					
						
						
							
							Bump aioesphomeapi from 13.3.1 to 13.4.0 ( #4472 )  
						
						 
						
						... 
						
						
						
						Bumps [aioesphomeapi](https://github.com/esphome/aioesphomeapi ) from 13.3.1 to 13.4.0.
- [Release notes](https://github.com/esphome/aioesphomeapi/releases )
- [Commits](https://github.com/esphome/aioesphomeapi/compare/v13.3.1...v13.4.0 )
---
updated-dependencies:
- dependency-name: aioesphomeapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-02-20 22:29:20 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0e1d018ce3 
					 
					
						
						
							
							Allow specifying target and current visual steps for climate ( #4440 )  
						
						 
						
						... 
						
						
						
						* Allow specifying target and current visual steps for climate
* Fixes
* format
* format 
						
						
					 
					
						2023-02-20 22:22:43 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						50fbbf2d3b 
					 
					
						
						
							
							Move remaining SENSOR_SCHEMA to use sensor_schema() ( #4471 )  
						
						 
						
						
						
						
					 
					
						2023-02-20 03:22:37 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								konsulten 
							
						 
					 
					
						
						
							
						
						247916fe89 
					 
					
						
						
							
							BL0939 state_class set for energy sensors ( #4463 )  
						
						 
						
						... 
						
						
						
						BL0939 was missing TOTAL_INCREASING for energy (kWh) thus it did not show as statistics in home assistant 
						
						
					 
					
						2023-02-20 02:48:59 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mat931 
							
						 
					 
					
						
						
							
						
						ed801f7a27 
					 
					
						
						
							
							Add internal_temperature component ( #4330 )  
						
						 
						
						... 
						
						
						
						* Add cpu_temperature component
* Add tests
* Fix formatting
* Possible fix for "sensor not shown in HomeAssistant"
* Rename component to internal_temperature
* Update esphome/components/internal_temperature/internal_temperature.cpp
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
* Update esphome/components/internal_temperature/internal_temperature.cpp
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
* Update esphome/components/internal_temperature/internal_temperature.cpp
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl >
* Update internal_temperature.h
* Remove unique_id
* Update ESP32 variant detection
---------
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl > 
						
						
					 
					
						2023-02-20 02:47:37 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								irtimaled 
							
						 
					 
					
						
						
							
						
						f68d577986 
					 
					
						
						
							
							Add configurable color datapoint ( #4383 )  
						
						 
						
						... 
						
						
						
						* Add configurable color datapoint
* Lint fixes
* Review comments
* Linting 
						
						
					 
					
						2023-02-19 21:50:46 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5c49730cb9 
					 
					
						
						
							
							Simplify binary_sensor_schema function ( #4469 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 21:13:40 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						04c12823b5 
					 
					
						
						
							
							Simplify button_schema function ( #4468 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 21:13:37 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						add40c7652 
					 
					
						
						
							
							Simplify number_schema function ( #4467 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 21:13:35 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Regev Brody 
							
						 
					 
					
						
						
							
						
						72391389a3 
					 
					
						
						
							
							add SUB_BUTTON macro and ability to button schema to define the class ( #4450 )  
						
						 
						
						... 
						
						
						
						* add ability to button schema to define the class
* add SUB_BUTTON macro 
						
						
					 
					
						2023-02-19 19:54:03 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Regev Brody 
							
						 
					 
					
						
						
							
						
						e68beb8a43 
					 
					
						
						
							
							add SUB_NUMBER macro and schema to number ( #4449 )  
						
						 
						
						... 
						
						
						
						* add SUB_NUMBER macro and schema
* add SUB_NUMBER macro and schema
* add SUB_NUMBER macro and schema 
						
						
					 
					
						2023-02-19 19:54:00 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						40e2832e67 
					 
					
						
						
							
							Simplify sensor schema generation ( #4462 )  
						
						 
						
						... 
						
						
						
						* Simplify sensor schema generation
* Mark class not optional
* Fix assignment 
						
						
					 
					
						2023-02-19 19:20:13 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						36a1f6cfb1 
					 
					
						
						
							
							Update Manifest to rmeove unused dashboard files and include .c ethernet drivers ( #4459 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 19:12:29 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Regev Brody 
							
						 
					 
					
						
						
							
						
						12bef16d54 
					 
					
						
						
							
							add SUB_TEXT_SENSOR macro ( #4448 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 19:11:24 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Regev Brody 
							
						 
					 
					
						
						
							
						
						77db8c8401 
					 
					
						
						
							
							add SUB_BINARY_SENSOR macro ( #4447 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 19:11:21 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Adam Jacques 
							
						 
					 
					
						
						
							
						
						66eecd3675 
					 
					
						
						
							
							NeoPixel - Add support for ESP32-S3 ( #4435 )  
						
						 
						
						
						
						
					 
					
						2023-02-19 13:38:27 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jmichiel 
							
						 
					 
					
						
						
							
						
						c03b1fae68 
					 
					
						
						
							
							fix preset discovery config ( #4451 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Michiel, Jeroen <jeroen.michiel@teledyneflir.com > 
						
						
					 
					
						2023-02-19 13:33:52 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						37d55b55fc 
					 
					
						
						
							
							Fix adoption of variants and pico-w ( #4455 )  
						
						 
						
						
						
						
					 
					
						2023-02-17 06:06:18 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						9aed758d1b 
					 
					
						
						
							
							Automate syncing device classes with HA ( #4438 )  
						
						 
						
						... 
						
						
						
						* Sync device classes with HA
* Rename blacklist 
						
						
					 
					
						2023-02-16 00:28:12 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						dbe5587806 
					 
					
						
						
							
							Add ESPHome version to generated platformio.ini ( #4443 )  
						
						 
						
						... 
						
						
						
						* Add ESPHome version to generated platformio.ini
* Move description to platformio section 
						
						
					 
					
						2023-02-16 00:27:32 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						30eec5adee 
					 
					
						
						
							
							Bump zeroconf from 0.47.1 to 0.47.3 ( #4437 )  
						
						 
						
						... 
						
						
						
						Bumps [zeroconf](https://github.com/python-zeroconf/python-zeroconf ) from 0.47.1 to 0.47.3.
- [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases )
- [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md )
- [Commits](https://github.com/python-zeroconf/python-zeroconf/compare/0.47.1...0.47.3 )
---
updated-dependencies:
- dependency-name: zeroconf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-02-15 06:19:03 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						5307dfee21 
					 
					
						
						
							
							Initialize all fields in ESPTime in PCF85063 ( #4439 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 22:45:27 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dominik Wagenknecht 
							
						 
					 
					
						
						
							
						
						8b5b9e508b 
					 
					
						
						
							
							Deep Sleep capable ports for ESP32S3 ( #4230 )  
						
						 
						
						... 
						
						
						
						Update to provide RTC capable ports for ESP32S3.
Fresh from [espressif gpio docs](https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-reference/peripherals/gpio.html ) 
						
						
					 
					
						2023-02-14 21:09:07 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7665e9b076 
					 
					
						
						
							
							Merge pull request  #4433  from esphome/bump-2023.2.0b5  
						
						 
						
						... 
						
						
						
						2023.2.0b5 
						
						
					 
					
						2023-02-14 14:51:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						227d94f38d 
					 
					
						
						
							
							Bump version to 2023.2.0b5  
						
						 
						
						
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sergey Dudanov 
							
						 
					 
					
						
						
							
						
						b724ae9e0e 
					 
					
						
						
							
							Fix setting wrong traits on midea climate component ( #4425 )  
						
						 
						
						... 
						
						
						
						* Fix issue3914
* Remove also default presets and modes
* Fix traits after autoconf 
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						df6cc14201 
					 
					
						
						
							
							Bump esphome-dashboard to 20230214.0 ( #4431 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d981d7859d 
					 
					
						
						
							
							Handle uart.write in json-config endpoint ( #4430 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0f1ec515c1 
					 
					
						
						
							
							Add version api endpoint ( #4429 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								WitchKing 
							
						 
					 
					
						
						
							
						
						78e18256f7 
					 
					
						
						
							
							Ledc fix ( #4338 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 13:59:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sergey Dudanov 
							
						 
					 
					
						
						
							
						
						a0d04ba091 
					 
					
						
						
							
							Fix setting wrong traits on midea climate component ( #4425 )  
						
						 
						
						... 
						
						
						
						* Fix issue3914
* Remove also default presets and modes
* Fix traits after autoconf 
						
						
					 
					
						2023-02-14 00:34:50 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c02871fdfe 
					 
					
						
						
							
							Add final job so branch protection can require matrix ci steps ( #4432 )  
						
						 
						
						
						
						
					 
					
						2023-02-13 23:54:38 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0d52f555b2 
					 
					
						
						
							
							Add concurrency limit to ci-docker ( #4407 )  
						
						 
						
						
						
						
					 
					
						2023-02-13 23:07:09 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						025cf6320f 
					 
					
						
						
							
							Bump aioesphomeapi from 13.1.0 to 13.3.1 ( #4427 )  
						
						 
						
						... 
						
						
						
						Bumps [aioesphomeapi](https://github.com/esphome/aioesphomeapi ) from 13.1.0 to 13.3.1.
- [Release notes](https://github.com/esphome/aioesphomeapi/releases )
- [Commits](https://github.com/esphome/aioesphomeapi/compare/v13.1.0...v13.3.1 )
---
updated-dependencies:
- dependency-name: aioesphomeapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-02-13 22:56:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						5997401e9e 
					 
					
						
						
							
							Bump pylint from 2.15.10 to 2.16.2 ( #4426 )  
						
						 
						
						... 
						
						
						
						* Bump pylint from 2.15.10 to 2.16.2
Bumps [pylint](https://github.com/PyCQA/pylint ) from 2.15.10 to 2.16.2.
- [Release notes](https://github.com/PyCQA/pylint/releases )
- [Commits](https://github.com/PyCQA/pylint/compare/v2.15.10...v2.16.2 )
---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Lint
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 22:55:36 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b4068dac56 
					 
					
						
						
							
							Bump platformio from 6.1.5 to 6.1.6 ( #4341 )  
						
						 
						
						... 
						
						
						
						* Bump platformio from 6.1.5 to 6.1.6
Bumps [platformio](https://github.com/platformio/platformio ) from 6.1.5 to 6.1.6.
- [Release notes](https://github.com/platformio/platformio/releases )
- [Changelog](https://github.com/platformio/platformio-core/blob/develop/HISTORY.rst )
- [Commits](https://github.com/platformio/platformio/compare/v6.1.5...v6.1.6 )
---
updated-dependencies:
- dependency-name: platformio
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* Update dockerfile
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 22:41:14 +00:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						458d6e24fc 
					 
					
						
						
							
							Bump esphome-dashboard to 20230214.0 ( #4431 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 11:38:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4f4ca61ada 
					 
					
						
						
							
							Handle uart.write in json-config endpoint ( #4430 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 11:38:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						dfeeccfcca 
					 
					
						
						
							
							Add version api endpoint ( #4429 )  
						
						 
						
						
						
						
					 
					
						2023-02-14 11:38:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								WitchKing 
							
						 
					 
					
						
						
							
						
						3a101e8ec5 
					 
					
						
						
							
							Ledc fix ( #4338 )  
						
						 
						
						
						
						
					 
					
						2023-02-13 15:53:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Expaso 
							
						 
					 
					
						
						
							
						
						7a2d7fdd19 
					 
					
						
						
							
							Fixed PlatformIO Build on DEV ( #4422 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 15:43:52 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4899dfe642 
					 
					
						
						
							
							Merge pull request  #4423  from esphome/bump-2023.2.0b4  
						
						 
						
						... 
						
						
						
						2023.2.0b4 
						
						
					 
					
						2023-02-13 15:17:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andre Borie 
							
						 
					 
					
						
						
							
						
						78f5c417a4 
					 
					
						
						
							
							Gracefully reject vacuum map upload requests ( #4414 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 14:43:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andre Borie 
							
						 
					 
					
						
						
							
						
						b8c0f88440 
					 
					
						
						
							
							Improve tuya network status command ( #4415 )  
						
						 
						
						
						
						
					 
					
						2023-02-13 14:14:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d6b6e94059 
					 
					
						
						
							
							Bump version to 2023.2.0b4  
						
						 
						
						
						
						
					 
					
						2023-02-13 11:54:27 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						310355a00b 
					 
					
						
						
							
							Fix check for empty clipping array ( #4421 )  
						
						 
						
						
						
						
					 
					
						2023-02-13 11:54:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						8cf26d6f3c 
					 
					
						
						
							
							Add Clipping to displaybuffer ( #4271 )  
						
						 
						
						... 
						
						
						
						* adding Clipping support to the displaybuffer
- add rect structure
* removed unused define
* add missing property for storing the clipped areas
* include log header
* Move Rect method's code to cpp file
- removed obsolete remarks
* fixed reported issues
* make Rect class methods public
* clang fix
* Remove commented code
* Renaming clipping methods
* Multiple changes:
- replaced 32766 with VALUE_NO_SET
- fixed the way *_clipping(left, top, right, bottom) is stored
- add `is_clipping();`
- make sure that all clipped region are closed after `do_update_()`
- rename de parameters for `Rect::expand();`
* remove unneeded space
* replace define with static const uint8_t
* correcting my copy paste mistake
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 11:54:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Collins 
							
						 
					 
					
						
						
							
						
						b15a10f905 
					 
					
						
						
							
							Climate PID Autotune Logging fixes ( #4136 )  
						
						 
						
						... 
						
						
						
						* pid autotune logging fixes
* fixed clang-format request
* improved and clarified logging
* changed logging not to alter the TAG
* logging now does not alter TAG. fixed clang formattting
* fixed string issues
* playing with strings to please the clang gods
* playing with strings
* Delete secrets.yaml
* Delete console-fan-autotune-test.yaml
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-13 11:54:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						58eeb6b1b8 
					 
					
						
						
							
							Fix check for empty clipping array ( #4421 )  
						
						 
						
						
						
						
					 
					
						2023-02-12 17:03:53 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						f8acc45be4 
					 
					
						
						
							
							Add Clipping to displaybuffer ( #4271 )  
						
						 
						
						... 
						
						
						
						* adding Clipping support to the displaybuffer
- add rect structure
* removed unused define
* add missing property for storing the clipped areas
* include log header
* Move Rect method's code to cpp file
- removed obsolete remarks
* fixed reported issues
* make Rect class methods public
* clang fix
* Remove commented code
* Renaming clipping methods
* Multiple changes:
- replaced 32766 with VALUE_NO_SET
- fixed the way *_clipping(left, top, right, bottom) is stored
- add `is_clipping();`
- make sure that all clipped region are closed after `do_update_()`
- rename de parameters for `Rect::expand();`
* remove unneeded space
* replace define with static const uint8_t
* correcting my copy paste mistake
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-11 09:56:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b7ab00b699 
					 
					
						
						
							
							Bump black from 22.12.0 to 23.1.0 ( #4375 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-10 07:40:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Collins 
							
						 
					 
					
						
						
							
						
						045489e6d7 
					 
					
						
						
							
							Climate PID Autotune Logging fixes ( #4136 )  
						
						 
						
						... 
						
						
						
						* pid autotune logging fixes
* fixed clang-format request
* improved and clarified logging
* changed logging not to alter the TAG
* logging now does not alter TAG. fixed clang formattting
* fixed string issues
* playing with strings to please the clang gods
* playing with strings
* Delete secrets.yaml
* Delete console-fan-autotune-test.yaml
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
* Update esphome/components/pid/pid_autotuner.cpp
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
---------
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-09 22:37:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						b14e774a27 
					 
					
						
						
							
							Bump pyupgrade from 3.3.0 to 3.3.1 ( #4160 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-09 18:27:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						2a8745d7e0 
					 
					
						
						
							
							Bump frenck/action-yamllint from 1.3.1 to 1.4.0 ( #4289 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-02-09 18:27:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oxan van Leeuwen 
							
						 
					 
					
						
						
							
						
						499cb615f1 
					 
					
						
						
							
							socket: Format IPv4-mapped IPv6 addresses as regular IPv4 address ( #4382 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 18:17:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5dcf1debd7 
					 
					
						
						
							
							Merge pull request  #4406  from esphome/bump-2023.2.0b3  
						
						 
						
						... 
						
						
						
						2023.2.0b3 
						
						
					 
					
						2023-02-09 18:04:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9b57e1ac1d 
					 
					
						
						
							
							Bump version to 2023.2.0b3  
						
						 
						
						
						
						
					 
					
						2023-02-09 17:38:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						68683e3a50 
					 
					
						
						
							
							Fix release workflow ( #4405 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 17:38:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4d192c7387 
					 
					
						
						
							
							Fix release workflow ( #4405 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 17:37:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d83324c4dc 
					 
					
						
						
							
							Merge pull request  #4404  from esphome/bump-2023.2.0b2  
						
						 
						
						... 
						
						
						
						2023.2.0b2 
						
						
					 
					
						2023-02-09 16:55:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ecde4c1d2d 
					 
					
						
						
							
							Bump version to 2023.2.0b2  
						
						 
						
						
						
						
					 
					
						2023-02-09 16:27:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bd8e470726 
					 
					
						
						
							
							Bump curl version in docker ( #4403 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 16:27:24 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9dd01b30bd 
					 
					
						
						
							
							Bump curl version in docker ( #4403 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 16:26:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d2913fe627 
					 
					
						
						
							
							Merge pull request  #4402  from esphome/bump-2023.2.0b1  
						
						 
						
						... 
						
						
						
						2023.2.0b1 
						
						
					 
					
						2023-02-09 15:59:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						881cd535b9 
					 
					
						
						
							
							Bump version to 2023.3.0-dev  
						
						 
						
						
						
						
					 
					
						2023-02-09 15:33:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						43acc7dc2c 
					 
					
						
						
							
							Bump version to 2023.2.0b1  
						
						 
						
						
						
						
					 
					
						2023-02-09 15:33:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e2a16d758b 
					 
					
						
						
							
							Merge branch 'dev' into bump-2023.2.0b1  
						
						 
						
						
						
						
					 
					
						2023-02-09 15:33:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						17ea0efb08 
					 
					
						
						
							
							Verify rel_path output is relative ( #4247 )  
						
						 
						
						
						
						
					 
					
						2023-02-08 20:20:30 -05:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						2fbd33267e 
					 
					
						
						
							
							Convert secrets constant to a tuple ( #4245 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 14:00:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						cf3977f088 
					 
					
						
						
							
							Use the github-script action to call the workflow ( #4400 )  
						
						 
						
						
						
						
					 
					
						2023-02-08 19:51:24 -05:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						d20d4947ac 
					 
					
						
						
							
							Remove unused manifest handler ( #4169 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-09 13:41:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric van Blokland 
							
						 
					 
					
						
						
							
						
						7810ad40d7 
					 
					
						
						
							
							Added CanalSat and CanalSatLD protocol support ( #3513 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-09 13:22:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jmichiel 
							
						 
					 
					
						
						
							
						
						7e1e799b3a 
					 
					
						
						
							
							add MQTT preset support for Climate components ( #4379 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
Co-authored-by: Michiel, Jeroen <jeroen.michiel@teledyneflir.com > 
						
						
					 
					
						2023-02-09 12:46:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Muré 
							
						 
					 
					
						
						
							
						
						dfafc41ce6 
					 
					
						
						
							
							climate: add support for quiet fan mode ( #3609 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 11:28:16 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bob Perciaccante 
							
						 
					 
					
						
						
							
						
						e460792c43 
					 
					
						
						
							
							Add support for Lippert LP sensors in mopeka_pro_check component ( #4118 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/feature-requests/issues/1988  
						
						
					 
					
						2023-02-09 11:07:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a9dc491a54 
					 
					
						
						
							
							Dont keep logging on improv start ( #4401 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 10:25:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ac6693f177 
					 
					
						
						
							
							mDNS updates ( #4399 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 10:25:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c6742117d3 
					 
					
						
						
							
							Update log for mics4514 to state 3 minute start time. ( #4396 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 07:30:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b5c47b9669 
					 
					
						
						
							
							Update ld2410 logging ( #4395 )  
						
						 
						
						
						
						
					 
					
						2023-02-09 07:30:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Quentin Smith 
							
						 
					 
					
						
						
							
						
						40df3aa55e 
					 
					
						
						
							
							Merge components in packages ( #3555 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Paul Monigatti <pm@paul.pm >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-07 14:08:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tomaszduda23 
							
						 
					 
					
						
						
							
						
						393ca64d70 
					 
					
						
						
							
							adds gpio INPUT_OUTPUT_OPEN_DRAIN ( #4360 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-07 12:55:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michał Obrembski 
							
						 
					 
					
						
						
							
						
						d3627f0972 
					 
					
						
						
							
							Added Ethernet Component for ESP IDF with JL1101 PHY driver ( #4009 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Michał Obrembski <michal@obrembski.com > 
						
						
					 
					
						2023-02-07 12:54:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Trevor North 
							
						 
					 
					
						
						
							
						
						124ab31f22 
					 
					
						
						
							
							Fix shelly dimmer current sensor device class ( #4385 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/4086  
						
						
					 
					
						2023-02-07 12:46:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1b66fa5004 
					 
					
						
						
							
							Remove unneeded validation for esp32 gpio pins ( #4394 )  
						
						 
						
						
						
						
					 
					
						2023-02-07 12:43:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								alexd321 
							
						 
					 
					
						
						
							
						
						9494c27ad8 
					 
					
						
						
							
							modify SGP4X integration to report device_class as air quality index ( #4327 )  
						
						 
						
						
						
						
					 
					
						2023-02-07 12:35:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3facfa5c21 
					 
					
						
						
							
							Allow dashboard import to specify if api encryption key should be generated ( #4393 )  
						
						 
						
						
						
						
					 
					
						2023-02-07 12:27:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						93ddce2e79 
					 
					
						
						
							
							add Resol VBus support ( #3976 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/feature-requests/issues/1949  
						
						
					 
					
						2023-02-07 12:17:17 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								sebcaps 
							
						 
					 
					
						
						
							
						
						0bf6e21e1a 
					 
					
						
						
							
							Add Ld2410 Support ( #3919 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-07 11:47:50 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Florian Trück 
							
						 
					 
					
						
						
							
						
						6b7b076875 
					 
					
						
						
							
							SCD30 Added support for manual calibration ( #4362 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-02-03 21:13:27 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Florian idB 
							
						 
					 
					
						
						
							
						
						8d6ffb9169 
					 
					
						
						
							
							Update sim800l.cpp ( #4223 )  
						
						 
						
						
						
						
					 
					
						2023-02-03 07:53:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e95d6041d8 
					 
					
						
						
							
							Allow final validate of uart stop bits and parity ( #4376 )  
						
						 
						
						
						
						
					 
					
						2023-02-02 19:34:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joakim Plate 
							
						 
					 
					
						
						
							
						
						0554b06b7e 
					 
					
						
						
							
							Allow mdns services to be exposed by config ( #4202 )  
						
						 
						
						
						
						
					 
					
						2023-02-02 17:18:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlos Garcia Saura 
							
						 
					 
					
						
						
							
						
						e3d9c44bdc 
					 
					
						
						
							
							Fix pressure compensation in SCD4X ( #4357 )  
						
						 
						
						
						
						
					 
					
						2023-02-02 13:22:23 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e847766514 
					 
					
						
						
							
							Dump full parsed config to json-config api call ( #4373 )  
						
						 
						
						
						
						
					 
					
						2023-02-01 16:59:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d4a8df04b8 
					 
					
						
						
							
							Bump version to 2023.2.0-dev  
						
						 
						
						
						
						
					 
					
						2023-02-01 15:57:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mat931 
							
						 
					 
					
						
						
							
						
						034b47c23a 
					 
					
						
						
							
							Fix "BLE server / advertising always on" ( #4353 )  
						
						 
						
						
						
						
					 
					
						2023-01-27 08:09:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						3e017efa30 
					 
					
						
						
							
							Add Home Assistant integration discovery ( #4328 )  
						
						 
						
						
						
						
					 
					
						2023-01-26 17:48:04 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								WitchKing 
							
						 
					 
					
						
						
							
						
						aca56fcdcc 
					 
					
						
						
							
							Added support for ADS1015 ( #4281 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: vilrexa-at-412611259294 <pdzBdl8EkgUikpOWsRCKzTVHMEX2wLnZJRdLhK38oNk=> 
						
						
					 
					
						2023-01-26 17:20:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								melyux 
							
						 
					 
					
						
						
							
						
						e778a445d9 
					 
					
						
						
							
							Add a soft reset in setup() for bmp280 ( #4329 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3383  
						
						
					 
					
						2023-01-26 12:11:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Alex 
							
						 
					 
					
						
						
							
						
						ded86493c2 
					 
					
						
						
							
							Fix BME280 initialization before wifi setup ( #4190 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3530  
						
						
					 
					
						2023-01-26 12:09:38 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stephan Martin 
							
						 
					 
					
						
						
							
						
						4d72eb42a5 
					 
					
						
						
							
							rename esp32 CAN to TWAI, so it compiles again ( #4334 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/4023  
						
						
					 
					
						2023-01-26 12:08:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Bodor (aka Lefinnois) 
							
						 
					 
					
						
						
							
						
						267f0587c6 
					 
					
						
						
							
							fix stepper jump back with small steps ( #4339 )  
						
						 
						
						
						
						
					 
					
						2023-01-26 12:06:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4a374a466a 
					 
					
						
						
							
							Fix in ble client base address parsing ( #4347 )  
						
						 
						
						
						
						
					 
					
						2023-01-26 12:02:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joakim Sørensen 
							
						 
					 
					
						
						
							
						
						b27a328d1e 
					 
					
						
						
							
							Add "content" to deploy-ha-addon-repo dispatch ( #4349 )  
						
						 
						
						
						
						
					 
					
						2023-01-26 11:55:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d94e9d92ca 
					 
					
						
						
							
							Fix esp32_ble_tracker setup priority ( #4346 )  
						
						 
						
						
						
						
					 
					
						2023-01-26 07:56:36 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						36c2e770bf 
					 
					
						
						
							
							Remove state class from uptime sensor ( #4345 )  
						
						 
						
						
						
						
					 
					
						2023-01-25 15:58:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						79040c116d 
					 
					
						
						
							
							Add next_url to improv serial component config ( #4343 )  
						
						 
						
						
						
						
					 
					
						2023-01-25 14:37:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4aac76c549 
					 
					
						
						
							
							Refactor esp32_ble_tracker to use esp32_ble core ble setup code ( #4173 )  
						
						 
						
						
						
						
					 
					
						2023-01-25 14:36:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0ea97df1af 
					 
					
						
						
							
							Add MICS-4514 gas sensor ( #4316 )  
						
						 
						
						
						
						
					 
					
						2023-01-25 09:58:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						92e66a2764 
					 
					
						
						
							
							Dont fail workflows if lint building fails ( #4336 )  
						
						 
						
						
						
						
					 
					
						2023-01-24 12:51:14 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						615d591367 
					 
					
						
						
							
							Always send the MTU request for BLE v3 cached connections ( #4322 )  
						
						 
						
						... 
						
						
						
						closes https://github.com/esphome/esphome/pull/4321 
fixes https://github.com/esphome/issues/issues/4041 
fixes https://github.com/esphome/issues/issues/3951  
						
						
					 
					
						2023-01-20 18:31:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e236c53f05 
					 
					
						
						
							
							Fix missing s  
						
						 
						
						
						
						
					 
					
						2023-01-20 14:06:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						10c7055b41 
					 
					
						
						
							
							Move from docker manifest command to buildx with platforms ( #4320 )  
						
						 
						
						
						
						
					 
					
						2023-01-20 14:01:29 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								functionpointer 
							
						 
					 
					
						
						
							
						
						a127e60e1b 
					 
					
						
						
							
							Hydreon: Use new device classes water and precipitation_intensity ( #3993 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-01-20 13:56:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						66a3361e9d 
					 
					
						
						
							
							Bump esphome-dashboard to 20230120.0 ( #4319 )  
						
						 
						
						
						
						
					 
					
						2023-01-20 11:29:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						13cfe11a19 
					 
					
						
						
							
							Add upload dashboard api ( #4318 )  
						
						 
						
						
						
						
					 
					
						2023-01-20 09:28:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stroe Andrei Catalin 
							
						 
					 
					
						
						
							
						
						6d65671f92 
					 
					
						
						
							
							Add friendly name in MDNS records if it is not empty ( #4317 )  
						
						 
						
						
						
						
					 
					
						2023-01-20 09:13:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f2eafa8fbe 
					 
					
						
						
							
							Add macro for sub sensor defining ( #4315 )  
						
						 
						
						
						
						
					 
					
						2023-01-19 17:36:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e4ca3b18cc 
					 
					
						
						
							
							Format docker/build.py ( #4313 )  
						
						 
						
						
						
						
					 
					
						2023-01-19 12:04:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						84698ae888 
					 
					
						
						
							
							Refactor NGINX configuration of Home Assistant Add-on ( #4312 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 19:54:27 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						fd6d6cfb6c 
					 
					
						
						
							
							Migrate old-style S6 scripts to s6-rc.d ( #4311 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 18:22:35 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						8cad9dfc83 
					 
					
						
						
							
							Upgrades add-on base image to 6.2.0 ( #4310 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 17:23:35 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						5e2f33fde5 
					 
					
						
						
							
							add Wiegand reader component ( #4288 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-01-18 14:37:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dan Jackson 
							
						 
					 
					
						
						
							
						
						029ac75a04 
					 
					
						
						
							
							set_retry: add retries remaining parameter to the provided function ( #4251 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 14:26:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Valentin Ochs 
							
						 
					 
					
						
						
							
						
						3aa5953cd9 
					 
					
						
						
							
							Implement a slow sigma-delta modulation based output ( #4132 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 13:42:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stanislav Habich 
							
						 
					 
					
						
						
							
						
						582d90ad72 
					 
					
						
						
							
							PCA9685, fix reset device and add option EXTCLK ( #3845 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-01-18 13:00:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mathias Stock 
							
						 
					 
					
						
						
							
						
						bbb0105c2f 
					 
					
						
						
							
							Add support for TEE501 ( #3773 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 10:43:16 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mathias Stock 
							
						 
					 
					
						
						
							
						
						37d17feecf 
					 
					
						
						
							
							Add support for HTE501 ( #3772 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 10:42:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mathias Stock 
							
						 
					 
					
						
						
							
						
						4bf5faf808 
					 
					
						
						
							
							Add support for EE895 ( #3771 )  
						
						 
						
						
						
						
					 
					
						2023-01-18 10:42:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Z3LIFF 
							
						 
					 
					
						
						
							
						
						ddedc1cd76 
					 
					
						
						
							
							Tsl2591 gain publish ( #4291 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/4031  
						
						
					 
					
						2023-01-18 10:17:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						1bb90f304c 
					 
					
						
						
							
							add key collector component ( #4242 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-01-17 17:18:34 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						efc6a8df35 
					 
					
						
						
							
							Dont default CORE.friendly_name ( #4305 )  
						
						 
						
						
						
						
					 
					
						2023-01-17 13:15:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reuben 
							
						 
					 
					
						
						
							
						
						e35f90d6e4 
					 
					
						
						
							
							Allow 0xA8 ID for APDS9960 ( #4287 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/736  
						
						
					 
					
						2023-01-17 13:14:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Gil Peeters 
							
						 
					 
					
						
						
							
						
						11518364a1 
					 
					
						
						
							
							Display the configured esphome:comment on the WebServer ( #4246 )  
						
						 
						
						
						
						
					 
					
						2023-01-17 13:02:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						05420291ce 
					 
					
						
						
							
							Bump aioesphomeapi from 13.0.2 to 13.1.0 ( #4301 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-01-17 12:08:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						442faf92c6 
					 
					
						
						
							
							Bump pytest from 7.2.0 to 7.2.1 ( #4300 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-01-17 10:37:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						62c68f4d60 
					 
					
						
						
							
							allow multiple dsmr ( #4299 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net >
fixes https://github.com/esphome/feature-requests/issues/2062  
						
						
					 
					
						2023-01-17 10:36:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c301ae3645 
					 
					
						
						
							
							Add friendly_name to device ( #4296 )  
						
						 
						
						
						
						
					 
					
						2023-01-17 10:28:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3d2d681a7b 
					 
					
						
						
							
							Remove baud check in tuya dump_config ( #4298 )  
						
						 
						
						
						
						
					 
					
						2023-01-16 17:32:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tradeJmark 
							
						 
					 
					
						
						
							
						
						a45646af1b 
					 
					
						
						
							
							Calculate PWM wrap dynamically whenever the frequency is changed ( #4294 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3841  
						
						
					 
					
						2023-01-16 14:17:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						27185265f6 
					 
					
						
						
							
							Clean up dashboard ping result post-rename/delete ( #4170 )  
						
						 
						
						
						
						
					 
					
						2023-01-16 13:31:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joe 
							
						 
					 
					
						
						
							
						
						a9b7d98194 
					 
					
						
						
							
							Fix off-by-one bedjet fan speed ( #3873 ) ( #4292 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3873  
						
						
					 
					
						2023-01-16 13:27:34 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						ed4a7210d3 
					 
					
						
						
							
							Ensure we never write zero bytes ( #4284 )  
						
						 
						
						
						
						
					 
					
						2023-01-16 13:24:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Adam Liddell 
							
						 
					 
					
						
						
							
						
						351ea04517 
					 
					
						
						
							
							Fix use of dangling pointers in esp-idf MQTT backend ( #4239 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3406  
						
						
					 
					
						2023-01-11 16:31:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						86a8e1f4a6 
					 
					
						
						
							
							small DisplayBuffer images and font update ( #4044 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-01-11 14:55:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								EtienneMD 
							
						 
					 
					
						
						
							
						
						1cf3424ebe 
					 
					
						
						
							
							Add X9C Potentiometer component ( #4183 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/feature-requests/issues/1270  
						
						
					 
					
						2023-01-11 14:51:50 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Garret Buell 
							
						 
					 
					
						
						
							
						
						a19f0c0db0 
					 
					
						
						
							
							Fix HttpRequestResponseTrigger again ( #4285 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/issues/issues/4010  
						
						
					 
					
						2023-01-11 14:50:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Garret Buell 
							
						 
					 
					
						
						
							
						
						530df91044 
					 
					
						
						
							
							Fix HttpRequestResponseTrigger ( #4270 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/issues/issues/4010  
						
						
					 
					
						2023-01-11 12:27:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stas 
							
						 
					 
					
						
						
							
						
						c16c0b11cb 
					 
					
						
						
							
							http_request: add request duration logging ( #4272 )  
						
						 
						
						
						
						
					 
					
						2023-01-10 17:40:42 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Keller 
							
						 
					 
					
						
						
							
						
						74556b28a8 
					 
					
						
						
							
							fix: json compilation error on rp2040 ( #4273 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2023-01-10 17:40:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joscha Wagner 
							
						 
					 
					
						
						
							
						
						48340d41d6 
					 
					
						
						
							
							Fix frequency limit for MCP9600 ( #4276 )  
						
						 
						
						
						
						
					 
					
						2023-01-10 17:39:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6306348379 
					 
					
						
						
							
							Bump pylint from 2.15.8 to 2.15.10 ( #4278 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2023-01-10 16:46:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Robin Pronk 
							
						 
					 
					
						
						
							
						
						b1f1329cee 
					 
					
						
						
							
							Correct decimals in Growatt energy reporting ( #4277 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3888  
						
						
					 
					
						2023-01-10 16:21:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fabio Todaro 
							
						 
					 
					
						
						
							
						
						75dff1e102 
					 
					
						
						
							
							Fix Template Switch restore_mode support ( #4280 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/4020  
						
						
					 
					
						2023-01-10 16:20:16 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						fe55f3a43d 
					 
					
						
						
							
							Add support for matrix keypads ( #4241 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2023-01-10 16:06:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						657fd9d0d5 
					 
					
						
						
							
							Don't match words containing "id" ( #4265 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net >
fixes https://github.com/esphome/issues/issues/3507  
						
						
					 
					
						2023-01-10 13:54:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						1511a6ebcd 
					 
					
						
						
							
							Bump zeroconf to 0.47.1 ( #4268 )  
						
						 
						
						
						
						
					 
					
						2023-01-09 14:14:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						ecac26aeba 
					 
					
						
						
							
							Bump dashboard to 20221231.0 ( #4248 )  
						
						 
						
						
						
						
					 
					
						2022-12-31 14:40:50 -05:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kuba Szczodrzyński 
							
						 
					 
					
						
						
							
						
						19bf9b1e36 
					 
					
						
						
							
							Add API for dashboard to get boards list by platform ( #4168 )  
						
						 
						
						... 
						
						
						
						* Add API for dashboard to get boards list by platform
* Dashboard API: add board list for ESP32 S2/S3/C3
* Dashboard API: remove endpoint for all boards
* Dashboard API: hide group titles for all platforms
* Dashboard API: fix Python lint
* Dashboard API: refactor /boards to use list output
* Dashboard API: filter boards for selected platform
* Dashboard API: do not duplicate esp32 boards
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io >
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io > 
						
						
					 
					
						2022-12-31 14:02:56 -05:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								brogon 
							
						 
					 
					
						
						
							
						
						119a6920f2 
					 
					
						
						
							
							PCF85063 RTC chip ( #3873 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-23 12:33:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								cstaahl 
							
						 
					 
					
						
						
							
						
						8237e13c44 
					 
					
						
						
							
							Fix broken PULSE_METER ( #4199 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3730  
						
						
					 
					
						2022-12-23 11:07:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Cossid 
							
						 
					 
					
						
						
							
						
						53b60ac817 
					 
					
						
						
							
							Add support for SM2235 and SM2335 LED drivers ( #3924 )  
						
						 
						
						
						
						
					 
					
						2022-12-23 11:04:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Cossid 
							
						 
					 
					
						
						
							
						
						a18ab748fd 
					 
					
						
						
							
							Add support for BP1658CJ LED driver ( #4020 )  
						
						 
						
						
						
						
					 
					
						2022-12-23 10:39:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Cossid 
							
						 
					 
					
						
						
							
						
						917488bbc3 
					 
					
						
						
							
							Add support for BP5758D LED driver ( #4021 )  
						
						 
						
						
						
						
					 
					
						2022-12-23 10:24:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7e376ae952 
					 
					
						
						
							
							Add precipitation device class ( #4219 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 21:18:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								myhomeiot 
							
						 
					 
					
						
						
							
						
						57a1c207c2 
					 
					
						
						
							
							Fix saving light state for restore modes LIGHT_RESTORE_AND_OFF/ON ( #4131 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 20:57:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tomaszduda23 
							
						 
					 
					
						
						
							
						
						50e8e92f0b 
					 
					
						
						
							
							Fix race condition in web_server scheduler on ESP32 ( #3951 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 20:51:24 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dan Jackson 
							
						 
					 
					
						
						
							
						
						ff4fd497c4 
					 
					
						
						
							
							Component::set_retry updates ( #3305 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 20:48:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Flasskamp 
							
						 
					 
					
						
						
							
						
						33b1a853b9 
					 
					
						
						
							
							calc LEDC PWM Resolution with LEDC_TIMER_BIT_MAX ( #3820 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/issues/issues/3128  
						
						
					 
					
						2022-12-22 20:21:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jan Grewe 
							
						 
					 
					
						
						
							
						
						f2df542cb1 
					 
					
						
						
							
							Allow ignoring of failed Modbus response CRC ( #3930 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-22 20:14:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dave T 
							
						 
					 
					
						
						
							
						
						ecbbf2d3f4 
					 
					
						
						
							
							Ili9341 8bit indexed mode pt2 ( #2502 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 19:53:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Donoughe 
							
						 
					 
					
						
						
							
						
						b76c7a0131 
					 
					
						
						
							
							Use NAN values for TSL2591 saturation ( #3931 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-22 19:50:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0b0984f9a0 
					 
					
						
						
							
							Bump black from 22.10.0 to 22.12.0 ( #4167 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-22 19:42:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Francisco J. Solis 
							
						 
					 
					
						
						
							
						
						9767856784 
					 
					
						
						
							
							feat: set a wider range for jpeg quality ( #3872 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3570  
						
						
					 
					
						2022-12-22 19:34:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Maurice Makaay 
							
						 
					 
					
						
						
							
						
						c1f09684e6 
					 
					
						
						
							
							Handle deprecated sdkconfig option ( #4204 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Maurice Makaay <maurice@h2b.nl >
fixes https://github.com/mmakaay/esphome-xiaomi_bslamp2/issues/104  
						
						
					 
					
						2022-12-22 19:27:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						22b384363b 
					 
					
						
						
							
							Bump nano version in lint docker image ( #4218 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 19:07:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						5b23331751 
					 
					
						
						
							
							Bump pytest-asyncio from 0.20.2 to 0.20.3 ( #4164 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-22 18:44:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						7a2bb32843 
					 
					
						
						
							
							Bump aioesphomeapi from 13.0.1 to 13.0.2 ( #4188 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-22 18:40:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Steve Rodgers 
							
						 
					 
					
						
						
							
						
						c0a4e07e5a 
					 
					
						
						
							
							Add Pca9554 component ( #4192 )  
						
						 
						
						
						
						
					 
					
						2022-12-22 18:39:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						322158cccb 
					 
					
						
						
							
							Bump actions/stale from 6 to 7 ( #4217 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-22 16:55:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						8db3b59e0f 
					 
					
						
						
							
							Fix gpio pin mode for ISR pins ( #4216 )  
						
						 
						
						
						
						
					 
					
						2022-12-21 14:03:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0d50caa179 
					 
					
						
						
							
							Fix ESP32 GPIO when using INPUT PULLUP mode ( #4213 )  
						
						 
						
						
						
						
					 
					
						2022-12-20 23:09:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Deun Lee 
							
						 
					 
					
						
						
							
						
						8b06135b41 
					 
					
						
						
							
							Fix UUID displaying incorrectly in BLE Tracker logs ( #4187 )  
						
						 
						
						
						
						
					 
					
						2022-12-19 20:36:16 -08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						573ea55187 
					 
					
						
						
							
							Handle zero padding anywhere in the combined adv data ( #4208 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3913  
						
						
					 
					
						2022-12-20 10:40:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b48b5d6cc7 
					 
					
						
						
							
							Fix import_full_config for adoption configs ( #4197 )  
						
						 
						
						... 
						
						
						
						* Fix git raw url
* Fix setting full config query param
* Force dashboard import urls to have a branch or tag reference for full import 
						
						
					 
					
						2022-12-16 19:46:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						39af967433 
					 
					
						
						
							
							Fix i2s_audio media_player compiling for esp32-s2 ( #4195 )  
						
						 
						
						
						
						
					 
					
						2022-12-16 10:38:52 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						83b5e01a28 
					 
					
						
						
							
							Mark ESP32-S2 as not having Bluetooth ( #4194 )  
						
						 
						
						
						
						
					 
					
						2022-12-16 10:09:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stefan Agner 
							
						 
					 
					
						
						
							
						
						1eacbd50fa 
					 
					
						
						
							
							Support non-multiarch toolchains on 32-bit ARM ( #4191 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3904  
						
						
					 
					
						2022-12-16 09:27:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						cb520c00a5 
					 
					
						
						
							
							Merge pull request  #4185  from esphome/bump-2022.12.0b6  
						
						 
						
						... 
						
						
						
						2022.12.0b6 
						
						
					 
					
						2022-12-14 12:24:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2f24138345 
					 
					
						
						
							
							Bump version to 2022.12.0b6  
						
						 
						
						
						
						
					 
					
						2022-12-14 12:03:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						96512b80cc 
					 
					
						
						
							
							Revert camera config change for esp-idf ( #4182 )  
						
						 
						
						
						
						
					 
					
						2022-12-14 12:03:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fcb9b51978 
					 
					
						
						
							
							Remove warnings when falling through switch cases on purpose ( #4181 )  
						
						 
						
						
						
						
					 
					
						2022-12-14 12:03:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9bf7c97775 
					 
					
						
						
							
							Revert camera config change for esp-idf ( #4182 )  
						
						 
						
						
						
						
					 
					
						2022-12-14 11:45:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						24bf3674f3 
					 
					
						
						
							
							Remove warnings when falling through switch cases on purpose ( #4181 )  
						
						 
						
						
						
						
					 
					
						2022-12-14 11:45:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f408f1a368 
					 
					
						
						
							
							Merge pull request  #4180  from esphome/bump-2022.12.0b5  
						
						 
						
						... 
						
						
						
						2022.12.0b5 
						
						
					 
					
						2022-12-13 19:42:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7d8d563c62 
					 
					
						
						
							
							Bump version to 2022.12.0b5  
						
						 
						
						
						
						
					 
					
						2022-12-13 13:58:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						0a1f705fda 
					 
					
						
						
							
							Speed up bluetooth proxy connections when using esp-idf ( #4171 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 13:58:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1952c1880b 
					 
					
						
						
							
							Remove internal pin restriction from cd74hc4067 ( #4179 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 13:58:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						c47dc09d34 
					 
					
						
						
							
							Speed up bluetooth proxy connections when using esp-idf ( #4171 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 13:57:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						db3096c6e1 
					 
					
						
						
							
							Remove internal pin restriction from cd74hc4067 ( #4179 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 13:44:52 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b03967dac1 
					 
					
						
						
							
							Merge pull request  #4178  from esphome/bump-2022.12.0b4  
						
						 
						
						... 
						
						
						
						2022.12.0b4 
						
						
					 
					
						2022-12-13 10:14:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bcae2596a6 
					 
					
						
						
							
							Bump version to 2022.12.0b4  
						
						 
						
						
						
						
					 
					
						2022-12-13 09:13:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fc0347c86c 
					 
					
						
						
							
							Bump esphome-dashboard to 20221213.0 ( #4176 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 09:13:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						eef578f4b8 
					 
					
						
						
							
							Bump esphome-dashboard to 20221213.0 ( #4176 )  
						
						 
						
						
						
						
					 
					
						2022-12-13 08:14:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d9563d4de1 
					 
					
						
						
							
							Merge pull request  #4174  from esphome/bump-2022.12.0b3  
						
						 
						
						... 
						
						
						
						2022.12.0b3 
						
						
					 
					
						2022-12-12 17:31:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						cc7e2bf8db 
					 
					
						
						
							
							Bump version to 2022.12.0b3  
						
						 
						
						
						
						
					 
					
						2022-12-12 17:19:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5d98e2923b 
					 
					
						
						
							
							Increase watchdog timeout when starting OTA ( #4172 )  
						
						 
						
						
						
						
					 
					
						2022-12-12 17:19:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d4e232f267 
					 
					
						
						
							
							Increase watchdog timeout when starting OTA ( #4172 )  
						
						 
						
						
						
						
					 
					
						2022-12-12 16:16:24 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Björn Stenberg 
							
						 
					 
					
						
						
							
						
						cc45945fcf 
					 
					
						
						
							
							climate: Add features to generic Toshiba model ( #3912 )  
						
						 
						
						... 
						
						
						
						Add fan speed modes, dry and fan-only operation modes.
This reduce differences between generic and PT14111 models. 
						
						
					 
					
						2022-12-08 14:13:10 -06:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						07197d12f6 
					 
					
						
						
							
							Merge pull request  #4163  from esphome/bump-2022.12.0b2  
						
						 
						
						... 
						
						
						
						2022.12.0b2 
						
						
					 
					
						2022-12-08 14:04:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7b0a298497 
					 
					
						
						
							
							Bump version to 2022.12.0b2  
						
						 
						
						
						
						
					 
					
						2022-12-08 13:42:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						21679cf2ba 
					 
					
						
						
							
							Fix ble parsing with zero padded advertisements ( #4162 )  
						
						 
						
						
						
						
					 
					
						2022-12-08 13:42:24 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0c24d951ff 
					 
					
						
						
							
							Fix ble parsing with zero padded advertisements ( #4162 )  
						
						 
						
						
						
						
					 
					
						2022-12-08 13:39:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								John Britton 
							
						 
					 
					
						
						
							
						
						92e44b8238 
					 
					
						
						
							
							Expose lambda action to reset a cycle in slow_pwm ( #4158 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 19:27:14 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4be7cd12a1 
					 
					
						
						
							
							Merge pull request  #4157  from esphome/bump-2022.12.0b1  
						
						 
						
						... 
						
						
						
						2022.12.0b1 
						
						
					 
					
						2022-12-07 17:25:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						34387adbcd 
					 
					
						
						
							
							Bump version to 2023.1.0-dev  
						
						 
						
						
						
						
					 
					
						2022-12-07 17:00:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						dee4d0ccb7 
					 
					
						
						
							
							Bump version to 2022.12.0b1  
						
						 
						
						
						
						
					 
					
						2022-12-07 17:00:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c6885c1bf4 
					 
					
						
						
							
							Bump esphome-dashboard to 20221207.0 ( #4156 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 16:47:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						8b8efb57af 
					 
					
						
						
							
							Bump aioesphomeapi from 12.2.1 to 13.0.1 ( #4149 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-07 16:16:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						499e120aa4 
					 
					
						
						
							
							Bump dessant/lock-threads from 3 to 4 ( #4150 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-07 16:10:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6f198a4736 
					 
					
						
						
							
							Bump pyupgrade from 3.2.2 to 3.3.0 ( #4137 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-07 16:09:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						f500f448b1 
					 
					
						
						
							
							Bump pytest-asyncio from 0.20.1 to 0.20.2 ( #4019 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-07 16:08:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6ad9baa870 
					 
					
						
						
							
							Add API for dashboard to get boards list ( #4154 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 16:07:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f843925301 
					 
					
						
						
							
							ESP32 IDF: Override toolchain-esp32ulp with espressifs own published version ( #4155 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 16:01:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								pistifonok 
							
						 
					 
					
						
						
							
						
						4a3b628946 
					 
					
						
						
							
							Fixed deep sleep for ESP32C3 ( #4143 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-07 15:59:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4ffdc38cf5 
					 
					
						
						
							
							Add sn74hc165 input shift register ( #4151 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 12:10:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dennis 
							
						 
					 
					
						
						
							
						
						f83f1bff19 
					 
					
						
						
							
							Invalid config for waveshare models with no full_update_every ( #4066 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-07 11:53:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9370ff3dfa 
					 
					
						
						
							
							Allow dashboard import to pull complete file from github ( #3982 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 07:29:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2053b02c61 
					 
					
						
						
							
							Add reports fahrenheit to tuya climate ( #4032 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 07:29:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f34e797a0d 
					 
					
						
						
							
							Change 4 chip limit on sn74hc595 to 256 ( #4108 )  
						
						 
						
						
						
						
					 
					
						2022-12-07 07:23:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						30a2fc1273 
					 
					
						
						
							
							fix switch initialization ( #4153 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net >
fixes https://github.com/esphome/issues/issues/3878  
						
						
					 
					
						2022-12-06 23:25:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Matthew Schinckel 
							
						 
					 
					
						
						
							
						
						48da5ef1c4 
					 
					
						
						
							
							Use ENTITY_CATEGORY_CONFIG for sprinkler config switches. ( #4141 )  
						
						 
						
						... 
						
						
						
						Update esphome/components/sprinkler/__init__.py
Co-Authored-By: Keith Burzinski <kbx81x@gmail.com >
Co-authored-by: Keith Burzinski <kbx81x@gmail.com > 
						
						
					 
					
						2022-12-05 21:00:48 -06:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						dbbbba3cf8 
					 
					
						
						
							
							Fix crash with bluetooth tracker and esp-idf ( #4140 )  
						
						 
						
						
						
						
					 
					
						2022-12-06 08:49:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						16e523ca68 
					 
					
						
						
							
							Bump pylint from 2.15.7 to 2.15.8 ( #4148 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-06 08:46:29 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						3b2bbd306f 
					 
					
						
						
							
							Detect BLE stack unrecoverable state ( #4128 )  
						
						 
						
						
						
						
					 
					
						2022-12-06 07:42:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						54caed36f7 
					 
					
						
						
							
							Fix mismatched flake8 version in pre-commit ( #4145 )  
						
						 
						
						
						
						
					 
					
						2022-12-05 19:50:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						dfcccda69e 
					 
					
						
						
							
							Fix board pin alias lookup ( #4147 )  
						
						 
						
						
						
						
					 
					
						2022-12-05 19:46:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						de352c1609 
					 
					
						
						
							
							Bump esptool from 3.3.1 to 4.4 ( #4071 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-12-05 10:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						c30068fc97 
					 
					
						
						
							
							Bump aioesphomeapi from 12.2.0 to 12.2.1 ( #4133 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-05 10:00:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f28f712827 
					 
					
						
						
							
							Bump arduino pico and update wifi methods ( #4144 )  
						
						 
						
						
						
						
					 
					
						2022-12-05 08:55:38 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b63ade298f 
					 
					
						
						
							
							Fix queuing scripts not compiling ( #4077 )  
						
						 
						
						
						
						
					 
					
						2022-12-01 13:17:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nicolas Graziano 
							
						 
					 
					
						
						
							
						
						f117d4f50a 
					 
					
						
						
							
							Dashboard,  after login use relative url. ( #4103 )  
						
						 
						
						
						
						
					 
					
						2022-12-01 13:15:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						6e4267b797 
					 
					
						
						
							
							Bump flake8 from 5.0.4 to 6.0.0 ( #4084 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-01 13:11:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2dd032475b 
					 
					
						
						
							
							Allow global setting of compile process limit ( #4081 )  
						
						 
						
						
						
						
					 
					
						2022-12-01 12:51:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						db0ed055dd 
					 
					
						
						
							
							Bump pylint from 2.15.6 to 2.15.7 ( #4127 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-12-01 12:49:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						106c1bfac2 
					 
					
						
						
							
							fix RESTORE_INVERTED switch:restore_mode ( #4129 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/esphome/pull/3648  
						
						
					 
					
						2022-12-01 12:49:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						eb2a0f45db 
					 
					
						
						
							
							current-based cover fix copy paste mistake ( #4124 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:59:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2b4fdd6c39 
					 
					
						
						
							
							Allow auto setting of ble client id if there is only 1 in config ( #4125 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:59:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Collins 
							
						 
					 
					
						
						
							
						
						3669320398 
					 
					
						
						
							
							PID Climate - deadband and output sampling ( #3254 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:58:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						d706f40ce1 
					 
					
						
						
							
							modbus_switch: honor switch:restore_mode ( #4122 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:44:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						027284c29c 
					 
					
						
						
							
							Speed up uuid parsing when fetching the service list ( #4121 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:11:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						c55e01ff3f 
					 
					
						
						
							
							FIX: Unnecessary flash writes by ModbusSwitch component ( #3648 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 10:05:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						a59ce7bfa2 
					 
					
						
						
							
							Avoid parsing services with v3 connections without cache ( #4117 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Daniel Cousens <413395+dcousens@users.noreply.github.com >
Co-authored-by: Maurice Makaay <account+github@makaay.nl >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-30 09:40:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a6196267c9 
					 
					
						
						
							
							Bump aioesphomeapi from 12.0.0 to 12.2.0 ( #4120 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-30 08:30:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						eb664b99ba 
					 
					
						
						
							
							preprocess out proto_enum_to_string if not needed ( #4119 )  
						
						 
						
						
						
						
					 
					
						2022-11-30 08:30:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						8414bb9a7a 
					 
					
						
						
							
							Active BLE connection v3 ( #4113 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Daniel Cousens <413395+dcousens@users.noreply.github.com >
Co-authored-by: Maurice Makaay <account+github@makaay.nl >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-30 07:53:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						ccef7c322f 
					 
					
						
						
							
							Remove uuid lookups from BLE read/write/notify characteristics ( #4102 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-29 17:30:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						120327866f 
					 
					
						
						
							
							Send device address type alongside ble advertisements ( #4115 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 17:24:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						bc5c2d4eb4 
					 
					
						
						
							
							Avoid parsing characteristics and descriptors to reduce memory pressure ( #4109 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 17:16:25 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						d5ff8f6117 
					 
					
						
						
							
							Reduce memory needed to send the services list ( #4110 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 17:14:29 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						ad0d6f6337 
					 
					
						
						
							
							Combine the scanner failure check so we only stop the scanner once ( #4111 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 17:11:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						873de13b3d 
					 
					
						
						
							
							Fix bluetooth_gatt_write_descriptor never getting a response ( #4112 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 17:10:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						56de8e5cc4 
					 
					
						
						
							
							Always use generated api options from aioesphomeapi ( #4116 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 16:14:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						73c82862cf 
					 
					
						
						
							
							Improve reliability of bluetooth active connections ( #4049 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-29 08:15:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						75573a3ed1 
					 
					
						
						
							
							Fix descriptors not being deleted ( #4104 )  
						
						 
						
						
						
						
					 
					
						2022-11-29 07:49:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						1166d93805 
					 
					
						
						
							
							Fix registering for gatt notify when characteristic only support indicate ( #4092 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 14:03:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						ac112a32c9 
					 
					
						
						
							
							Add logging for BLE connection slots ( #4098 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:39:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						cee45c1221 
					 
					
						
						
							
							Make sure all BLE address strings are uppercase ( #4097 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:33:17 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						fb56b5388e 
					 
					
						
						
							
							Suppress logging unhandled ESP_BLE_AD_TYPE_INT_RANGE ( #4096 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:31:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						ed42cefeee 
					 
					
						
						
							
							Align BLE service logging ( #4095 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:30:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						9052947a71 
					 
					
						
						
							
							Speed up BLE connections ( #4093 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:30:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						53e0af18fb 
					 
					
						
						
							
							Make parse_characteristics and parse_descriptors lazy to reduce memory pressure ( #4063 )  
						
						 
						
						
						
						
					 
					
						2022-11-28 13:28:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Maurice Makaay 
							
						 
					 
					
						
						
							
						
						c5f59fad62 
					 
					
						
						
							
							Fix regressed 'esphome run' ( #4094 )  
						
						 
						
						
						
						
					 
					
						2022-11-27 08:17:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b089a4ea80 
					 
					
						
						
							
							Allow manually specifying binary file to OTA ( #4054 )  
						
						 
						
						
						
						
					 
					
						2022-11-25 13:47:02 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						555bba7698 
					 
					
						
						
							
							Don't convert climate temperature step ( #4082 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 16:00:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Brian Kaufman 
							
						 
					 
					
						
						
							
						
						294901fbe9 
					 
					
						
						
							
							Fix units for refresh: never ( #4048 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 13:31:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						ec576bf9f9 
					 
					
						
						
							
							fix missing library ( #4051 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 13:22:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9273e3775b 
					 
					
						
						
							
							Add vector includes ( #4080 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 13:12:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ce5cedb466 
					 
					
						
						
							
							Update ESP32-audioI2S library ( #4073 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 11:16:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b184b01600 
					 
					
						
						
							
							Remove a bunch of unnecessary pylint disabling ( #4079 )  
						
						 
						
						
						
						
					 
					
						2022-11-24 11:09:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						81b4078871 
					 
					
						
						
							
							Don't allow debug component if you don't have at least debug logging level ( #4076 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 22:42:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d067c8f80b 
					 
					
						
						
							
							Dont set esp32 pin drive strength unless pin is set for output ( #4075 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 20:39:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jens-Christian Skibakk 
							
						 
					 
					
						
						
							
						
						8975b4b3f6 
					 
					
						
						
							
							Boards: Adafruit QT Py ESP32 Pico/C3/S2 ( #4064 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 12:54:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Alex Reid 
							
						 
					 
					
						
						
							
						
						20da03f8c6 
					 
					
						
						
							
							Midea ir templatable code ( #4053 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 12:53:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ef26677b67 
					 
					
						
						
							
							Always use brackets around single log macros ( #4072 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 10:32:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						91925b1826 
					 
					
						
						
							
							Update ESP-IDF and platform version ( #3565 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Otto Winter <otto@otto-winter.com > 
						
						
					 
					
						2022-11-23 09:54:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						1f33ad037d 
					 
					
						
						
							
							Avoid creating a new espbt::ESPBTUUID each loop when registering for notify ( #4069 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 09:46:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						fef60e335e 
					 
					
						
						
							
							Avoid 128bit uuid loop for 16/32 bit uuids ( #4068 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 09:46:23 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						195c78846f 
					 
					
						
						
							
							Bump aioesphomeapi from 11.4.3 to 12.0.0 ( #4070 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-23 09:45:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0f9c956c04 
					 
					
						
						
							
							Remove manual handling of ethernet power pin ( #4062 )  
						
						 
						
						
						
						
					 
					
						2022-11-23 09:43:43 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7258a82875 
					 
					
						
						
							
							rp2040_pwm frequency is per pair of pins ( #4061 )  
						
						 
						
						
						
						
					 
					
						2022-11-22 21:12:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						c1f696c32a 
					 
					
						
						
							
							fix display_menu recursive schema gen ( #4045 )  
						
						 
						
						
						
						
					 
					
						2022-11-21 21:43:01 -03:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						f2b63d9c67 
					 
					
						
						
							
							Bump pylint from 2.15.5 to 2.15.6 ( #4058 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-22 12:51:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7896a7783b 
					 
					
						
						
							
							Update web_server index ( #4060 )  
						
						 
						
						
						
						
					 
					
						2022-11-22 12:41:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						621771e1ee 
					 
					
						
						
							
							Fix rp2040 pwm to use pico-sdk, not mbed ( #4059 )  
						
						 
						
						
						
						
					 
					
						2022-11-22 12:19:52 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								uPesy Electronics 
							
						 
					 
					
						
						
							
						
						2b032e8606 
					 
					
						
						
							
							Add pin aliases for upesy boards ( #3794 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-21 19:03:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yuval Brik 
							
						 
					 
					
						
						
							
						
						5e1b724697 
					 
					
						
						
							
							Add Lolin S2 Mini board ( #3264 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/feature-requests/issues/1626  
						
						
					 
					
						2022-11-21 19:03:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e6db61c2f0 
					 
					
						
						
							
							Update esp32 boards list ( #4056 )  
						
						 
						
						
						
						
					 
					
						2022-11-21 14:15:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c2e198311c 
					 
					
						
						
							
							Update esp32 arduino and platform versions ( #3564 )  
						
						 
						
						
						
						
					 
					
						2022-11-21 11:49:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						d874626662 
					 
					
						
						
							
							Add number device class support ( #4042 )  
						
						 
						
						
						
						
					 
					
						2022-11-18 08:01:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						eead72333e 
					 
					
						
						
							
							Bump base image versions to latest ( #4016 )  
						
						 
						
						
						
						
					 
					
						2022-11-17 16:14:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						719c212009 
					 
					
						
						
							
							Support ADC on RP2040 ( #4040 )  
						
						 
						
						
						
						
					 
					
						2022-11-17 13:51:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Brian Kaufman 
							
						 
					 
					
						
						
							
						
						65030e1c37 
					 
					
						
						
							
							remove unused variable last_save_ in total_daily_energy ( #4039 )  
						
						 
						
						
						
						
					 
					
						2022-11-17 13:45:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3f88b63920 
					 
					
						
						
							
							Merge branch 'release' into dev  
						
						 
						
						
						
						
					 
					
						2022-11-17 08:12:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						70f1c71a9f 
					 
					
						
						
							
							Merge pull request  #4038  from esphome/bump-2022.11.0  
						
						 
						
						... 
						
						
						
						2022.11.0 
						
						
					 
					
						2022-11-17 08:05:52 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								John Moxley 
							
						 
					 
					
						
						
							
						
						816df5ad47 
					 
					
						
						
							
							bump nginx-light 1.18.0-6.1+deb11u2 to 1.18.0-6.1+deb11u3 ( #4034 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3793  
						
						
					 
					
						2022-11-17 07:45:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								John Moxley 
							
						 
					 
					
						
						
							
						
						f7b1602adf 
					 
					
						
						
							
							bump nginx-light 1.18.0-6.1+deb11u2 to 1.18.0-6.1+deb11u3 ( #4034 )  
						
						 
						
						... 
						
						
						
						fixes https://github.com/esphome/issues/issues/3793  
						
						
					 
					
						2022-11-17 07:44:17 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7e88eea532 
					 
					
						
						
							
							Bump version to 2022.11.0  
						
						 
						
						
						
						
					 
					
						2022-11-17 07:17:42 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d1cdfd3b72 
					 
					
						
						
							
							Merge branch 'beta' into bump-2022.11.0  
						
						 
						
						
						
						
					 
					
						2022-11-17 07:17:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d6a03d48f5 
					 
					
						
						
							
							Merge pull request  #4037  from esphome/bump-2022.11.0b6  
						
						 
						
						... 
						
						
						
						2022.11.0b6 
						
						
					 
					
						2022-11-16 17:26:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d453b42b1a 
					 
					
						
						
							
							Bump version to 2022.11.0b6  
						
						 
						
						
						
						
					 
					
						2022-11-16 15:48:50 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7c19b961e2 
					 
					
						
						
							
							Always save user wifi credentials if non in config ( #4036 )  
						
						 
						
						
						
						
					 
					
						2022-11-16 15:48:50 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						147b113b62 
					 
					
						
						
							
							Always save user wifi credentials if non in config ( #4036 )  
						
						 
						
						
						
						
					 
					
						2022-11-16 15:46:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d924702825 
					 
					
						
						
							
							Merge pull request  #4035  from esphome/bump-2022.11.0b5  
						
						 
						
						... 
						
						
						
						2022.11.0b5 
						
						
					 
					
						2022-11-16 15:45:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e8784ba383 
					 
					
						
						
							
							Bump version to 2022.11.0b5  
						
						 
						
						
						
						
					 
					
						2022-11-16 12:30:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								2mikrobi 
							
						 
					 
					
						
						
							
						
						e3a454d1a6 
					 
					
						
						
							
							Update_interval less that 1 second in QMC5883L integration ( #4031 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-16 12:30:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kuba Szczodrzyński 
							
						 
					 
					
						
						
							
						
						392dc8b0db 
					 
					
						
						
							
							Add reset_reason text sensor to debug component ( #3814 )  
						
						 
						
						
						
						
					 
					
						2022-11-16 08:14:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								2mikrobi 
							
						 
					 
					
						
						
							
						
						2f62426f09 
					 
					
						
						
							
							Update_interval less that 1 second in QMC5883L integration ( #4031 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-16 08:12:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						58fda40389 
					 
					
						
						
							
							Merge pull request  #4026  from esphome/bump-2022.11.0b4  
						
						 
						
						... 
						
						
						
						2022.11.0b4 
						
						
					 
					
						2022-11-14 14:20:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6a73699a38 
					 
					
						
						
							
							Bump version to 2022.11.0b4  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:31:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3bd6456fbe 
					 
					
						
						
							
							Mark mqtt as unavailable on rp2040 ( #4025 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:31:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						608be4e050 
					 
					
						
						
							
							Fix time components on rp2040 ( #4024 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:31:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						10f590324b 
					 
					
						
						
							
							Mark webserver and captive portal as not available on rp2040 ( #4023 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:31:47 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						cb2d9e4bec 
					 
					
						
						
							
							Mark mqtt as unavailable on rp2040 ( #4025 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:29:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9e3ee28744 
					 
					
						
						
							
							Fix time components on rp2040 ( #4024 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:29:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						472dcebf2c 
					 
					
						
						
							
							Mark webserver and captive portal as not available on rp2040 ( #4023 )  
						
						 
						
						
						
						
					 
					
						2022-11-14 13:19:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						39f0f748bf 
					 
					
						
						
							
							Merge pull request  #4018  from esphome/bump-2022.11.0b3  
						
						 
						
						... 
						
						
						
						2022.11.0b3 
						
						
					 
					
						2022-11-11 12:26:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9efe59a984 
					 
					
						
						
							
							Bump version to 2022.11.0b3  
						
						 
						
						
						
						
					 
					
						2022-11-11 11:49:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						fcb02af782 
					 
					
						
						
							
							fix to_lower filter ( #4015 )  
						
						 
						
						
						
						
					 
					
						2022-11-11 11:49:37 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						9f30f53c6b 
					 
					
						
						
							
							Bump pyupgrade from 3.2.0 to 3.2.2 ( #4017 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-11 10:50:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						2f18ae00c5 
					 
					
						
						
							
							fix to_lower filter ( #4015 )  
						
						 
						
						
						
						
					 
					
						2022-11-11 07:40:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						27a339fa12 
					 
					
						
						
							
							Move CONF_INTERRUPT_PIN to const.py ( #4014 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 22:49:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3aeef1afd4 
					 
					
						
						
							
							Merge pull request  #4012  from esphome/bump-2022.11.0b2  
						
						 
						
						... 
						
						
						
						2022.11.0b2 
						
						
					 
					
						2022-11-10 13:33:16 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a45ee8f4ac 
					 
					
						
						
							
							Bump version to 2022.11.0b2  
						
						 
						
						
						
						
					 
					
						2022-11-10 11:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						31b62d7dca 
					 
					
						
						
							
							Fix local webserver based on esphome/esphome-webserver#17 ( #3958 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/issues/issues/3720  
						
						
					 
					
						2022-11-10 11:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						22f81475db 
					 
					
						
						
							
							Add option for dashboard command to only generate the project and supporting files ( #3981 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 11:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								maringeph 
							
						 
					 
					
						
						
							
						
						cc7cf73d59 
					 
					
						
						
							
							Add cover toggle support to current based cover ( #3950 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 11:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9682e60a25 
					 
					
						
						
							
							Update set-output to use new GITHUB_OUTPUT ( #4008 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 11:08:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						2c2e68123a 
					 
					
						
						
							
							Fix local webserver based on esphome/esphome-webserver#17 ( #3958 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/issues/issues/3720  
						
						
					 
					
						2022-11-10 10:59:42 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								H. Árkosi Róbert 
							
						 
					 
					
						
						
							
						
						fcec7d45cb 
					 
					
						
						
							
							add two new icons ( #3963 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 09:46:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7c8f502e7e 
					 
					
						
						
							
							Add option for dashboard command to only generate the project and supporting files ( #3981 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 09:42:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								maringeph 
							
						 
					 
					
						
						
							
						
						dc17c47634 
					 
					
						
						
							
							Add cover toggle support to current based cover ( #3950 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 09:40:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						3d927c2f44 
					 
					
						
						
							
							Bump frenck/action-yamllint from 1.3.0 to 1.3.1 ( #4011 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-10 09:38:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						0ae61410d2 
					 
					
						
						
							
							Bump colorama from 0.4.5 to 0.4.6 ( #4010 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-10 09:36:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2455589f61 
					 
					
						
						
							
							Update set-output to use new GITHUB_OUTPUT ( #4008 )  
						
						 
						
						
						
						
					 
					
						2022-11-10 07:42:14 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c6afae0da5 
					 
					
						
						
							
							Merge pull request  #4007  from esphome/bump-2022.11.0b1  
						
						 
						
						... 
						
						
						
						2022.11.0b1 
						
						
					 
					
						2022-11-09 19:14:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3155f02be6 
					 
					
						
						
							
							Bump version to 2022.12.0-dev  
						
						 
						
						
						
						
					 
					
						2022-11-09 17:27:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4fa0e860ad 
					 
					
						
						
							
							Bump version to 2022.11.0b1  
						
						 
						
						
						
						
					 
					
						2022-11-09 17:27:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								jimtng 
							
						 
					 
					
						
						
							
						
						8c122aa372 
					 
					
						
						
							
							Add support for parameters in scripts ( #3538 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com >
fixes https://github.com/esphome/feature-requests/issues/241  
						
						
					 
					
						2022-11-09 16:51:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5a0bf9fee9 
					 
					
						
						
							
							Bump esphome-dashboard to 20221109.0 ( #4006 )  
						
						 
						
						
						
						
					 
					
						2022-11-09 16:46:44 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Gilles van den Hoven 
							
						 
					 
					
						
						
							
						
						dc794918ed 
					 
					
						
						
							
							Enable calibration, callbacks and custom commands for EZO sensors ( #3910 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: PoppyPop <skytep@gmail.com >
Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2022-11-09 16:46:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						02b15dbc4a 
					 
					
						
						
							
							Bump platformio from 6.1.4 to 6.1.5 ( #4004 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-09 12:03:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						ed316b1ce3 
					 
					
						
						
							
							Bump aioesphomeapi from 11.4.2 to 11.4.3 ( #4002 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-09 11:49:09 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						d7858f16c1 
					 
					
						
						
							
							Bump pytest-asyncio from 0.19.0 to 0.20.1 ( #4003 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-09 11:48:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jens-Christian Skibakk 
							
						 
					 
					
						
						
							
						
						291deb12ad 
					 
					
						
						
							
							Skip validation of defined pins ( #3999 )  
						
						 
						
						
						
						
					 
					
						2022-11-08 19:06:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						3e110681c9 
					 
					
						
						
							
							Bump black from 22.8.0 to 22.10.0 ( #3986 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-07 19:24:50 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						65fbfa2097 
					 
					
						
						
							
							Bump zeroconf from 0.39.1 to 0.39.4 ( #3979 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-07 19:14:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						16ebf9da4c 
					 
					
						
						
							
							Lint updates ( #3992 )  
						
						 
						
						
						
						
					 
					
						2022-11-07 19:03:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stanislav Meduna 
							
						 
					 
					
						
						
							
						
						2c76381fcd 
					 
					
						
						
							
							Implement a simple LCD menu ( #3406 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-11-07 19:00:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								tomaszduda23 
							
						 
					 
					
						
						
							
						
						90683223dd 
					 
					
						
						
							
							add uart number to LOGCONFIG ( #3996 )  
						
						 
						
						
						
						
					 
					
						2022-11-06 15:58:56 -08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						de79171815 
					 
					
						
						
							
							RP2040 uart support ( #3990 )  
						
						 
						
						
						
						
					 
					
						2022-11-07 10:01:40 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1554c5700e 
					 
					
						
						
							
							rp2040: Set watchdog to reboot properly ( #3991 )  
						
						 
						
						
						
						
					 
					
						2022-11-03 20:47:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						5cf257b251 
					 
					
						
						
							
							Bump aioesphomeapi from 10.13.0 to 11.4.2 ( #3987 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-03 20:30:23 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								mbardeen 
							
						 
					 
					
						
						
							
						
						04883e14f6 
					 
					
						
						
							
							Allow the use of multiple RDM6300 devices ( #3989 )  
						
						 
						
						
						
						
					 
					
						2022-11-02 22:25:09 -07:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0a649c184f 
					 
					
						
						
							
							Always use gh releases in base platformio file ( #3988 )  
						
						 
						
						
						
						
					 
					
						2022-11-03 11:41:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0e66c899ce 
					 
					
						
						
							
							Allow multiple bluetooth proxy connections ( #3971 )  
						
						 
						
						
						
						
					 
					
						2022-11-02 23:02:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						e7d236f939 
					 
					
						
						
							
							Bump pytest-mock from 3.8.2 to 3.10.0 ( #3877 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-02 19:17:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						fae4d03473 
					 
					
						
						
							
							Bump pylint from 2.15.3 to 2.15.5 ( #3978 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-02 19:16:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fd8b9fb028 
					 
					
						
						
							
							Merge pull request  #3975  from esphome/bump-2022.10.2  
						
						 
						
						... 
						
						
						
						2022.10.2 
						
						
					 
					
						2022-11-02 19:01:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						97bd3e7320 
					 
					
						
						
							
							Bump actions/stale from 5 to 6 ( #3841 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-01 17:19:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						dfca2f88d3 
					 
					
						
						
							
							Bump pytest from 7.1.3 to 7.2.0 ( #3966 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-01 17:18:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						8cad93de37 
					 
					
						
						
							
							Bump pyupgrade from 3.0.0 to 3.2.0 ( #3973 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-11-01 15:32:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bdf1813b3a 
					 
					
						
						
							
							Bump version to 2022.10.2  
						
						 
						
						
						
						
					 
					
						2022-11-01 12:38:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						45b6c93f5f 
					 
					
						
						
							
							Fix bluetooth_proxy not connecting ( #3967 )  
						
						 
						
						
						
						
					 
					
						2022-11-01 12:38:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e5b8dd7f2d 
					 
					
						
						
							
							Fix bluetooth_proxy not connecting ( #3967 )  
						
						 
						
						
						
						
					 
					
						2022-10-29 12:42:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						a1c8b8092b 
					 
					
						
						
							
							Remove gitpod ( #3964 )  
						
						 
						
						
						
						
					 
					
						2022-10-28 10:25:02 -04:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						109ca2406d 
					 
					
						
						
							
							Bump pytest-cov from 3.0.0 to 4.0.0 ( #3922 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-10-28 15:40:42 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						3a689112fd 
					 
					
						
						
							
							Bump tornado from 6.1 to 6.2 ( #3620 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-10-28 13:29:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						40e0cd0f03 
					 
					
						
						
							
							Make some minor changes to I²C so rp2040 works ( #3959 )  
						
						 
						
						
						
						
					 
					
						2022-10-28 12:33:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bf4d3df906 
					 
					
						
						
							
							Fix RP2040 SPISettings ( #3960 )  
						
						 
						
						
						
						
					 
					
						2022-10-28 12:33:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0e30c49e3f 
					 
					
						
						
							
							Allow using LED pin on rpi pico-w ( #3957 )  
						
						 
						
						
						
						
					 
					
						2022-10-28 10:06:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e61a01f7bb 
					 
					
						
						
							
							Fix imports for rp2040 with no wifi ( #3956 )  
						
						 
						
						
						
						
					 
					
						2022-10-28 08:12:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paul Nicholls 
							
						 
					 
					
						
						
							
						
						f8640cf2cd 
					 
					
						
						
							
							[SM300D2] Reduce log severity for successful reads ( #3955 )  
						
						 
						
						
						
						
					 
					
						2022-10-27 19:27:17 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						4bcfeb6e33 
					 
					
						
						
							
							Update rp2040 to latest framework release from GitHub ( #3954 )  
						
						 
						
						
						
						
					 
					
						2022-10-27 19:26:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a5d4ca0f6d 
					 
					
						
						
							
							Some RP2040 wifi changes for AP mode ( #3953 )  
						
						 
						
						
						
						
					 
					
						2022-10-27 19:14:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						85faecb2fd 
					 
					
						
						
							
							Add core config option to limit compile process count ( #3952 )  
						
						 
						
						
						
						
					 
					
						2022-10-27 12:17:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						991fc54994 
					 
					
						
						
							
							Bump esphome/Improv to 1.2.3 ( #3948 )  
						
						 
						
						
						
						
					 
					
						2022-10-27 07:44:15 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2de891dc32 
					 
					
						
						
							
							Fix filesystem size for RP2040 OTA ( #3947 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 22:57:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9865cb7f55 
					 
					
						
						
							
							Implement RP2040 preferences ( #3946 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 22:56:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f97252b93a 
					 
					
						
						
							
							Implement InterruptLock for RP2040 ( #3945 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 16:41:51 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6124531479 
					 
					
						
						
							
							Merge pull request  #3944  from esphome/bump-2022.10.1  
						
						 
						
						... 
						
						
						
						2022.10.1 
						
						
					 
					
						2022-10-26 12:49:08 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b8549d323c 
					 
					
						
						
							
							Bump version to 2022.10.1  
						
						 
						
						
						
						
					 
					
						2022-10-26 12:08:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						01adece673 
					 
					
						
						
							
							Add wind_speed sensor device class ( #3941 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 12:08:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						0220934e4c 
					 
					
						
						
							
							Fixed touch release issue using the interrupt pin ( #3925 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-26 12:08:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						ca09693efa 
					 
					
						
						
							
							Add water & precipitation_intensity sensor device classes ( #3940 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 12:08:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e96d7483b3 
					 
					
						
						
							
							Update bluetooth proxy limit as soon as connection requested ( #3935 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 12:08:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f2c4f018de 
					 
					
						
						
							
							Prefix devcontainer image with ghcr.io ( #3942 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 12:04:29 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						237c7dd169 
					 
					
						
						
							
							Add wind_speed sensor device class ( #3941 )  
						
						 
						
						
						
						
					 
					
						2022-10-26 07:35:12 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						b781b8d77d 
					 
					
						
						
							
							Fixed touch release issue using the interrupt pin ( #3925 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-26 07:33:18 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franck Nijhof 
							
						 
					 
					
						
						
							
						
						60b7d1c8a1 
					 
					
						
						
							
							Add water & precipitation_intensity sensor device classes ( #3940 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 20:37:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								cvwillegen 
							
						 
					 
					
						
						
							
						
						8161222b33 
					 
					
						
						
							
							Show local mac when scanning wifi ( #3635 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-25 19:50:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								H. Árkosi Róbert 
							
						 
					 
					
						
						
							
						
						1000c4466f 
					 
					
						
						
							
							add proper device class to uptime ( #3928 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-25 19:10:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						60717b074e 
					 
					
						
						
							
							Implement different random for rp2040 ( #3939 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 17:59:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c3fba97b4c 
					 
					
						
						
							
							Update base platformio board for rp2040 ( #3937 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 17:46:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d93f35701f 
					 
					
						
						
							
							Send manufacturer name via API ( #3938 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 17:24:38 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						702b60ce66 
					 
					
						
						
							
							Make mDNS on rp2040 work ( #3936 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 16:23:20 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f8ce597918 
					 
					
						
						
							
							Fix error with require_framework_version and rp2040 ( #3923 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 13:47:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						22e0a944c8 
					 
					
						
						
							
							Update bluetooth proxy limit as soon as connection requested ( #3935 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 12:54:10 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3a134ef009 
					 
					
						
						
							
							Update the PR template ( #3934 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 12:53:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						96e8cb66b6 
					 
					
						
						
							
							Fix missing dependencies for heatpumpir ( #3933 )  
						
						 
						
						
						
						
					 
					
						2022-10-25 12:12:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						615288c151 
					 
					
						
						
							
							Bump esphome-dashboard to 20221020.0 ( #3920 )  
						
						 
						
						
						
						
					 
					
						2022-10-20 08:59:41 -04:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6153bcc6ad 
					 
					
						
						
							
							Initial Support for RP2040 platform ( #3284 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Paulus Schoutsen <balloob@gmail.com > 
						
						
					 
					
						2022-10-20 16:50:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						e87edcc77a 
					 
					
						
						
							
							Add API interface to request a complete device config as JSON. ( #3911 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io > 
						
						
					 
					
						2022-10-19 23:39:34 -04:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						a21c3e8e2d 
					 
					
						
						
							
							Bump platformio from 6.0.2 to 6.1.4 ( #3711 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-20 12:49:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								hagak 
							
						 
					 
					
						
						
							
						
						d7576f67e8 
					 
					
						
						
							
							Added component Daikin BRC to support ceiling cassette heatpumps ( #3743 )  
						
						 
						
						
						
						
					 
					
						2022-10-19 20:29:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Maximilian 
							
						 
					 
					
						
						
							
						
						138de643a2 
					 
					
						
						
							
							Add adc128s102 sensor ( #3822 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-19 17:06:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlos Gustavo Sarmiento 
							
						 
					 
					
						
						
							
						
						f30e54d177 
					 
					
						
						
							
							Implementation for Atlas Scientific Peristaltic Pump ( #3528 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-19 16:08:27 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jadson Santos 
							
						 
					 
					
						
						
							
						
						41b5cb06d3 
					 
					
						
						
							
							New platform ethernet_info from component text_sensor ( #3811 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-19 13:44:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Marcel Hoppe 
							
						 
					 
					
						
						
							
						
						4ac72d7d08 
					 
					
						
						
							
							Add support for wl-134 ( #3569 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-19 13:44:26 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						06ac4980ba 
					 
					
						
						
							
							Merge branch 'release' into dev  
						
						 
						
						
						
						
					 
					
						2022-10-19 11:15:19 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ccbfa20bb9 
					 
					
						
						
							
							Merge pull request  #3918  from esphome/bump-2022.10.0  
						
						 
						
						... 
						
						
						
						2022.10.0 
						
						
					 
					
						2022-10-19 11:13:16 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						58cd754e07 
					 
					
						
						
							
							Fix bad merge  
						
						 
						
						
						
						
					 
					
						2022-10-19 10:50:32 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d1263e583b 
					 
					
						
						
							
							Bump version to 2022.10.0  
						
						 
						
						
						
						
					 
					
						2022-10-19 10:30:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						67c911c37f 
					 
					
						
						
							
							Merge branch 'beta' into bump-2022.10.0  
						
						 
						
						
						
						
					 
					
						2022-10-19 10:30:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						288e3c3e3e 
					 
					
						
						
							
							Merge pull request  #3909  from esphome/bump-2022.10.0b2  
						
						 
						
						... 
						
						
						
						2022.10.0b2 
						
						
					 
					
						2022-10-15 09:12:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a84378c6c2 
					 
					
						
						
							
							Bump version to 2022.10.0b2  
						
						 
						
						
						
						
					 
					
						2022-10-15 08:37:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b6073408f4 
					 
					
						
						
							
							Remove address type map from bluetooth proxy ( #3905 )  
						
						 
						
						
						
						
					 
					
						2022-10-15 08:37:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Frédéric Jouault 
							
						 
					 
					
						
						
							
						
						b2d91ac5de 
					 
					
						
						
							
							Send true and not RSSI in ble_presence ( #3904 )  
						
						 
						
						
						
						
					 
					
						2022-10-15 08:37:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sergey Dudanov 
							
						 
					 
					
						
						
							
						
						8bf34e09f4 
					 
					
						
						
							
							Modbus QWORD fix ( #3856 )  
						
						 
						
						
						
						
					 
					
						2022-10-15 08:37:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						be914f2c15 
					 
					
						
						
							
							fix never calling preset change trigger ( #3864 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Keith Burzinski <kbx81x@gmail.com > 
						
						
					 
					
						2022-10-15 08:37:11 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						8bb670521d 
					 
					
						
						
							
							Remove address type map from bluetooth proxy ( #3905 )  
						
						 
						
						
						
						
					 
					
						2022-10-15 08:35:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Frédéric Jouault 
							
						 
					 
					
						
						
							
						
						225b3c1494 
					 
					
						
						
							
							Send true and not RSSI in ble_presence ( #3904 )  
						
						 
						
						
						
						
					 
					
						2022-10-14 12:47:05 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kuba Szczodrzyński 
							
						 
					 
					
						
						
							
						
						4bf94e0757 
					 
					
						
						
							
							Allow preserving WiFi credentials entered with captive_portal ( #3813 )  
						
						 
						
						
						
						
					 
					
						2022-10-14 08:58:42 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Brian Kaufman 
							
						 
					 
					
						
						
							
						
						3b21d1d81e 
					 
					
						
						
							
							Don't Use Base Network Manual IP for WiFi AP ( #3902 )  
						
						 
						
						
						
						
					 
					
						2022-10-14 08:55:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Frank Riley 
							
						 
					 
					
						
						
							
						
						5ec1588110 
					 
					
						
						
							
							Update the ibeacon code ( #3859 )  
						
						 
						
						
						
						
					 
					
						2022-10-13 12:59:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sergey Dudanov 
							
						 
					 
					
						
						
							
						
						71387be72e 
					 
					
						
						
							
							Modbus QWORD fix ( #3856 )  
						
						 
						
						
						
						
					 
					
						2022-10-13 12:50:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						98171c9f49 
					 
					
						
						
							
							fix never calling preset change trigger ( #3864 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Keith Burzinski <kbx81x@gmail.com > 
						
						
					 
					
						2022-10-13 10:11:59 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						a6c999dea0 
					 
					
						
						
							
							Merge pull request  #3900  from esphome/bump-2022.10.0b1  
						
						 
						
						... 
						
						
						
						2022.10.0b1 
						
						
					 
					
						2022-10-13 09:50:04 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bf15b1d302 
					 
					
						
						
							
							Bump version to 2022.11.0-dev  
						
						 
						
						
						
						
					 
					
						2022-10-13 09:18:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						f422fabab4 
					 
					
						
						
							
							Bump version to 2022.10.0b1  
						
						 
						
						
						
						
					 
					
						2022-10-13 09:18:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						01b130ec59 
					 
					
						
						
							
							Merge branch 'dev' into bump-2022.10.0b1  
						
						 
						
						
						
						
					 
					
						2022-10-13 09:18:46 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								definitio 
							
						 
					 
					
						
						
							
						
						48a1797e72 
					 
					
						
						
							
							Do not require CS pin for ST7789V ( #3888 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-13 08:26:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						b34d24735a 
					 
					
						
						
							
							Send GATT error events to HA ( #3884 )  
						
						 
						
						
						
						
					 
					
						2022-10-12 22:22:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Chris Feenstra 
							
						 
					 
					
						
						
							
						
						fe38b36c26 
					 
					
						
						
							
							Add support for ZHLT01 heatpump IR protocol ( #3655 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Chris Feenstra <chris@cfeenstra.nl > 
						
						
					 
					
						2022-10-12 15:29:57 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								cstaahl 
							
						 
					 
					
						
						
							
						
						03fca8d91e 
					 
					
						
						
							
							Fix pulse_meter filter logic ( #3321 )  
						
						 
						
						
						
						
					 
					
						2022-10-12 15:26:35 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						9f9980e338 
					 
					
						
						
							
							Add ble RSSI sensor for connected devices ( #3860 )  
						
						 
						
						
						
						
					 
					
						2022-10-12 15:23:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Quentin Smith 
							
						 
					 
					
						
						
							
						
						19900b004b 
					 
					
						
						
							
							Fix type annotation on extract_registry_entry_config ( #3623 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-12 15:15:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Gustavo Ambrozio 
							
						 
					 
					
						
						
							
						
						a8ff0a8913 
					 
					
						
						
							
							Exposing coordinates from touchscreen binary sensor ( #3891 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 12:22:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						45861456f1 
					 
					
						
						
							
							Fix default unit for ble_rssi sensor ( #3874 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 12:03:54 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						44b335e7e3 
					 
					
						
						
							
							Correctly set ble_write UUIDs based on their lengths. ( #3885 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 12:02:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						de23bbace2 
					 
					
						
						
							
							Update webserver index file ( #3896 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 12:01:41 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						edff9ae322 
					 
					
						
						
							
							Proxy friendly host url resolution for use_address with path. ( #3653 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 12:01:31 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NP v/d Spek 
							
						 
					 
					
						
						
							
						
						3c2766448d 
					 
					
						
						
							
							Refactor xpt2046 to be a touchscreen platform ( #3793 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 10:10:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						786c8b6cfe 
					 
					
						
						
							
							Add new sensor device classes ( #3895 )  
						
						 
						
						
						
						
					 
					
						2022-10-11 09:54:58 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e8de6a3a67 
					 
					
						
						
							
							Merge pull request  #3883  from esphome/bump-2022.9.4  
						
						 
						
						... 
						
						
						
						2022.9.4 
						
						
					 
					
						2022-10-07 16:56:22 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3c320c4c83 
					 
					
						
						
							
							Bump version to 2022.9.4  
						
						 
						
						
						
						
					 
					
						2022-10-07 16:34:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3b83f967e4 
					 
					
						
						
							
							Dont add wifi block to yaml if discovered device uses ethernet ( #3882 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 16:34:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5e96b8ef7c 
					 
					
						
						
							
							Bump esphome-dashboard to 20221007.0 ( #3881 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 16:34:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5df0e82c37 
					 
					
						
						
							
							Add network type to mdns service message ( #3880 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 16:34:38 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fd57b21aff 
					 
					
						
						
							
							Dont add wifi block to yaml if discovered device uses ethernet ( #3882 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 15:35:48 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6087183a0c 
					 
					
						
						
							
							Bump esphome-dashboard to 20221007.0 ( #3881 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 15:20:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						01b7c4200e 
					 
					
						
						
							
							Add network type to mdns service message ( #3880 )  
						
						 
						
						
						
						
					 
					
						2022-10-07 14:42:28 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						7171286c3c 
					 
					
						
						
							
							Bump pylint from 2.15.2 to 2.15.3 ( #3870 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
						
						
					 
					
						2022-10-06 14:57:07 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						2d58239b74 
					 
					
						
						
							
							Merge pull request  #3876  from esphome/bump-2022.9.3  
						
						 
						
						... 
						
						
						
						2022.9.3 
						
						
					 
					
						2022-10-06 09:57:39 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6b52f62531 
					 
					
						
						
							
							Bump version to 2022.9.3  
						
						 
						
						
						
						
					 
					
						2022-10-06 09:22:01 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						1001d9c04e 
					 
					
						
						
							
							Bluetooth Proxy active connections ( #3817 )  
						
						 
						
						
						
						
					 
					
						2022-10-06 09:22:00 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d220d41182 
					 
					
						
						
							
							Bump python min to 3.9 ( #3871 )  
						
						 
						
						
						
						
					 
					
						2022-10-05 20:09:27 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c3a8972550 
					 
					
						
						
							
							Add min_version to esphome config ( #3866 )  
						
						 
						
						
						
						
					 
					
						2022-10-05 16:30:56 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
						
						263b603188 
					 
					
						
						
							
							Bump pyupgrade from 2.37.3 to 3.0.0 ( #3867 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-10-05 16:29:49 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						584b722e7e 
					 
					
						
						
							
							Fix time/automation (cron) wdt crash when time jumps ahead too much ( #3844 )  
						
						 
						
						
						
						
					 
					
						2022-10-05 14:52:45 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						05edfd0e82 
					 
					
						
						
							
							Add cg.with_local_variable ( #3577 )  
						
						 
						
						
						
						
					 
					
						2022-10-05 11:50:03 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						16249c02a5 
					 
					
						
						
							
							Bump CI to python 3.9 ( #3869 )  
						
						 
						
						
						
						
					 
					
						2022-10-05 11:21:13 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						e8ff36d1f3 
					 
					
						
						
							
							fix dump preset string type ( #3863 )  
						
						 
						
						
						
						
					 
					
						2022-10-04 10:50:33 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ed443c6153 
					 
					
						
						
							
							Bluetooth Proxy active connections ( #3817 )  
						
						 
						
						
						
						
					 
					
						2022-10-04 10:45:06 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						f4a84765cd 
					 
					
						
						
							
							Add display GPIO setup instruction for Aliexpress display ( #3851 )  
						
						 
						
						
						
						
					 
					
						2022-09-30 19:10:53 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								J. Nick Koston 
							
						 
					 
					
						
						
							
						
						106de3530d 
					 
					
						
						
							
							Add support for parsing the short local name in the tracker ( #3854 )  
						
						 
						
						
						
						
					 
					
						2022-09-30 09:15:30 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						119c3f6f46 
					 
					
						
						
							
							Merge pull request  #3853  from esphome/bump-2022.9.2  
						
						 
						
						... 
						
						
						
						2022.9.2 
						
						
					 
					
						2022-09-29 16:18:21 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						d2c1c7507c 
					 
					
						
						
							
							Bump version to 2022.9.2  
						
						 
						
						
						
						
					 
					
						2022-09-29 16:00:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						efdb3d1f40 
					 
					
						
						
							
							Bump dashboard to 20220925.0 ( #3846 )  
						
						 
						
						
						
						
					 
					
						2022-09-29 16:00:55 +13:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Davidson 
							
						 
					 
					
						
						
							
						
						8095db6715 
					 
					
						
						
							
							Thermostat remove deprecated config ( #3643 )  
						
						 
						
						... 
						
						
						
						* Raise errors for all the now deprecated options
* Fix CONF_DEFAULT_PRESET detection
* Stop attempting to set the non-existent normal_config
* Add support for default presets
* Fix correct detection of Two Point temperature mode
* Fix lint issues
* Fix tests
* Generate correct yaml for equivalent configurations
* Remove debug code
* Only set default preset if the thermostat does not have state to restore
* Add restore_default_preset_on_boot option
If set to True then the default_preset will be applied on every boot. If False (Default) state will be restored from memory as per prior versions
* Apply lint suggestions
* Switch from restore_default_preset_on_boot to an enum for startup_behavior
This gives better self-documentation as well as the option for extending to other options down the track
* Lint fixes
* Rename startup_behavior to on_boot_restore_from
This removes any issues with different English locales
* Fix comparable_preset yaml output alignment
* Add dump of on_boot_restore_from setting
Co-authored-by: Keith Burzinski <kbx81x@gmail.com > 
						
						
					 
					
						2022-09-25 21:59:04 -05:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						ce2e161b08 
					 
					
						
						
							
							Bump dashboard to 20220925.0 ( #3846 )  
						
						 
						
						
						
						
					 
					
						2022-09-25 18:16:30 -03:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9dbc32b85f 
					 
					
						
						
							
							Merge pull request  #3839  from esphome/bump-2022.9.1  
						
						 
						
						... 
						
						
						
						2022.9.1 
						
						
					 
					
						2022-09-22 07:51:52 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						66226abb48 
					 
					
						
						
							
							Bump version to 2022.9.1  
						
						 
						
						
						
						
					 
					
						2022-09-22 07:40:15 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						34bef2f2ca 
					 
					
						
						
							
							Revert "fix spi timing issues" ( #3838 )  
						
						 
						
						
						
						
					 
					
						2022-09-22 07:40:15 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						6ef93452f5 
					 
					
						
						
							
							Revert "fix spi timing issues" ( #3838 )  
						
						 
						
						
						
						
					 
					
						2022-09-22 07:38:31 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						fdd4ca6837 
					 
					
						
						
							
							Merge pull request  #3837  from esphome/bump-2022.9.0  
						
						 
						
						... 
						
						
						
						2022.9.0 
						
						
					 
					
						2022-09-21 15:59:34 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9655362f23 
					 
					
						
						
							
							Bump version to 2022.9.0  
						
						 
						
						
						
						
					 
					
						2022-09-21 15:34:02 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						130c9fad22 
					 
					
						
						
							
							Merge branch 'beta' into bump-2022.9.0  
						
						 
						
						
						
						
					 
					
						2022-09-21 15:34:02 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3de0b601bf 
					 
					
						
						
							
							Merge pull request  #3835  from esphome/bump-2022.9.0b5  
						
						 
						
						... 
						
						
						
						2022.9.0b5 
						
						
					 
					
						2022-09-21 15:23:41 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						91560ae4e9 
					 
					
						
						
							
							Bump version to 2022.9.0b5  
						
						 
						
						
						
						
					 
					
						2022-09-21 12:38:55 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						fd6135aebb 
					 
					
						
						
							
							Bump dashboard to 20220920.1 ( #3834 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 12:38:55 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						68ea59f3ae 
					 
					
						
						
							
							Bump dashboard to 20220920.1 ( #3834 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 12:32:53 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						e5fe5d1249 
					 
					
						
						
							
							Merge pull request  #3833  from esphome/bump-2022.9.0b4  
						
						 
						
						... 
						
						
						
						2022.9.0b4 
						
						
					 
					
						2022-09-21 09:09:20 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						9a69769a7e 
					 
					
						
						
							
							Dont fail fast on CI for docker ( #3832 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 07:54:35 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						63b42f3608 
					 
					
						
						
							
							Bump version to 2022.9.0b4  
						
						 
						
						
						
						
					 
					
						2022-09-21 07:36:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						d56107e97f 
					 
					
						
						
							
							Bump dashboard to 20220920.0 ( #3831 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 07:36:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						33f296e05b 
					 
					
						
						
							
							Fix-esphome-validation-line-number ( #3815 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 07:36:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						3572c62315 
					 
					
						
						
							
							Bump dashboard to 20220920.0 ( #3831 )  
						
						 
						
						
						
						
					 
					
						2022-09-21 07:35:46 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						97e067a277 
					 
					
						
						
							
							Merge pull request  #3829  from esphome/bump-2022.9.0b3  
						
						 
						
						... 
						
						
						
						2022.9.0b3 
						
						
					 
					
						2022-09-20 19:28:27 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						1444cddda9 
					 
					
						
						
							
							Fix-esphome-validation-line-number ( #3815 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:23:55 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5f56cf3128 
					 
					
						
						
							
							Bump version to 2022.9.0b3  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:14:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						5c4e83ebdc 
					 
					
						
						
							
							Bump dashboard to 20220919.1 ( #3828 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:14:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						91f1c25fcc 
					 
					
						
						
							
							Make sprinkler reset_resume() method public ( #3824 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:14:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								h3ndrik 
							
						 
					 
					
						
						
							
						
						47a7a239ae 
					 
					
						
						
							
							[BME280] raise standby time ( #3804 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:14:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						fb9984e21f 
					 
					
						
						
							
							split pronto codes if they are too long ( #3812 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2022-09-20 17:14:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Paulus Schoutsen 
							
						 
					 
					
						
						
							
						
						b2db524366 
					 
					
						
						
							
							Bump dashboard to 20220919.1 ( #3828 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 17:13:59 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						ab8674a5c7 
					 
					
						
						
							
							Make sprinkler reset_resume() method public ( #3824 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 13:02:55 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Geek_cat 
							
						 
					 
					
						
						
							
						
						d1c85fc3fa 
					 
					
						
						
							
							Allow CORS for web_server ( #3819 )  
						
						 
						
						
						
						
					 
					
						2022-09-20 13:01:00 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								h3ndrik 
							
						 
					 
					
						
						
							
						
						55ad45e3ee 
					 
					
						
						
							
							[BME280] raise standby time ( #3804 )  
						
						 
						
						
						
						
					 
					
						2022-09-19 07:25:59 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								pawel3410 
							
						 
					 
					
						
						
							
						
						f6e5a8cb2a 
					 
					
						
						
							
							Fix mcp23s17 addressing beyond 3 ( #3797 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 18:19:41 -07:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						7a91ca9809 
					 
					
						
						
							
							split pronto codes if they are too long ( #3812 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2022-09-16 07:27:50 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						71dd04b09e 
					 
					
						
						
							
							Merge pull request  #3809  from esphome/bump-2022.9.0b2  
						
						 
						
						... 
						
						
						
						2022.9.0b2 
						
						
					 
					
						2022-09-15 13:35:54 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7deabbb512 
					 
					
						
						
							
							Bump version to 2022.9.0b2  
						
						 
						
						
						
						
					 
					
						2022-09-15 13:02:40 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Azimath 
							
						 
					 
					
						
						
							
						
						625a575e49 
					 
					
						
						
							
							Remove floating point calculation from ac_dimmer ISR ( #3770 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 13:02:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						df4d0da221 
					 
					
						
						
							
							Initialize all child sensors to nullptr ( #3808 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 13:02:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						6b23b7cad7 
					 
					
						
						
							
							Unify 'nullptr' initalization of class members; ( #3805 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 13:02:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						cea7deab91 
					 
					
						
						
							
							Sim800l add calls, multiline sms and ussd ( #3630 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Matus Ivanecky <matus.ivanecky@gmail.com >
Co-authored-by: Matus Ivanecky <maty535@users.noreply.github.com > 
						
						
					 
					
						2022-09-15 13:02:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						c61abf6aca 
					 
					
						
						
							
							null initialize total sensor for pulse counter ( #3803 )  
						
						 
						
						... 
						
						
						
						* null initialize total sensor.
* pedantic styling fix
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com >
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com > 
						
						
					 
					
						2022-09-15 13:02:39 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Azimath 
							
						 
					 
					
						
						
							
						
						917bbc669c 
					 
					
						
						
							
							Remove floating point calculation from ac_dimmer ISR ( #3770 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 11:54:33 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						0ac4c055de 
					 
					
						
						
							
							Initialize all child sensors to nullptr ( #3808 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 11:53:22 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						78b55d86e9 
					 
					
						
						
							
							Unify 'nullptr' initalization of class members; ( #3805 )  
						
						 
						
						
						
						
					 
					
						2022-09-15 11:53:02 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Guillermo Ruffino 
							
						 
					 
					
						
						
							
						
						aaf50fc2e6 
					 
					
						
						
							
							Sim800l add calls, multiline sms and ussd ( #3630 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Matus Ivanecky <matus.ivanecky@gmail.com >
Co-authored-by: Matus Ivanecky <maty535@users.noreply.github.com > 
						
						
					 
					
						2022-09-15 07:43:03 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								RoboMagus 
							
						 
					 
					
						
						
							
						
						6a8f4e92df 
					 
					
						
						
							
							null initialize total sensor for pulse counter ( #3803 )  
						
						 
						
						... 
						
						
						
						* null initialize total sensor.
* pedantic styling fix
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com >
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com > 
						
						
					 
					
						2022-09-14 10:01:28 -03:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						88943103a2 
					 
					
						
						
							
							Bump version to 2022.10.0-dev  
						
						 
						
						
						
						
					 
					
						2022-09-14 17:02:22 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						041eb8f6cc 
					 
					
						
						
							
							Merge pull request  #3783  from esphome/bump-2022.8.3  
						
						 
						
						... 
						
						
						
						2022.8.3 
						
						
					 
					
						2022-09-06 18:54:28 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						733a84df75 
					 
					
						
						
							
							Bump version to 2022.8.3  
						
						 
						
						
						
						
					 
					
						2022-09-06 16:50:17 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						acd0b50b40 
					 
					
						
						
							
							Fix HA addon auth using HA credentials ( #3758 )  
						
						 
						
						
						
						
					 
					
						2022-09-06 16:50:11 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						60e46d485e 
					 
					
						
						
							
							Merge pull request  #3781  from esphome/bump-2022.8.2  
						
						 
						
						... 
						
						
						
						2022.8.2 
						
						
					 
					
						2022-09-06 15:38:46 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						5bf0c92318 
					 
					
						
						
							
							Bump version to 2022.8.2  
						
						 
						
						
						
						
					 
					
						2022-09-06 13:12:00 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Avirsaam 
							
						 
					 
					
						
						
							
						
						39d493c278 
					 
					
						
						
							
							Update modbus_controller.cpp ( #3768 )  
						
						 
						
						
						
						
					 
					
						2022-09-06 13:12:00 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								anatoly-savchenkov 
							
						 
					 
					
						
						
							
						
						d2ce62aa13 
					 
					
						
						
							
							Ignore NaN states in the integration component ( #3767 )  
						
						 
						
						
						
						
					 
					
						2022-09-06 13:12:00 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						c8eb30ef27 
					 
					
						
						
							
							Initial bluetooth_proxy support ( #3736 )  
						
						 
						
						
						
						
					 
					
						2022-09-06 13:11:54 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						31ad75d01b 
					 
					
						
						
							
							Merge pull request  #3757  from esphome/bump-2022.8.1  
						
						 
						
						... 
						
						
						
						2022.8.1 
						
						
					 
					
						2022-09-01 13:59:03 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						aa2eb29274 
					 
					
						
						
							
							Bump version to 2022.8.1  
						
						 
						
						
						
						
					 
					
						2022-09-01 11:26:52 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Keith Burzinski 
							
						 
					 
					
						
						
							
						
						22eb4f9cb9 
					 
					
						
						
							
							Fix SPI HW selection for ESP32 variants ( #3728 )  
						
						 
						
						
						
						
					 
					
						2022-09-01 11:26:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						3acc8e7479 
					 
					
						
						
							
							fix grow password setting ( #3722 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Samuel Sieb <samuel@sieb.net > 
						
						
					 
					
						2022-09-01 11:26:51 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						adc8c1aa38 
					 
					
						
						
							
							Merge pull request  #3721  from esphome/bump-2022.8.0  
						
						 
						
						... 
						
						
						
						2022.8.0 
						
						
					 
					
						2022-08-17 13:31:24 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						3a82f500d4 
					 
					
						
						
							
							Bump version to 2022.8.0  
						
						 
						
						
						
						
					 
					
						2022-08-17 12:58:30 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						7d1d4831a8 
					 
					
						
						
							
							Merge branch 'beta' into bump-2022.8.0  
						
						 
						
						
						
						
					 
					
						2022-08-17 12:58:29 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ab86ddcf02 
					 
					
						
						
							
							Merge pull request  #3692  from esphome/bump-2022.6.3  
						
						 
						
						... 
						
						
						
						2022.6.3 
						
						
					 
					
						2022-08-08 11:48:35 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						bf8eddb13b 
					 
					
						
						
							
							Bump version to 2022.6.3  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:12 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						e5eaf7a3fe 
					 
					
						
						
							
							Use correct struct members. ( #3672 )  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:12 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						50f32a3aa5 
					 
					
						
						
							
							Use application/json instead of text/json ( #3671 )  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:11 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bryan Berg 
							
						 
					 
					
						
						
							
						
						eb878710c1 
					 
					
						
						
							
							Add CO device class to binary_sensor ( #3656 )  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:11 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Samuel Sieb 
							
						 
					 
					
						
						
							
						
						311980e0e4 
					 
					
						
						
							
							Update inkbird_ibsth1_mini.cpp ( #3664 )  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:11 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Javier Peletier 
							
						 
					 
					
						
						
							
						
						df73170e5a 
					 
					
						
						
							
							modbus: fix queue deduplicator erasing custom commands ( #3650 )  
						
						 
						
						
						
						
					 
					
						2022-08-08 08:24:11 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						ccc13cc9e1 
					 
					
						
						
							
							Merge pull request  #3596  from esphome/bump-2022.6.2  
						
						 
						
						... 
						
						
						
						2022.6.2 
						
						
					 
					
						2022-06-23 11:30:31 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jesse Hills 
							
						 
					 
					
						
						
							
						
						020b2c05c8 
					 
					
						
						
							
							Bump version to 2022.6.2  
						
						 
						
						
						
						
					 
					
						2022-06-23 10:34:10 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Joe 
							
						 
					 
					
						
						
							
						
						4c37c17df1 
					 
					
						
						
							
							Fix 2 small issues in BLEClient ( #3544 )  
						
						 
						
						
						
						
					 
					
						2022-06-23 10:34:09 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sergey Dudanov 
							
						 
					 
					
						
						
							
						
						8f67acadd8 
					 
					
						
						
							
							Media Player: added play_media action ( #3579 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-06-23 10:34:09 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								kahrendt 
							
						 
					 
					
						
						
							
						
						ca13c4c1a6 
					 
					
						
						
							
							Fix wrong type for voc_state*_ in sgp4x component ( #3581 )  
						
						 
						
						... 
						
						
						
						Co-authored-by: Martin <25747549+martgras@users.noreply.github.com >
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com > 
						
						
					 
					
						2022-06-23 10:34:09 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								ShellAddicted 
							
						 
					 
					
						
						
							
						
						d0c646c721 
					 
					
						
						
							
							Fix: Make MQTT over TLS actually work ( #3580 )  
						
						 
						
						
						
						
					 
					
						2022-06-23 10:34:09 +12:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lkomurcu 
							
						 
					 
					
						
						
							
						
						8a055675af 
					 
					
						
						
							
							Move gas mbus config option being a define to being a build flag since its used in external libraries. ( #3575 )  
						
						 
						
						
						
						
					 
					
						2022-06-23 10:34:09 +12:00