@frontastic/common 2.48.1 → 2.48.3
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 +13 -0
- package/composer.json +2 -2
- package/composer.lock +7552 -0
- package/package.json +1 -1
- 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,17 @@
|
|
|
1
1
|
|
|
2
|
+
## Version 2.48.3 (2024-01-11)
|
|
3
|
+
|
|
4
|
+
** New Features and Improvements **
|
|
5
|
+
|
|
6
|
+
- Add compatibiltiy with Symfony 5.4.
|
|
7
|
+
|
|
8
|
+
## Version 2.48.2 (2023-11-09)
|
|
9
|
+
|
|
10
|
+
** Bug fixes **
|
|
11
|
+
|
|
12
|
+
- Catch correct exception for missing template in new Twig versions
|
|
13
|
+
- Correctly inject the service container into the system controller
|
|
14
|
+
|
|
2
15
|
## Version 2.48.1 (2023-10-12)
|
|
3
16
|
|
|
4
17
|
** 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.3",
|
|
5
5
|
"repositories": [
|
|
6
6
|
{
|
|
7
7
|
"type": "path",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"symfony/expression-language": "^4.4||^5.4",
|
|
41
41
|
"symfony/finder": "^4.4||^5.4",
|
|
42
42
|
"symfony/http-kernel": "^4.4||^5.4",
|
|
43
|
-
"symfony/symfony": "^4.4",
|
|
43
|
+
"symfony/symfony": "^4.4||^5.4",
|
|
44
44
|
"symfony/yaml": "^4.4||^5.4",
|
|
45
45
|
"woohoolabs/yang": "^2.3"
|
|
46
46
|
},
|