Skip to content

Commit 71e7aa4

Browse files
committed
Breaking Change: changed default cookiejar in shared library to be fhttp cookiejar and not tls_client cookiejar anymore;
1 parent 3651406 commit 71e7aa4

17 files changed

+21
-22
lines changed

cffi_dist/example_csharp/Requester.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class RequestPayload
2424
public bool FollowRedirects { get; set; } = true;
2525
public bool InsecureSkipVerify { get; set; } = false;
2626
public bool WithoutCookieJar { get; set; } = false;
27-
public bool WithDefaultCookieJar { get; set; } = false;
27+
public bool WithCustomCookieJar { get; set; } = false;
2828
public bool IsByteRequest { get; set; } = false;
2929
public bool ForceHttp1 { get; set; } = false;
3030
public bool WithDebug { get; set; } = false;

cffi_dist/example_node/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const requestPayload = {
1515
"followRedirects": true,
1616
"insecureSkipVerify": false,
1717
"withoutCookieJar": false,
18-
"withDefaultCookieJar": false,
18+
"withCustomCookieJar": false,
1919
"isByteRequest": false,
2020
"catchPanics": false,
2121
"withDebug": false,

cffi_dist/example_node/index_async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const requestPayload = {
1515
"followRedirects": false,
1616
"insecureSkipVerify": false,
1717
"withoutCookieJar": false,
18-
"withDefaultCookieJar": false,
18+
"withCustomCookieJar": false,
1919
"isByteRequest": false,
2020
"forceHttp1": false,
2121
"withRandomTLSExtensionOrder": false,

cffi_dist/example_node/index_cookies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const requestPayload = {
1515
"followRedirects": true,
1616
"insecureSkipVerify": false,
1717
"withoutCookieJar": false,
18-
"withDefaultCookieJar": false,
18+
"withCustomCookieJar": false,
1919
"isByteRequest": false,
2020
"catchPanics": false,
2121
"withDebug": false,

cffi_dist/example_node/index_custom_client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const requestPayload = {
1414
"followRedirects": false,
1515
"insecureSkipVerify": false,
1616
"withoutCookieJar": false,
17-
"withDefaultCookieJar": false,
17+
"withCustomCookieJar": false,
1818
"isByteRequest": false,
1919
"catchPanics": false,
2020
"forceHttp1": false,

cffi_dist/example_node/index_ffi_rs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const requestPayload = {
6262
"followRedirects": true,
6363
"insecureSkipVerify": false,
6464
"withoutCookieJar": false,
65-
"withDefaultCookieJar": false,
65+
"withCustomCookieJar": false,
6666
"isByteRequest": false,
6767
"catchPanics": false,
6868
"withDebug": false,

cffi_dist/example_node/index_image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const requestPayload = {
1616
"followRedirects": false,
1717
"insecureSkipVerify": false,
1818
"withoutCookieJar": false,
19-
"withDefaultCookieJar": false,
19+
"withCustomCookieJar": false,
2020
"forceHttp1": false,
2121
"withDebug": false,
2222
"withRandomTLSExtensionOrder": false,

cffi_dist/example_node/index_image_upload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const requestPayload = {
1818
"followRedirects": false,
1919
"insecureSkipVerify": false,
2020
"withoutCookieJar": false,
21-
"withDefaultCookieJar": false,
21+
"withCustomCookieJar": false,
2222
"forceHttp1": false,
2323
"withDebug": false,
2424
"withRandomTLSExtensionOrder": false,

cffi_dist/example_node/index_post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const requestPayload = {
1515
"followRedirects": false,
1616
"insecureSkipVerify": false,
1717
"withoutCookieJar": false,
18-
"withDefaultCookieJar": false,
18+
"withCustomCookieJar": false,
1919
"forceHttp1": false,
2020
"withDebug": false,
2121
"withRandomTLSExtensionOrder": false,

cffi_dist/example_python/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"followRedirects": False,
3333
"insecureSkipVerify": False,
3434
"withoutCookieJar": False,
35-
"withDefaultCookieJar": False,
35+
"withCustomCookieJar": False,
3636
"isByteRequest": False,
3737
"forceHttp1": False,
3838
"withDebug": False,

0 commit comments

Comments
 (0)