Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 6ad4321

Browse files
authored
v1.4.1 to fix bug of wrong reqStates
### Releases v1.4.1 1. Fix bug of wrong `reqStates`. Check [Release 1.9 breakes previously running code #39](khoih-prog/AsyncHTTPRequest_Generic#39) and [Callback behaviour is buggy (ESP8266) #43](khoih-prog/AsyncHTTPRequest_Generic#43) 2. Optional larger `DEFAULT_RX_TIMEOUT` from default 3s, for slower networks
1 parent d581e81 commit 6ad4321

File tree

20 files changed

+105
-98
lines changed

20 files changed

+105
-98
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
## Table of Contents
1212

1313
* [Changelog](#changelog)
14+
* [Releases v1.4.1](#releases-v141)
1415
* [Releases v1.4.0](#releases-v140)
1516
* [Releases v1.3.1](#releases-v131)
1617
* [Releases v1.3.0](#releases-v130)
@@ -23,6 +24,11 @@
2324

2425
## Changelog
2526

27+
### Releases v1.4.1
28+
29+
1. Fix bug of wrong `reqStates`. Check [Release 1.9 breakes previously running code #39](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/39) and [Callback behaviour is buggy (ESP8266) #43](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/issues/43)
30+
2. Optional larger `DEFAULT_RX_TIMEOUT` from default 3s, for slower networks
31+
2632
### Releases v1.4.0
2733

2834
1. Fix bug.

examples/Ethernet/AsyncCustomHeader/AsyncCustomHeader.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
#include "defines.h"
2121

22-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
23-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
22+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
23+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2424

2525
// Select a test server address
2626
//char GET_ServerAddress[] = "192.168.2.110/";

examples/Ethernet/AsyncDweetGet/AsyncDweetGet.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
#include "defines.h"
3232

33-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
34-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
33+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
34+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
3535

3636
// Select a test server address
3737
const char GET_ServerAddress[] = "dweet.io";

examples/Ethernet/AsyncDweetPost/AsyncDweetPost.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#include "defines.h"
2626

27-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
28-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
27+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
28+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2929

3030
// Select a test server address
3131
const char POST_ServerAddress[] = "dweet.io";

examples/Ethernet/AsyncHTTPRequest/AsyncHTTPRequest.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343

4444
#include "defines.h"
4545

46-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
47-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
46+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
47+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
4848

4949
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
5050
#include <Portenta_H7_AsyncHTTPRequest.h> // https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest

examples/Ethernet/AsyncSimpleGET/AsyncSimpleGET.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
#include "defines.h"
2323

24-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
25-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
24+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
25+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2626

2727
// Select a test server address
2828
//char GET_ServerAddress[] = "ipv4bot.whatismyipaddress.com/";

examples/Ethernet/AsyncWebClientRepeating/AsyncWebClientRepeating.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
#include "defines.h"
2323

24-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
25-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
24+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
25+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2626

2727
// Select a test server address
2828
const char GET_ServerAddress[] = "arduino.tips";

examples/WiFi/AsyncCustomHeader/AsyncCustomHeader.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
#include "defines.h"
2323

24-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
25-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
24+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
25+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2626

2727
// Select a test server address
2828
//char GET_ServerAddress[] = "192.168.2.110/";

examples/WiFi/AsyncDweetGet/AsyncDweetGet.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
#include "defines.h"
3232

33-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
34-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
33+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
34+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
3535

3636
// Select a test server address
3737
const char GET_ServerAddress[] = "dweet.io";

examples/WiFi/AsyncDweetPost/AsyncDweetPost.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#include "defines.h"
2626

27-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.0"
28-
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004000
27+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN_TARGET "Portenta_H7_AsyncHTTPRequest v1.4.1"
28+
#define PORTENTA_H7_ASYNC_HTTP_REQUEST_VERSION_MIN 1004001
2929

3030
// Select a test server address
3131
const char POST_ServerAddress[] = "dweet.io";

0 commit comments

Comments
 (0)