Commit 89929cb
committed
Merge branch '7.4' into 8.0
* 7.4:
[JsonPath] Add limits for filter expression length and depth in `JsonCrawler`
[Serializer] Check the denormalized class is a Mime part in MimeMessageNormalizer
[JsonStreamer] Drop the unbounded process-global key cache in Splitter
[SecurityBundle] Restrict redirections to the current host when sessions are disabled
[HttpFoundation] Fix TypeError in UriSigner when the hash parameter is not a string
[HttpFoundation] Reject reserved characters in the cookie path and domain
[HttpClient] Reject https:// proxies that curl would connect to in cleartext
[HttpFoundation] Fix newline handling in server event fields
[HttpClient] Strip Proxy-Authorization on cross-authority redirects
[Messenger] Fix keepalive test with DBAL 325 files changed
+631-51Lines changed: 631 additions & 51 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- src/Symfony
- Bundle/SecurityBundle
- DependencyInjection/Compiler
- Tests/DependencyInjection/Compiler
- Component
- HttpClient
- Response
- Tests
- HttpFoundation
- Tests
- HttpKernel/Tests/EventListener
- JsonPath
- Tests
- JsonStreamer
- Read
- Tests/Read
- Messenger/Bridge/Doctrine/Tests/Transport
- Mime/Tests
- Serializer/Normalizer
Expand file treeCollapse file tree
Open diff view settings
Collapse file
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/DependencyInjection/Compiler/AddSessionDomainConstraintPass.php+3-2Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
23 | 23 | |
24 | 24 | |
25 | 25 | |
26 | | - |
| 26 | + |
27 | 27 | |
28 | 28 | |
29 | 29 | |
30 | | - |
| 30 | + |
| 31 | + |
31 | 32 | |
32 | 33 | |
33 | 34 | |
|
Collapse file
src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Compiler/AddSessionDomainConstraintPassTest.php
Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Compiler/AddSessionDomainConstraintPassTest.php+17-5Lines changed: 17 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
21 | 21 | |
22 | 22 | |
23 | 23 | |
| 24 | + |
24 | 25 | |
25 | 26 | |
26 | 27 | |
| ||
92 | 93 | |
93 | 94 | |
94 | 95 | |
95 | | - |
96 | | - |
| 96 | + |
| 97 | + |
97 | 98 | |
98 | | - |
99 | | - |
100 | | - |
| 99 | + |
| 100 | + |
| 101 | + |
| 102 | + |
| 103 | + |
| 104 | + |
| 105 | + |
| 106 | + |
| 107 | + |
| 108 | + |
| 109 | + |
| 110 | + |
| 111 | + |
| 112 | + |
101 | 113 | |
102 | 114 | |
103 | 115 | |
|
Collapse file
src/Symfony/Component/HttpClient/CurlHttpClient.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/CurlHttpClient.php+42-10Lines changed: 42 additions & 10 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
94 | 94 | |
95 | 95 | |
96 | 96 | |
| 97 | + |
| 98 | + |
97 | 99 | |
98 | 100 | |
99 | 101 | |
| ||
109 | 111 | |
110 | 112 | |
111 | 113 | |
112 | | - |
113 | | - |
| 114 | + |
| 115 | + |
| 116 | + |
114 | 117 | |
115 | 118 | |
116 | 119 | |
| ||
330 | 333 | |
331 | 334 | |
332 | 335 | |
333 | | - |
| 336 | + |
334 | 337 | |
335 | 338 | |
336 | 339 | |
| ||
407 | 410 | |
408 | 411 | |
409 | 412 | |
410 | | - |
| 413 | + |
411 | 414 | |
412 | | - |
| 415 | + |
413 | 416 | |
414 | 417 | |
415 | 418 | |
416 | 419 | |
417 | 420 | |
418 | 421 | |
419 | | - |
420 | | - |
| 422 | + |
| 423 | + |
421 | 424 | |
422 | 425 | |
423 | 426 | |
424 | | - |
| 427 | + |
425 | 428 | |
426 | 429 | |
427 | 430 | |
| ||
444 | 447 | |
445 | 448 | |
446 | 449 | |
447 | | - |
| 450 | + |
| 451 | + |
448 | 452 | |
449 | | - |
| 453 | + |
450 | 454 | |
451 | 455 | |
452 | 456 | |
453 | 457 | |
454 | 458 | |
455 | 459 | |
456 | 460 | |
| 461 | + |
| 462 | + |
| 463 | + |
| 464 | + |
| 465 | + |
| 466 | + |
| 467 | + |
| 468 | + |
| 469 | + |
| 470 | + |
| 471 | + |
| 472 | + |
| 473 | + |
| 474 | + |
| 475 | + |
| 476 | + |
| 477 | + |
| 478 | + |
| 479 | + |
| 480 | + |
| 481 | + |
| 482 | + |
| 483 | + |
| 484 | + |
| 485 | + |
| 486 | + |
| 487 | + |
| 488 | + |
457 | 489 | |
458 | 490 | |
459 | 491 | |
|
Collapse file
src/Symfony/Component/HttpClient/NativeHttpClient.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/NativeHttpClient.php+3-3Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
385 | 385 | |
386 | 386 | |
387 | 387 | |
388 | | - |
389 | | - |
| 388 | + |
| 389 | + |
390 | 390 | |
391 | 391 | |
392 | 392 | |
| ||
436 | 436 | |
437 | 437 | |
438 | 438 | |
439 | | - |
| 439 | + |
440 | 440 | |
441 | 441 | |
442 | 442 | |
|
Collapse file
src/Symfony/Component/HttpClient/NoPrivateNetworkHttpClient.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/NoPrivateNetworkHttpClient.php+3-3Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
100 | 100 | |
101 | 101 | |
102 | 102 | |
103 | | - |
104 | | - |
| 103 | + |
| 104 | + |
105 | 105 | |
106 | 106 | |
107 | 107 | |
| ||
138 | 138 | |
139 | 139 | |
140 | 140 | |
141 | | - |
| 141 | + |
142 | 142 | |
143 | 143 | |
144 | 144 | |
|
Collapse file
src/Symfony/Component/HttpClient/Response/AmpResponse.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/Response/AmpResponse.php+1Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
354 | 354 | |
355 | 355 | |
356 | 356 | |
| 357 | + |
357 | 358 | |
358 | 359 | |
359 | 360 | |
|
Collapse file
src/Symfony/Component/HttpClient/Response/CurlResponse.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/Response/CurlResponse.php+11-1Lines changed: 11 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
442 | 442 | |
443 | 443 | |
444 | 444 | |
445 | | - |
| 445 | + |
| 446 | + |
| 447 | + |
| 448 | + |
| 449 | + |
| 450 | + |
| 451 | + |
| 452 | + |
| 453 | + |
| 454 | + |
| 455 | + |
446 | 456 | |
447 | 457 | |
448 | 458 | |
|
Collapse file
src/Symfony/Component/HttpClient/Tests/AmpHttpClientTest.php
Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/Tests/AmpHttpClientTest.php+11Lines changed: 11 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
11 | 11 | |
12 | 12 | |
13 | 13 | |
| 14 | + |
14 | 15 | |
15 | 16 | |
16 | 17 | |
| ||
51 | 52 | |
52 | 53 | |
53 | 54 | |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | + |
| 64 | + |
54 | 65 | |
0 commit comments