@frontastic/common 2.48.2 → 2.48.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/composer.json +4 -3
- package/composer.lock +7552 -0
- package/docs/README.md +50 -0
- package/docs/php/AccountApiBundle/Command/CreateAccountCommand.md +1 -1
- package/docs/php/AccountApiBundle/Controller/LegacyAccountAuthController.md +2 -2
- package/docs/php/CoreBundle/Domain/Mailer/SwiftMail.md +2 -2
- package/docs/php/CoreBundle/EventListener/JsonExceptionListener.md +2 -2
- package/docs/php/CoreBundle/EventListener/JsonViewListener.md +2 -2
- package/docs/php/DevelopmentBundle/EventListener/BrowserConsoleDebuggerListener.md +2 -2
- package/docs/php/Mvc/EventDispatcher/EventDispatcher.md +40 -0
- package/docs/php/Mvc/Exception/FormAlreadyHandledException.md +25 -0
- package/docs/php/Mvc/Exception/NoFormHandledException.md +19 -0
- package/docs/php/Mvc/Exception/UnauthenticatedUserException.md +7 -0
- package/docs/php/Mvc/Flash.md +30 -0
- package/docs/php/Mvc/Form/InvalidFormRequest.md +88 -0
- package/docs/php/Mvc/Form/ValidFormRequest.md +103 -0
- package/docs/php/Mvc/FormRequest.md +86 -0
- package/docs/php/Mvc/Headers.md +27 -0
- package/docs/php/Mvc/RedirectRoute.md +63 -0
- package/docs/php/Mvc/TemplateView.md +65 -0
- package/docs/php/Mvc/TokenContext.md +124 -0
- package/docs/php/Mvc/ViewStruct.md +56 -0
- package/docs/php/MvcBundle/Controller/GyroControllerNameParser.md +38 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/ArrayToTemplateResponseConverter.md +64 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/ControllerResultConverter.md +40 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/ControllerYieldApplier.md +42 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/CookieYieldApplier.md +44 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/FlashYieldApplier.md +44 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/HeadersYieldApplier.md +44 -0
- package/docs/php/MvcBundle/Controller/ResultConverter/RedirectConverter.md +57 -0
- package/docs/php/MvcBundle/DependencyInjection/CompatibleTreeBuilder.md +32 -0
- package/docs/php/MvcBundle/DependencyInjection/Configuration.md +22 -0
- package/docs/php/MvcBundle/DependencyInjection/FrontasticCommonMvcExtension.md +32 -0
- package/docs/php/MvcBundle/EventListener/ConvertExceptionListener.md +40 -0
- package/docs/php/MvcBundle/EventListener/ParamConverterListener.md +42 -0
- package/docs/php/MvcBundle/EventListener/ViewListener.md +53 -0
- package/docs/php/MvcBundle/FrontasticCommonMvcBundle.md +7 -0
- package/docs/php/MvcBundle/MockTokenContext.md +137 -0
- package/docs/php/MvcBundle/ParamConverter/ServiceProvider.md +35 -0
- package/docs/php/MvcBundle/ParamConverter/SymfonyServiceProvider.md +56 -0
- package/docs/php/MvcBundle/Request/SymfonyFormRequest.md +105 -0
- package/docs/php/MvcBundle/SymfonyTokenContext.md +143 -0
- package/docs/php/MvcBundle/Versions.md +17 -0
- package/docs/php/MvcBundle/View/BundleLocation.md +38 -0
- package/docs/php/MvcBundle/View/SymfonyConventionsTemplateGuesser.md +48 -0
- package/docs/php/MvcBundle/View/TemplateGuesser.md +31 -0
- package/docs/php/ReplicatorBundle/Domain/Customer.md +0 -1
- package/docs/php/SpecificationBundle/Domain/SchemaFieldTypes.md +5 -0
- package/package.json +1 -1
- package/src/json/library/common.json +2 -1
- package/src/json/masterPageSchemaSchema.json +3 -0
- package/vendor/sebastian/diff/tests/fixtures/.editorconfig +1 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt +1 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt +0 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_a.txt +35 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_b.txt +18 -0
- package/vendor/sebastian/diff/tests/fixtures/out/.editorconfig +1 -0
- package/vendor/sebastian/diff/tests/fixtures/out/.gitignore +2 -0
- package/vendor/sebastian/diff/tests/fixtures/patch.txt +9 -0
- package/vendor/sebastian/diff/tests/fixtures/patch2.txt +21 -0
- package/vendor/sebastian/diff/tests/fixtures/serialized_diff.bin +0 -0
- package/vendor/symfony/symfony/.github/psalm/.gitignore +4 -0
- package/vendor/symfony/symfony/.github/psalm/stubs/ForwardCompatTestTrait.php +38 -0
- package/vendor/symfony/symfony/.github/psalm/stubs/SetUpTearDownTrait.php +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
|
|
2
|
+
## Version 2.48.4 (2024-05-02)
|
|
3
|
+
|
|
4
|
+
** New Features and Improvements **
|
|
5
|
+
|
|
6
|
+
- Add compatibility with Guzzle version 7
|
|
7
|
+
|
|
8
|
+
## Version 2.48.3 (2024-01-11)
|
|
9
|
+
|
|
10
|
+
** New Features and Improvements **
|
|
11
|
+
|
|
12
|
+
- Add compatibiltiy with Symfony 5.4.
|
|
13
|
+
|
|
2
14
|
## Version 2.48.2 (2023-11-09)
|
|
3
15
|
|
|
4
16
|
** Bug fixes **
|
package/composer.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "frontastic/common",
|
|
3
3
|
"license": "None",
|
|
4
|
-
"version": "2.48.
|
|
4
|
+
"version": "2.48.4",
|
|
5
5
|
"repositories": [
|
|
6
6
|
{
|
|
7
7
|
"type": "path",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"composer/package-versions-deprecated": "@stable",
|
|
27
27
|
"contentful/contentful": "^6.0|^7.0",
|
|
28
28
|
"domnikl/statsd": "^2.6",
|
|
29
|
-
"guzzlehttp/guzzle": "^6.3",
|
|
29
|
+
"guzzlehttp/guzzle": "^6.3||^7",
|
|
30
|
+
"guzzlehttp/promises": "^1.0",
|
|
30
31
|
"justinrainbow/json-schema": "@stable",
|
|
31
32
|
"frontastic/data-object": "@stable",
|
|
32
33
|
"league/oauth2-client": "^2.3",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"symfony/expression-language": "^4.4||^5.4",
|
|
41
42
|
"symfony/finder": "^4.4||^5.4",
|
|
42
43
|
"symfony/http-kernel": "^4.4||^5.4",
|
|
43
|
-
"symfony/symfony": "^4.4",
|
|
44
|
+
"symfony/symfony": "^4.4||^5.4",
|
|
44
45
|
"symfony/yaml": "^4.4||^5.4",
|
|
45
46
|
"woohoolabs/yang": "^2.3"
|
|
46
47
|
},
|