mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-03 16:41:50 +00:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
			2024.11.0b
			...
			2024.11.0b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					01a24de3a8 | ||
| 
						 | 
					ae46dcef7e | ||
| 
						 | 
					872b8ee753 | ||
| 
						 | 
					eb8a2326ad | 
@@ -104,7 +104,9 @@ std::shared_ptr<HttpContainer> HttpRequestArduino::start(std::string url, std::s
 | 
			
		||||
  static const size_t HEADER_COUNT = sizeof(header_keys) / sizeof(header_keys[0]);
 | 
			
		||||
  container->client_.collectHeaders(header_keys, HEADER_COUNT);
 | 
			
		||||
 | 
			
		||||
  App.feed_wdt();
 | 
			
		||||
  container->status_code = container->client_.sendRequest(method.c_str(), body.c_str());
 | 
			
		||||
  App.feed_wdt();
 | 
			
		||||
  if (container->status_code < 0) {
 | 
			
		||||
    ESP_LOGW(TAG, "HTTP Request failed; URL: %s; Error: %s", url.c_str(),
 | 
			
		||||
             HTTPClient::errorToString(container->status_code).c_str());
 | 
			
		||||
 
 | 
			
		||||
@@ -117,8 +117,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
 | 
			
		||||
    return nullptr;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  App.feed_wdt();
 | 
			
		||||
  container->content_length = esp_http_client_fetch_headers(client);
 | 
			
		||||
  App.feed_wdt();
 | 
			
		||||
  container->status_code = esp_http_client_get_status_code(client);
 | 
			
		||||
  App.feed_wdt();
 | 
			
		||||
  if (is_success(container->status_code)) {
 | 
			
		||||
    container->duration_ms = millis() - start;
 | 
			
		||||
    return container;
 | 
			
		||||
@@ -148,8 +151,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
 | 
			
		||||
        return nullptr;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      App.feed_wdt();
 | 
			
		||||
      container->content_length = esp_http_client_fetch_headers(client);
 | 
			
		||||
      App.feed_wdt();
 | 
			
		||||
      container->status_code = esp_http_client_get_status_code(client);
 | 
			
		||||
      App.feed_wdt();
 | 
			
		||||
      if (is_success(container->status_code)) {
 | 
			
		||||
        container->duration_ms = millis() - start;
 | 
			
		||||
        return container;
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
"""Constants used by esphome."""
 | 
			
		||||
 | 
			
		||||
__version__ = "2024.11.0b3"
 | 
			
		||||
__version__ = "2024.11.0b4"
 | 
			
		||||
 | 
			
		||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
 | 
			
		||||
VALID_SUBSTITUTIONS_CHARACTERS = (
 | 
			
		||||
 
 | 
			
		||||
@@ -12,7 +12,7 @@ pyserial==3.5
 | 
			
		||||
platformio==6.1.16  # When updating platformio, also update Dockerfile
 | 
			
		||||
esptool==4.7.0
 | 
			
		||||
click==8.1.7
 | 
			
		||||
esphome-dashboard==20241118.0
 | 
			
		||||
esphome-dashboard==20241120.0
 | 
			
		||||
aioesphomeapi==24.6.2
 | 
			
		||||
zeroconf==0.132.2
 | 
			
		||||
puremagic==1.27
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user