author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
95,144
26.05.2020 09:03:28
-7,200
fd2bd1b102d69c0167ccf626e3c250a125a0d8cf
Rename method to getAllServiceNames, because it makes more sense
[ { "change_type": "MODIFY", "old_path": "src/Extension/ServicesTrait.php", "new_path": "src/Extension/ServicesTrait.php", "diff": "@@ -77,7 +77,7 @@ trait ServicesTrait\nreturn null;\n}\n- public function listServices(): Collection\n+ public function getAllServiceNames(): Collection\n{\n$container = ...
PHP
MIT License
bolt/core
Rename method to getAllServiceNames, because it makes more sense
95,144
27.05.2020 17:43:31
-7,200
854052515fc625d6b7eb74801ff0abd806acdaf8
Working on file listing screen
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/scss/modules/base/_tables.scss", "diff": "+table.table-compact {\n+ th, td {\n+ padding: 0.3rem;\n+ }\n+}\n\\ No newline at end of file\n" }, { "change_type": "MODIFY", "old_path": "assets/scss/modules/base/base.scss", "ne...
PHP
MIT License
bolt/core
Working on file listing screen
95,144
27.05.2020 21:21:04
-7,200
accc8bb50909962b701b80ebbd0a1f1e05c9fa48
Update _tables.scss
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/base/_tables.scss", "new_path": "assets/scss/modules/base/_tables.scss", "diff": "table.table-compact {\n-\n- th:first-of-type, td:first-of-type {\n+ th:first-of-type,\n+ td:first-of-type {\npadding-left: 0.8rem;\n}\n- th:last-of-type, td:l...
PHP
MIT License
bolt/core
Update _tables.scss
95,144
28.05.2020 11:15:09
-7,200
f97175af053b9d4f94af7eb96b5356c112ccab02
Adding proper ids to tables
[ { "change_type": "MODIFY", "old_path": "templates/finder/_files_cards.html.twig", "new_path": "templates/finder/_files_cards.html.twig", "diff": "-<div class=\"row\">\n+<div class=\"row\" id=\"files-cards\">\n{% for file in finder %}\n{% set extension = file.extension() %}\n" }, { "change_ty...
PHP
MIT License
bolt/core
Adding proper ids to tables
95,144
28.05.2020 11:42:35
-7,200
70e79a9492a35f094e4ba527f8fa218ef9fb2649
Lazy loading for overview pages too
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/Table/Row/index.vue", "new_path": "assets/js/app/listing/Components/Table/Row/index.vue", "diff": "<div\nv-if=\"size === 'normal' && record.extras.image\"\nclass=\"listing__row--item is-thumbnail\"\n- :style=\"`background-image...
PHP
MIT License
bolt/core
Lazy loading for overview pages too
95,144
28.05.2020 16:04:03
-7,200
292cff528847a205478ee72a30122e235ffd7a6e
Add `composer/package-versions-deprecated`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"bolt/common\": \"^2.1.0\",\n\"cocur/slugify\": \"^4.0\",\n\"composer/composer\": \"^1.10\",\n+ \"composer/package-versions-deprecated\": \"^1.8\",\n\"doctrine/doctrine-bundle\": \"^2.0\",\n\"doctrine/doct...
PHP
MIT License
bolt/core
Add `composer/package-versions-deprecated`
95,144
28.05.2020 14:24:30
-7,200
798459ab8b9a4d7c8568454d1a3a24b6bcbf19c2
Adding spinners and disabling buttons to indicate the user might have to wait a few seconds
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/File.vue", "new_path": "assets/js/app/editor/Components/File.vue", "diff": "class=\"btn dropdown-item\"\ntype=\"button\"\n:readonly=\"readonly\"\n+ data-patience=\"virtue\"\n@click=\"selectServerFile\"\n>\n<i class=\"fas fa-fw f...
PHP
MIT License
bolt/core
Adding spinners and disabling buttons to indicate the user might have to wait a few seconds
95,144
28.05.2020 17:29:07
-7,200
96ea3a1cd18a623272309bc1628d302cda3d9d4f
Allow for parsed dates like "Today" or "in 3 weeks"
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -57,6 +57,14 @@ class SelectQuery implements QueryInterface\n'status',\n];\n+ /** @var array */\n+ protected $coreDateFields = [\n+ 'createdAt',\n+ 'modifiedAt',\n+ 'published...
PHP
MIT License
bolt/core
Allow for parsed dates like "Today" or "in 3 weeks"
95,144
31.05.2020 13:19:33
-7,200
1190c62fe2ec47d1e8cfc65df93494beb294c896
Unescape Vue input fields
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Text.vue", "new_path": "assets/js/app/editor/Components/Text.vue", "diff": "<div>\n<input\n:id=\"id\"\n- v-model=\"val\"\n+ v-model=\"rawVal\"\nclass=\"form-control\"\n:class=\"getType\"\n:name=\"name\"\n" }, { "change_t...
PHP
MIT License
bolt/core
Unescape Vue input fields
95,144
31.05.2020 13:40:46
-7,200
6479b4c69c05e0a2da02da9257023363c08e53c9
Don't show Fields that were removed from the ContentType definition
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -664,14 +664,23 @@ class Content\nreturn $dateTimeUTC->setTimezone($dateTime->getTimezone());\n}\n- private function standaloneFieldsFilter()\n+ /**\n+ * Get the current regular fields,...
PHP
MIT License
bolt/core
Don't show Fields that were removed from the ContentType definition
95,144
31.05.2020 13:59:57
-7,200
da977a83eb490934f91a67095cfc3ea0553d2c9b
Ninja-edit comment about PHPstan issue
[ { "change_type": "MODIFY", "old_path": "phpstan.neon", "new_path": "phpstan.neon", "diff": "@@ -6,7 +6,7 @@ parameters:\nignoreErrors:\n# false positive: `Unreachable statement - code above always terminates.`\n- # @todo Check if this is still needed after https://github.com/phpstan/phpstan/issues/2...
PHP
MIT License
bolt/core
Ninja-edit comment about PHPstan issue
95,144
01.06.2020 10:53:48
-7,200
c4df6a66ed123b2fc11f472f672fa38321ca2381
Allow comparison for scalar fields
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -220,7 +220,7 @@ showcases:\nintegerfield:\ntype: number\nmode: integer\n- step: 0.25\n+ step: 1\nfloatfield:\ntype: number\nmode: float\n@@ -415,8 +415,7 @@ tests:\n# Pos...
PHP
MIT License
bolt/core
Allow comparison for scalar fields
95,144
06.06.2020 15:47:48
-7,200
03ddfa270de0d0766309c5f5a20af9e5e8ce3cda
Fix for windows not handling `%k` in timestamp strings properly
[ { "change_type": "MODIFY", "old_path": "templates/_macro/_macro.html.twig", "new_path": "templates/_macro/_macro.html.twig", "diff": "{% endfor %}\n{{ fieldsHtml|json_encode }}\n{% endapply %}{% endmacro %}\n+\n+\n+{% macro relative_datetime(datetime) %}{% apply spaceless %}\n+ <abbr class=\"datetim...
PHP
MIT License
bolt/core
Fix for windows not handling `%k` in timestamp strings properly
95,144
06.06.2020 16:01:26
-7,200
467228ba348e5784f741c1bb13a414c751e78ee0
Prepare release 4.0.0-rc.23
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.21\",\n+ \"version\": \"4.0.0-rc.23\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n}\n},\n\"caniuse-lite\": {\n- \"version\"...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.23
95,144
07.06.2020 16:27:26
-7,200
c29d420a9c0a421aa9c0aba4b098c9d432272999
Better check for `isSpecialPage` if `homepage: ` is ste to a contenttype (listing)
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentExtension.php", "new_path": "src/Twig/ContentExtension.php", "diff": "@@ -716,9 +716,11 @@ class ContentExtension extends AbstractExtension\ncontinue;\n}\n+ $idOrSlug = $item[1] ?? null;\n+\n// Success if we either have no id/slug for a Singlet...
PHP
MIT License
bolt/core
Better check for `isSpecialPage` if `homepage: ` is ste to a contenttype (listing)
95,144
10.06.2020 15:54:20
-7,200
182eaa5bf3dc9317a59594c85a0ffead60af78cd
Fix setting of `is_writable` when submitted Yaml syntax is incorrect
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/FileEditController.php", "new_path": "src/Controller/Backend/FileEditController.php", "diff": "@@ -84,6 +84,9 @@ class FileEditController extends TwigAwareController implements BackendZoneInter\n$contents = $request->request->get('editfi...
PHP
MIT License
bolt/core
Fix setting of `is_writable` when submitted Yaml syntax is incorrect
95,144
10.06.2020 21:10:46
-7,200
80a975e9247c97e5a6903ee9b8478838bcd27319
Prepare release 4.0.0-rc.24
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.23\",\n+ \"version\": \"4.0.0-rc.24\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n}\n},\n\"caniuse-lite\": {\n- \"version\"...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.24
95,144
10.06.2020 21:42:46
-7,200
25fa20a6f8fbd8b623393aa7f00a2f9559ba0961
Add `babdev/pagerfanta-bundle`, `squirrelphp/twig-php-syntax`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"ext-mbstring\": \"*\",\n\"ext-pdo\": \"*\",\n\"api-platform/core\": \"^2.5\",\n+ \"babdev/pagerfanta-bundle\": \"^2.4\",\n\"bolt/common\": \"^2.1.0\",\n\"cocur/slugify\": \"^4.0\",\n\"composer/composer\":...
PHP
MIT License
bolt/core
Add `babdev/pagerfanta-bundle`, `squirrelphp/twig-php-syntax`
95,144
11.06.2020 21:37:13
-7,200
c133712cd469b9f73f72aed4475fc5c5e8bd3e5f
Update `getContentTypeName()`, add `getContentTypeSingularName()`
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -114,7 +114,6 @@ search_results_records: 10\n# for each content type.\nrecords_per_page: 8\n-\n# Default settings for thumbnails.\n#\n# quality: Quality should be between 0 (horrible,...
PHP
MIT License
bolt/core
Update `getContentTypeName()`, add `getContentTypeSingularName()`
95,144
13.06.2020 12:57:06
-7,200
e8d5a429e65bd94d66425d981d0c061bc3735b49
Fixing some deprecations
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"composer/composer\": \"^1.10\",\n\"composer/package-versions-deprecated\": \"^1.8\",\n\"doctrine/doctrine-bundle\": \"^2.0\",\n- \"doctrine/doctrine-cache-bundle\": \"^1.4\",\n\"doctrine/doctrine-fixtures...
PHP
MIT License
bolt/core
Fixing some deprecations
95,144
14.06.2020 12:15:36
-7,200
97f632f3eb9e9e8ff95790c7155d33856fbac90b
Use new Symfony Error Controller, instead of Twig's old one.
[ { "change_type": "MODIFY", "old_path": "config/packages/framework.yaml", "new_path": "config/packages/framework.yaml", "diff": "@@ -29,3 +29,6 @@ framework:\nvalidation:\nemail_validation_mode: 'html5'\nenable_annotations: true\n+\n+ # Override Symfony's error controller, so we can show custom 404's...
PHP
MIT License
bolt/core
Use new Symfony Error Controller, instead of Twig's old one.
95,144
15.06.2020 09:16:27
-7,200
be49ba8ca6dc7027af0d1e98f598faca65aba065
Fixing some more deprecations
[ { "change_type": "DELETE", "old_path": "config/routes/dev/twig.yaml", "new_path": null, "diff": "-_errors:\n- resource: '@TwigBundle/Resources/config/routing/errors.xml'\n- prefix: /_error\n" }, { "change_type": "MODIFY", "old_path": "config/services.yaml", "new_path": "config/servic...
PHP
MIT License
bolt/core
Fixing some more deprecations
95,144
15.06.2020 10:33:26
-7,200
0399477540235a0cbc340a2405c0caf649847f78
Stop PhpStan from complaining
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"peterkahl/country-code-to-emoji-flag\": \"^1.2\",\n\"php-translation/symfony-bundle\": \"^0.12\",\n\"phpdocumentor/reflection-docblock\": \"^4.3\",\n+ \"psr/event-dispatcher\": \"^1.0\",\n\"psr/simple-cac...
PHP
MIT License
bolt/core
Stop PhpStan from complaining
95,144
15.06.2020 12:14:45
-7,200
a97b52da7b5db80e94d2e0a27e39a743a9d0841b
Fix capitalisation in groups
[ { "change_type": "MODIFY", "old_path": "templates/content/_tabs.html.twig", "new_path": "templates/content/_tabs.html.twig", "diff": "+{% apply spaceless %}\n<nav>\n<ul class=\"nav editor__tabbar\" role=\"tablist\">\n{% for group in groups %}\n<a class=\"nav-link {% if loop.first %} active{% endif %...
PHP
MIT License
bolt/core
Fix capitalisation in groups
95,144
15.06.2020 12:38:18
-7,200
5f063d10e28707a630913b62458c74f8fd936bdd
Two more deprecations fixed!
[ { "change_type": "DELETE", "old_path": "src/Event/Subscriber/CheckRequirementsSubscriber.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Event\\Subscriber;\n-\n-use Doctrine\\DBAL\\Exception\\DriverException;\n-use Doctrine\\ORM\\EntityManagerInterface;\n-u...
PHP
MIT License
bolt/core
Two more deprecations fixed!
95,144
15.06.2020 16:00:10
-7,200
fa4a4108585813cdc6860126bec3a22ff48db8f9
Update to add `title_case`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"ext-pdo\": \"*\",\n\"api-platform/core\": \"^2.5\",\n\"babdev/pagerfanta-bundle\": \"^2.4\",\n- \"bolt/common\": \"^2.1.0\",\n+ \"bolt/common\": \"^2.1.6\",\n\"cocur/slugify\": \"^4.0\",\n\"composer/compo...
PHP
MIT License
bolt/core
Update to add `title_case`
95,144
16.06.2020 12:42:41
-7,200
add93f4849f7942a4dc1c05eace0c95ce3e321a7
Make Collection Fields iterable
[ { "change_type": "MODIFY", "old_path": "config/services.yaml", "new_path": "config/services.yaml", "diff": "@@ -105,3 +105,5 @@ services:\nTwig\\Extension\\StringLoaderExtension: ~\nSymfony\\Component\\ErrorHandler\\ErrorRenderer\\ErrorRendererInterface: '@error_handler.error_renderer.html'\n+\n+ Sq...
PHP
MIT License
bolt/core
Make Collection Fields iterable
95,144
16.06.2020 12:46:13
-7,200
27ac5b40afc84d12374fd88516faea1fd6193c96
Make Collection Field properly Iterable
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/CollectionField.php", "new_path": "src/Entity/Field/CollectionField.php", "diff": "@@ -100,5 +100,4 @@ class CollectionField extends Field implements FieldInterface, FieldParentInterf\nreturn $result;\n}\n-\n}\n" }, { "change_type": "M...
PHP
MIT License
bolt/core
Make Collection Field properly Iterable
95,144
16.06.2020 13:33:09
-7,200
b178e92c9746624e723d37bcbf157495ccd26e90
Cleaning up Iterator and Trait
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/CollectionField.php", "new_path": "src/Entity/Field/CollectionField.php", "diff": "@@ -21,7 +21,6 @@ class CollectionField extends Field implements FieldInterface, FieldParentInterf\n{\nuse FieldParentTrait;\nuse ListFieldTrait;\n- use Collect...
PHP
MIT License
bolt/core
Cleaning up Iterator and Trait
95,144
16.06.2020 15:19:34
-7,200
be73b2296a50669617ad882b811c4ba245a1beb8
Don't break on missing Collection Fields
[ { "change_type": "MODIFY", "old_path": "src/Event/Listener/FieldFillListener.php", "new_path": "src/Event/Listener/FieldFillListener.php", "diff": "@@ -73,7 +73,7 @@ class FieldFillListener\nprivate function intersectFieldsAndDefinition(array $fields, FieldType $definition): array\n{\nreturn collect...
PHP
MIT License
bolt/core
Don't break on missing Collection Fields
95,144
16.06.2020 16:59:55
-7,200
337acc06c7bea1c6cc07077885762a6573dc54e2
Better check for maximum filesize
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/Async/UploadController.php", "new_path": "src/Controller/Backend/Async/UploadController.php", "diff": "@@ -76,6 +76,7 @@ class UploadController implements AsyncZoneInterface\n$acceptedFileTypes = array_merge($this->config->getMediaTypes(...
PHP
MIT License
bolt/core
Better check for maximum filesize
95,144
17.06.2020 07:59:04
-7,200
b81d1ddd35580f7fbcdd0de9ab4f419578a615f1
Fix: Don't show spinners on invalid form submissions
[ { "change_type": "MODIFY", "old_path": "assets/js/app/patience-is-a-virtue.js", "new_path": "assets/js/app/patience-is-a-virtue.js", "diff": "import $ from 'jquery';\n-$('*[data-patience]').on('click', function() {\n+$('a[data-patience], button[data-patience]').on('click', function() {\nconst thisEl...
PHP
MIT License
bolt/core
Fix: Don't show spinners on invalid form submissions
95,144
17.06.2020 10:09:48
-7,200
c32b6999c58af52e1c9de4e8fad8931d7356ad9d
Add Global search to backend
[ { "change_type": "MODIFY", "old_path": "assets/js/app/toolbar/Components/Toolbar.vue", "new_path": "assets/js/app/toolbar/Components/Toolbar.vue", "diff": "</li>\n<li>\n<a href=\"https://docs.bolt.cm/\" target=\"_blank\">\n- <i class=\"fas fa-globe-americas fa-fw\"></i>\n+ <i class=\"fas fa-book fa-...
PHP
MIT License
bolt/core
Add Global search to backend
95,144
17.06.2020 10:14:12
-7,200
5441f7243e2abac25a3e1088f4413fe99104ff2f
Cleanup, CS fixes
[ { "change_type": "MODIFY", "old_path": "assets/js/app/toolbar/Components/Toolbar.vue", "new_path": "assets/js/app/toolbar/Components/Toolbar.vue", "diff": "</div>\n</div>\n- <form :action=\"backendPrefix\" class=\"toolbar-item toolbar-item__filter input-group\">\n- <input type=\"text\" class=\"form-...
PHP
MIT License
bolt/core
Cleanup, CS fixes
95,144
18.06.2020 13:50:20
-7,200
4031de70fc9ffd0e33313f58c4bd5312ef049b1f
Adding tests for Global Search
[ { "change_type": "MODIFY", "old_path": "assets/js/app/toolbar/Components/Toolbar.vue", "new_path": "assets/js/app/toolbar/Components/Toolbar.vue", "diff": "class=\"form-control\"\n:placeholder=\"labels['listing.placeholder_search']\"\nname=\"filter\"\n+ id=\"global-search\"\n:value=\"filterValue\"\n...
PHP
MIT License
bolt/core
Adding tests for Global Search
95,144
18.06.2020 13:55:46
-7,200
6514e93b3be6cb5293c33fdb37dfa900c73fe289
Prepare release 4.0.0-RC.25
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.24\",\n+ \"version\": \"4.0.0-rc.25\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n}\n},\n\"caniuse-lite\": {\n- \"version\"...
PHP
MIT License
bolt/core
Prepare release 4.0.0-RC.25
95,144
19.06.2020 14:26:21
-7,200
dedfa43071b8b3b31c7578c79e46b9d88b545f96
Sort Bundles.php alphabetically
[ { "change_type": "MODIFY", "old_path": "config/bundles.php", "new_path": "config/bundles.php", "diff": "return [\nApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\ApiPlatformBundle::class => ['all' => true],\n+ BabDev\\PagerfantaBundle\\BabDevPagerfantaBundle::class => ['all' => true],\nDAMA\\DoctrineTes...
PHP
MIT License
bolt/core
Sort Bundles.php alphabetically
95,144
21.06.2020 11:57:08
-7,200
8e20049e1765fde0fab2202b43603a47415672ae
Don't "warm up" cache on `composer update`, to save time.
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"php bin/console bolt:info\"\n],\n\"auto-scripts\": {\n- \"cache:clear\": \"symfony-cmd\",\n+ \"cache:clear --no-warmup\": \"symfony-cmd\",\n\"assets:install --symlink --relative %PUBLIC_DIR%\": \"symfony-...
PHP
MIT License
bolt/core
Don't "warm up" cache on `composer update`, to save time.
95,144
21.06.2020 12:41:26
-7,200
71503206f64c176964e132459ac6440b3b35ae3a
Ensure $boltConfig is set for Controllers in extensions
[ { "change_type": "MODIFY", "old_path": "src/Extension/ExtensionController.php", "new_path": "src/Extension/ExtensionController.php", "diff": "@@ -4,10 +4,16 @@ declare(strict_types=1);\nnamespace Bolt\\Extension;\n+use Bolt\\Configuration\\Config;\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\A...
PHP
MIT License
bolt/core
Ensure $boltConfig is set for Controllers in extensions
95,144
21.06.2020 13:17:30
-7,200
6f6bca6196923bfa8103ccdedf4d12e175661398
Ensure inputs are strings
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ProfileController.php", "new_path": "src/Controller/Backend/ProfileController.php", "diff": "@@ -66,11 +66,11 @@ class ProfileController extends TwigAwareController implements BackendZoneInterf\n$displayName = $user->getDisplayName();\n$...
PHP
MIT License
bolt/core
Ensure inputs are strings
95,134
23.06.2020 10:24:43
-3,600
50708befb2298c4d7ad043147ca58687ce9b0193
fixes issue searching selectfields with multiple entries.
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -118,7 +118,8 @@ class SelectQuery implements QueryInterface\n*/\npublic function setParameters(array $params): void\n{\n- $this->params = array_filter($params);\n+ // array_m...
PHP
MIT License
bolt/core
fixes issue #1268 searching selectfields with multiple entries.
95,144
23.06.2020 13:16:23
-7,200
432c9b5427fa3ee6fd23aec43a0ce809079541b0
Put Bundles in alphabetical order
[ { "change_type": "MODIFY", "old_path": "config/bundles.php", "new_path": "config/bundles.php", "diff": "@@ -7,6 +7,7 @@ return [\nDoctrine\\Bundle\\DoctrineBundle\\DoctrineBundle::class => ['all' => true],\nDoctrine\\Bundle\\FixturesBundle\\DoctrineFixturesBundle::class => ['dev' => true, 'test' => ...
PHP
MIT License
bolt/core
Put Bundles in alphabetical order
95,144
23.06.2020 15:29:13
-7,200
67fdc9e9a7e2e1970006363f0ac73a6360ebe9d6
Ensure `$this->fields` is initialised (For Fields that haven't been accessed before)
[ { "change_type": "MODIFY", "old_path": "src/Entity/ListFieldTrait.php", "new_path": "src/Entity/ListFieldTrait.php", "diff": "@@ -42,6 +42,9 @@ trait ListFieldTrait\npublic function rewind(): void\n{\n+ // Ensure $this->fields is initialised\n+ $this->fields = $this->getValue();\n+\n$this->iteratorC...
PHP
MIT License
bolt/core
Ensure `$this->fields` is initialised (For Fields that haven't been accessed before)
95,144
23.06.2020 17:11:18
-7,200
bbf1c62ded108da3a9acd22e2a30cc1b78cdd731
Rollback to previous iteration
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -338,12 +338,10 @@ class SelectQuery implements QueryInterface\n$contentAlias = 'content_' . $index;\n$fieldsAlias = 'fields_' . $index;\n$translationsAlias = 'translations_' ...
PHP
MIT License
bolt/core
Rollback to previous iteration
95,144
24.06.2020 07:17:04
-7,200
202bd79edb8aea27133b05f05b286ec7148cae37
After adding `symfony/proxy-manager-bridge`, table prefix went missing
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"doctrine/doctrine-migrations-bundle\": \"^2.1\",\n\"friends-of-behat/mink\": \"^1.8\",\n\"friends-of-behat/mink-browserkit-driver\": \"^1.4\",\n- \"friends-of-behat/symfony-extension\": \"^2.1\",\n\"lakio...
PHP
MIT License
bolt/core
After adding `symfony/proxy-manager-bridge`, table prefix went missing
95,144
24.06.2020 13:49:51
-7,200
74119306cea32d3ef819e2c42b2039cd4050daf4
Test updates for SF 5
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -137,12 +137,12 @@ thumbnails:\n# user that PHP (and/or your webserver) is running as, and the user who owns the\n# actual folders/files.\n#\n-# - If they are the same user, use `0755...
PHP
MIT License
bolt/core
Test updates for SF 5
95,144
24.06.2020 16:43:26
-7,200
36ae0f4b151c53a3b64139a03c62b5642f7e5fbc
Allow "Homepage" to be in viewless ContentType
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -38,7 +38,7 @@ homepage:\ntype: slug\nuses: title\ngroup: meta\n- viewless: false\n+ viewless: true\ntaxonomy: [ categories, tags, foobars ]\nlocales: ['en', 'nl', 'ja', '...
PHP
MIT License
bolt/core
Allow "Homepage" to be in viewless ContentType
95,144
24.06.2020 17:33:40
-7,200
711bc3c52c92aa4c52131b052b5edddcac164f1d
Update src/Command/SetupCommand.php
[ { "change_type": "MODIFY", "old_path": "src/Command/SetupCommand.php", "new_path": "src/Command/SetupCommand.php", "diff": "@@ -64,7 +64,7 @@ class SetupCommand extends Command\n$command = $this->getApplication()->find('bolt:add-user');\n$commandInput = new ArrayInput(['--admin' => true]);\n$exitCod...
PHP
MIT License
bolt/core
Update src/Command/SetupCommand.php
95,144
28.06.2020 11:52:14
-7,200
a6d73bbecc8a6ff29b6c8932df5d704139d238ca
Singletons return single Content result with `{% setcontent %}`
[ { "change_type": "MODIFY", "old_path": "src/Storage/Handler/LatestQueryHandler.php", "new_path": "src/Storage/Handler/LatestQueryHandler.php", "diff": "@@ -5,6 +5,7 @@ declare(strict_types=1);\nnamespace Bolt\\Storage\\Handler;\nuse Bolt\\Storage\\ContentQueryParser;\n+use Bolt\\Storage\\SelectQuery...
PHP
MIT License
bolt/core
Singletons return single Content result with `{% setcontent %}`
95,144
28.06.2020 14:43:12
-7,200
9fbc85cc669ffa95ae1f5ad6f251c66f2eb2fb70
Make sure it still works in backend.
[ { "change_type": "MODIFY", "old_path": "src/Controller/TwigAwareController.php", "new_path": "src/Controller/TwigAwareController.php", "diff": "@@ -139,6 +139,7 @@ class TwigAwareController extends AbstractController\n{\n$params = [\n'status' => '!unknown',\n+ 'returnsingle' => false,\n];\nif ($this...
PHP
MIT License
bolt/core
Make sure it still works in backend.
95,144
29.06.2020 19:48:06
-7,200
cfa2b181f20302c32c389d54c52eeed3295d1be5
Re-set `setSingleFetchMode` to ensure returning a pager, if needed
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -128,7 +128,7 @@ class ContentFixtures extends BaseFixture implements DependentFixtureInterface,\n}\n$refKey = sprintf('content_%s_%s', $contentType['slug'],...
PHP
MIT License
bolt/core
Re-set `setSingleFetchMode` to ensure returning a pager, if needed
95,144
29.06.2020 20:16:58
-7,200
ac057a2cf55fc6177e5b916e201fc7ddd9483c8c
Prepare release 4.0.0-rc.27
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.25\",\n+ \"version\": \"4.0.0-rc.27\",\n\"homepage\": \"https://boltcms.io\",\n\"author\": \"Bob den Otter <bob@twokings.nl> (https://boltcms.io)\",\n\"licens...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.27
95,144
29.06.2020 21:24:18
-7,200
b58b1d12def9d3dc873697e786136d277d2bcfdb
Allow both Symfony 4.4 and 5.1 for now
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"sensiolabs/security-checker\": \"^6.0\",\n\"siriusphp/upload\": \"^3.0.1\",\n\"squirrelphp/twig-php-syntax\": \"^1.5\",\n- \"symfony/asset\": \"^5.1\",\n- \"symfony/console\": \"^5.1\",\n- \"symfony/debug...
PHP
MIT License
bolt/core
Allow both Symfony 4.4 and 5.1 for now
95,134
30.06.2020 11:02:23
-3,600
25d7a29d006fb7b25912139ec4cc780bc008093b
change to parameter alias
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -356,7 +356,7 @@ class SelectQuery implements QueryInterface\n->innerJoin($fieldsAlias . '.translations', $translationsAlias)\n->andWhere($where)\n// add orWhere to allow sear...
PHP
MIT License
bolt/core
change to parameter alias
95,134
30.06.2020 15:36:12
-3,600
71fa76cfe7c4e82141f2ebb3815dfbac6e7fc340
revert alias in taxonomy expression
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -373,7 +373,7 @@ class SelectQuery implements QueryInterface\n$innerQuery->join($contentAlias.'.taxonomies', 'taxonomies_' . $key);\n$this->qb->setParameter($key.'_1', $value)...
PHP
MIT License
bolt/core
revert alias in taxonomy expression
95,144
01.07.2020 16:41:27
-7,200
663224080eb8d4387c0574b9be98fad2b9a3a743
Display Symfony version in "About" and `bolt:info` screens
[ { "change_type": "MODIFY", "old_path": "src/Command/InfoCommand.php", "new_path": "src/Command/InfoCommand.php", "diff": "@@ -63,6 +63,7 @@ HELP\nsprintf('Install type: <info>%s</info>', Version::installType()),\nsprintf('Database: <info>%s %s</info>%s%s <info>(%s)</info>', $platform['driver_name'],...
PHP
MIT License
bolt/core
Display Symfony version in "About" and `bolt:info` screens
95,144
05.07.2020 11:48:43
-7,200
a5a72540495f952a1ebea41f4a5780496a31f4de
Allow "focus" parameter for excerpts of plain strings
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentExtension.php", "new_path": "src/Twig/ContentExtension.php", "diff": "@@ -237,7 +237,7 @@ class ContentExtension extends AbstractExtension\npublic function getExcerpt($content, int $length = 280, bool $includeTitle = false, $focus = null): stri...
PHP
MIT License
bolt/core
Allow "focus" parameter for excerpts of plain strings
95,144
06.07.2020 15:08:30
-7,200
e019ae4a51fdb26a6b75ad6636370a1e8464beee
Make the user-friendly notifications a bit more robust
[ { "change_type": "MODIFY", "old_path": "src/Storage/Directive/OrderDirective.php", "new_path": "src/Storage/Directive/OrderDirective.php", "diff": "@@ -81,7 +81,7 @@ class OrderDirective\n} else {\nif (! $this->isActualField($query, $order)) {\n$this->notifications->warning('Incorrect OrderBy clause...
PHP
MIT License
bolt/core
Make the user-friendly notifications a bit more robust
95,134
08.07.2020 19:32:37
-3,600
de6c66027eebff5506af5a6f9d3be52b22bdd613
Update SelectQuery.php Remove unnecessary foreach{} loop on taxonomies which caused memory exhaustion.
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -394,16 +394,14 @@ class SelectQuery implements QueryInterface\n$innerQuery->andWhere($fieldsAlias . '.name = :' . $keyParam);\n$this->qb->setParameter($keyParam, $key);\n} el...
PHP
MIT License
bolt/core
Update SelectQuery.php Remove unnecessary foreach{} loop on taxonomies which caused memory exhaustion.
95,144
10.07.2020 13:14:09
-7,200
95b4bf267504ebea7b58c57cd915e2177ba293a5
Allow optional space in QueryParameterParser between operand and keyword
[ { "change_type": "MODIFY", "old_path": "src/Storage/QueryParameterParser.php", "new_path": "src/Storage/QueryParameterParser.php", "diff": "@@ -46,19 +46,19 @@ class QueryParameterParser\n$word = \"[\\p{L}\\p{N}_]+\";\n// @codingStandardsIgnoreStart\n- $this->addValueMatcher(\"<(${word})\", [\n+ $th...
PHP
MIT License
bolt/core
Allow optional space in QueryParameterParser between operand and keyword
95,144
11.07.2020 12:27:43
-7,200
8c5f2bbb1543fb31fb091629f7d6f0a899707f94
Prepare release 4.0.0-rc.29
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.28\",\n+ \"version\": \"4.0.0-rc.29\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n\"integrity\": \"sha512-DCRfO/4nQ+89p/RK4...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.29
95,144
16.07.2020 17:50:03
-7,200
e9e6db85802404bbdb27cd0a833b425e2bdc31a6
[WIP] Add support for "403 Forbidden" pages
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/base/_status.scss", "new_path": "assets/scss/modules/base/_status.scss", "diff": ".badge-homepage,\n.badge-404,\n+.badge-403,\n.badge-maintenance {\nfont-weight: normal;\nvertical-align: middle;\nbackground: $secondary;\n}\n-.badge-404 {\n+...
PHP
MIT License
bolt/core
[WIP] Add support for "403 Forbidden" pages
95,144
17.07.2020 08:19:56
-7,200
160a708e6cb4e7c6750f5dfb8e7c1dbc40777f98
Update phpstan.neon, to 'recognize' Twig functions in global scope
[ { "change_type": "MODIFY", "old_path": "phpstan.neon", "new_path": "phpstan.neon", "diff": "@@ -4,6 +4,10 @@ parameters:\nsymfony:\ncontainer_xml_path: '%rootDir%/../../../var/cache/dev/Bolt_KernelDevDebugContainer.xml'\n+ scanDirectories:\n+ # In order to 'recognize' Twig functions in global scope\...
PHP
MIT License
bolt/core
Update phpstan.neon, to 'recognize' Twig functions in global scope
95,144
19.07.2020 13:29:20
-7,200
a2ba1c162ab836aecb4d835f063918faad6be1ad
Saving an edited file should keep input as-is
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/FileEditController.php", "new_path": "src/Controller/Backend/FileEditController.php", "diff": "@@ -80,7 +80,7 @@ class FileEditController extends TwigAwareController implements BackendZoneInter\n$file = $this->getFromRequest('file');\n$l...
PHP
MIT License
bolt/core
Saving an edited file should keep input as-is
95,144
19.07.2020 14:01:44
-7,200
9b7d1f8a7f3cc07296ac9c6067914aca3966b2c2
Prepare release 4.0.0-rc.30
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.29\",\n+ \"version\": \"4.0.0-rc.30\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n}\n},\n\"@babel/core\": {\n- \"version\":...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.30
95,144
20.07.2020 10:20:58
-7,200
e74cbcd249a625283122744e29dc8dffea8436ab
We were a bit overzealous in removing the compilerpass. We _do_ need `packages/bolt.yaml`.
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Extension/ExtensionCompilerPass.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Extension;\n+\n+use Bolt\\Common\\Str;\n+use Composer\\Package\\PackageInterface;\n+use ComposerPackages\\Types;\n+use Symfony\\Componen...
PHP
MIT License
bolt/core
We were a bit overzealous in removing the compilerpass. We _do_ need `packages/bolt.yaml`.
95,144
20.07.2020 12:01:16
-7,200
80a81178f3f66f6ca4055c062bfee3b6694788ad
Minor changes, revert how services_bolt.yaml is handled.
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"behat/mink-selenium2-driver\": \"^1.4\",\n\"behatch/contexts\": \"^3.2\",\n\"bobdenotter/configuration-notices\": \"^1.0\",\n- \"bobdenotter/weatherwidget\": \"^1.0\",\n+ \"bobdenotter/weatherwidget\": \"...
PHP
MIT License
bolt/core
Minor changes, revert how services_bolt.yaml is handled.
95,144
21.07.2020 09:57:11
-7,200
7ac77e4678042c91dc11cd6b502fc6da3f206325
Fix Errorcontroller adding Exception when it shouldn't.
[ { "change_type": "MODIFY", "old_path": "src/Controller/ErrorController.php", "new_path": "src/Controller/ErrorController.php", "diff": "@@ -48,7 +48,11 @@ class ErrorController extends SymfonyErrorController\n$code = Response::HTTP_INTERNAL_SERVER_ERROR;\n}\n+ try {\n$twig->addGlobal('exception', $e...
PHP
MIT License
bolt/core
Fix Errorcontroller adding Exception when it shouldn't.
95,144
22.07.2020 15:55:38
-7,200
66338cdb0930e9b9acfd5ca609d3a3484192757a
Prepare release 4.0.0-rc.32
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/admin/_toolbar.scss", "new_path": "assets/scss/modules/admin/_toolbar.scss", "diff": "&__filter {\nmargin-left: auto;\nmax-width: 400px;\n+ margin-right: 1rem;\n}\n&__site {\n" }, { "change_type": "MODIFY", "old_path": "package-...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.32
95,144
22.07.2020 18:59:43
-7,200
75acaedbfd90280195d33edbf0123e3302396b9e
Pass on Query parameters to subrequest from Homepage
[ { "change_type": "MODIFY", "old_path": "src/Controller/Frontend/HomepageController.php", "new_path": "src/Controller/Frontend/HomepageController.php", "diff": "@@ -22,8 +22,8 @@ class HomepageController extends TwigAwareController implements FrontendZoneInte\npublic function homepage(ContentReposito...
PHP
MIT License
bolt/core
Pass on Query parameters to subrequest from Homepage
95,144
22.07.2020 19:01:46
-7,200
263136951211907fccfd858e4143f491fc6a4511
Update htaccess, according to SF 5 defaults
[ { "change_type": "MODIFY", "old_path": "public/.htaccess", "new_path": "public/.htaccess", "diff": "@@ -9,7 +9,7 @@ DirectoryIndex index.php\n# feature in your server configuration. Uncomment the following line if you\n# install assets as symlinks or if you experience problems related to symlinks\n#...
PHP
MIT License
bolt/core
Update htaccess, according to SF 5 defaults
95,144
23.07.2020 12:30:27
-7,200
ff9f9e26476e0b2ee0152025def84b31f83fbc98
Allow for custom `500 Internal Server Error` pages.
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "-# Note: Database setup is best done in ENV variables. See the file `.env`\n-# in the project root.\n+# Note: Database setup is done in ENV variables. See `.env` in the project root.\n# ...
PHP
MIT License
bolt/core
Allow for custom `500 Internal Server Error` pages.
95,144
23.07.2020 14:41:24
-7,200
cee4df87883bf89441a776cce104b986f39adacf
Make Sanitiser obey allowed tags and attributes from `config.yaml`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"drupol/composer-packages\": \"^1.1\",\n\"embed/embed\": \"^3.4\",\n\"erusev/parsedown\": \"^1.7\",\n- \"ezyang/htmlpurifier\": \"^4.12\",\n\"fzaninotto/faker\": \"^1.9\",\n\"knplabs/doctrine-behaviors\": ...
PHP
MIT License
bolt/core
Make Sanitiser obey allowed tags and attributes from `config.yaml`
95,144
24.07.2020 11:44:12
-7,200
eefe5da4243b545fa492a14aab304371edd39d0e
Allow for extensions to add new FieldTypes
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Content/FieldType.php", "new_path": "src/Configuration/Content/FieldType.php", "diff": "@@ -62,6 +62,11 @@ class FieldType extends Collection\n$definition = $contentType;\nforeach ($parents as $parent) {\n+ // @todo Fields that are added by a...
PHP
MIT License
bolt/core
Allow for extensions to add new FieldTypes
95,144
29.07.2020 08:04:24
-7,200
c56c88a587f3441abc800d9a51df59ac62ffec67
Allow extensions to have an `install` method, which is called on installation (to install assets, for example)
[ { "change_type": "MODIFY", "old_path": "src/Command/ExtensionsConfigureCommand.php", "new_path": "src/Command/ExtensionsConfigureCommand.php", "diff": "@@ -48,17 +48,19 @@ class ExtensionsConfigureCommand extends Command\n$this->copyExtensionConfig($extensions);\n}\n+ $this->runExtensionInstall($ext...
PHP
MIT License
bolt/core
Allow extensions to have an `install` method, which is called on installation (to install assets, for example)
95,144
29.07.2020 08:06:34
-7,200
1b1da0cc78e230ffc89676cf63ab3be39cb774e3
Make `bolt_async_embed` route consistent with others.
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/Async/EmbedController.php", "new_path": "src/Controller/Backend/Async/EmbedController.php", "diff": "@@ -33,7 +33,7 @@ class EmbedController implements AsyncZoneInterface\n}\n/**\n- * @Route(\"/embed\", name=\"bolt_embed\", methods={\"PO...
PHP
MIT License
bolt/core
Make `bolt_async_embed` route consistent with others.
95,144
31.07.2020 16:31:24
-7,200
ab560199b1c8d009dea5956c11fa972a2fad2eb5
Make `getFieldClassname` public so extensions can check if a Field exists
[ { "change_type": "MODIFY", "old_path": "src/Repository/FieldRepository.php", "new_path": "src/Repository/FieldRepository.php", "diff": "@@ -105,7 +105,7 @@ class FieldRepository extends ServiceEntityRepository\n->getResult();\n}\n- private static function getFieldClassname(string $type): ?string\n+ ...
PHP
MIT License
bolt/core
Make `getFieldClassname` public so extensions can check if a Field exists
95,144
01.08.2020 11:47:48
-7,200
514dcacf10c3662856f3a366dbeb29bcfc450811
Don't output common Fields twice (in "block output helper")
[ { "change_type": "MODIFY", "old_path": "src/Repository/FieldRepository.php", "new_path": "src/Repository/FieldRepository.php", "diff": "@@ -66,9 +66,9 @@ class FieldRepository extends ServiceEntityRepository\npublic static function factory(Collection $definition, string $name = '', string $label = '...
PHP
MIT License
bolt/core
Don't output common Fields twice (in "block output helper")
95,144
01.08.2020 15:58:32
-7,200
dd39a53f1b0697e09375a69ad492c5ce23f0b9ce
Update _menu.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/helpers/_menu.html.twig", "new_path": "templates/helpers/_menu.html.twig", "diff": "<a href='{{ item.link }}' {% if item.title is defined %}title='{{ item.title|escape }}'{% endif %}\nclass='{{ class }} {% if item.current %}current {% endif %}{% if i...
PHP
MIT License
bolt/core
Update _menu.html.twig
95,168
04.08.2020 09:38:51
-7,200
fd02763c6eb95044e4dd06526f1e148833e1fac5
Move concatenated 'website' string to translation file
[ { "change_type": "MODIFY", "old_path": "templates/_base/layout.html.twig", "new_path": "templates/_base/layout.html.twig", "diff": "{# Setting the labels and their localisations that are used in the sidebar-menu. #}\n{% set labels = {\n'about.bolt_documentation': 'about.bolt_documentation'|trans,\n-...
PHP
MIT License
bolt/core
Move concatenated 'website' string to translation file
95,168
04.08.2020 10:09:44
-7,200
2f8019ae36d9b0cdd270fec51742227506af419d
Run make csfix
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -93,6 +93,7 @@ class Field implements FieldInterface, TranslatableInterface\n// If value is field, return getTwigValue so that {{ value }}\n// is parsed as html, rather than __toString() wh...
PHP
MIT License
bolt/core
Run make csfix
95,144
05.08.2020 11:09:28
-7,200
78c8ae7b57d64f4c6c541cebca922268cb80e436
Fix missing files from `.gitignore`
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -3,7 +3,11 @@ composer.phar\n### Built Assets and uploads ###\n/public/assets/\n/public/files/*\n+!/public/files/.gitkeep\n+!/public/files/index.html\n/public/thumbs/*\n+!/public/thumbs/.gitkeep\n+!/public/thu...
PHP
MIT License
bolt/core
Fix missing files from `.gitignore`
95,144
09.08.2020 13:27:51
-7,200
53aea714c0b6e8a6e92628b602bbe22b653327e0
Prepare release 4.0.0-rc.34
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.32\",\n+ \"version\": \"4.0.0-rc.34\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n}\n},\n\"@babel/core\": {\n- \"version\":...
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.34
95,144
10.08.2020 14:48:03
-7,200
6ac16fef77b85b80163dae2acec7b020e211312d
Allow Fields added in extensions to show up in Sets and Collections
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/set.html.twig", "new_path": "templates/_partials/fields/set.html.twig", "diff": "{% block field %}\n{% for setChild in field.valueForEditor %}\n+ {% set includeLookup = [\n+ '@bolt/_partials/fields/' ~ setChild.type ~ '.html.twig',\n...
PHP
MIT License
bolt/core
Allow Fields added in extensions to show up in Sets and Collections
95,144
10.08.2020 15:50:11
-7,200
3d68560f0a7cad04397e303328bf5dc5fae5fe80
Update _base.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/_base.html.twig", "new_path": "templates/_partials/fields/_base.html.twig", "diff": ">\n{{ prefix|raw }}\n+\n+{% if variant == 'inline' %}<div class=\"row\"><div class=\"col-3\">{% endif %}\n+\n{% block label %}\n{% include '@bolt/_p...
PHP
MIT License
bolt/core
Update _base.html.twig
95,168
11.08.2020 22:46:14
-7,200
f2a05d02081af0e494d8a6924f1f5cc5b4a588c4
Add Spanish translations for /bolt/edit-file
[ { "change_type": "MODIFY", "old_path": "translations/messages.es.xlf", "new_path": "translations/messages.es.xlf", "diff": "<target>Navegador / Sistema Operativo</target>\n</segment>\n</unit>\n+ <unit id=\"FSroufa\" name=\"caption.path\">\n+ <segment>\n+ <source>caption.path</source>\n+ <target>Ruta...
PHP
MIT License
bolt/core
Add Spanish translations for /bolt/edit-file
95,144
12.08.2020 15:05:48
-7,200
a19e2ca2be06fbf599b56f535ba922346f425512
Don't let Vue parse Twig tags when editing content
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -144,6 +144,7 @@ class ContentEditController extends TwigAwareController implements BackendZoneIn\n$event = new ContentEvent($content...
PHP
MIT License
bolt/core
Don't let Vue parse Twig tags when editing content
95,144
12.08.2020 15:07:48
-7,200
061efd9c975328d2200db383646d4ecf9b485541
Output Fields correctly, when using the Fields Block
[ { "change_type": "MODIFY", "old_path": "src/Twig/FieldExtension.php", "new_path": "src/Twig/FieldExtension.php", "diff": "@@ -78,7 +78,7 @@ class FieldExtension extends AbstractExtension\npublic function getType(Field $field): string\n{\n- return $field->getDefinition()->get('type');\n+ return $fiel...
PHP
MIT License
bolt/core
Output Fields correctly, when using the Fields Block
95,144
12.08.2020 19:50:30
-7,200
5e6bce3fa8aa007134688c974a415948e14161ad
Cleanup for "Should Field be rendered as Twig?"
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -235,8 +235,8 @@ class Field implements FieldInterface, TranslatableInterface\n$value = $this->getContent()->sanitise($value);\n}\n- if (is_string($value) && $this->getDefinition()->get('al...
PHP
MIT License
bolt/core
Cleanup for "Should Field be rendered as Twig?"
95,144
14.08.2020 12:41:49
-7,200
fa8e27c041a69ed6e66c8438b7eea63c99cfd3b7
No longer lock ECS, make it work as intended again
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"se/selenium-server-standalone\": \"^3.141\",\n\"symfony/browser-kit\": \"^4.4 | ^5.1\",\n\"symfony/css-selector\": \"^4.4 | ^5.1\",\n- \"symplify/easy-coding-standard\": \"8.2.1\",\n+ \"symplify/easy-codi...
PHP
MIT License
bolt/core
No longer lock ECS, make it work as intended again
95,114
14.08.2020 13:26:52
-7,200
ffb35f15294c0b9bc44b66c2f761dab0117c743a
replaced hardcoded '/' by DIRECTORY_SEPARATOR php constant to support path splitting on Windows machines
[ { "change_type": "MODIFY", "old_path": "src/Command/ExtensionsConfigureCommand.php", "new_path": "src/Command/ExtensionsConfigureCommand.php", "diff": "@@ -118,7 +118,7 @@ class ExtensionsConfigureCommand extends Command\n*/\nprivate function getExtensionRoutesPath(string $path = '*'): string\n{\n- ...
PHP
MIT License
bolt/core
replaced hardcoded '/' by DIRECTORY_SEPARATOR php constant to support path splitting on Windows machines
95,144
14.08.2020 14:34:12
-7,200
8d863bb68df1eced679b41e5150c4b0fdf9a9800
Ninja-edit an extra fieldtype in the extendedfields
[ { "change_type": "MODIFY", "old_path": "templates/helpers/_fields.twig", "new_path": "templates/helpers/_fields.twig", "diff": "{% set omittedkeys = ['id', 'slug', 'datecreated', 'datechanged', 'datepublish',\n'datedepublish', 'username', 'status', 'ownerid', 'templatefields'] %}\n{% set commonfield...
PHP
MIT License
bolt/core
Ninja-edit an extra fieldtype in the extendedfields
95,144
14.08.2020 15:16:17
-7,200
4b0649da4e05d4b5a34b7d64c1a26b5399826439
Prepare release 4.0.0-rc.35
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "{\n\"name\": \"bolt\",\n- \"version\": \"4.0.0-rc.34\",\n+ \"version\": \"4.0.0-rc.35\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n\"@types/anymatch\": {\n\"version\": \"1....
PHP
MIT License
bolt/core
Prepare release 4.0.0-rc.35
95,144
14.08.2020 15:51:54
-7,200
b64834545ecde1a46470fefd291dcf7edd88b0b5
Ninja-editing config
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "-# Note: Database setup is done in ENV variables. See `.env` in the project root.\n+# Note: Database setup is best done in ENV variables. See the file `.env`\n+# in the project root.\n# ...
PHP
MIT License
bolt/core
Ninja-editing config
95,168
14.08.2020 16:38:04
-7,200
353687470122e61b7f4f05e2da3ff0d1e9fbe003
Add in CMS the lang attribute for the html tag
[ { "change_type": "MODIFY", "old_path": "templates/_base/layout.html.twig", "new_path": "templates/_base/layout.html.twig", "diff": "{# Check if aside has value and set hasAside variable #}\n{% set hasAside = block('aside')|trim is not empty ? true : false %}\n<!DOCTYPE html>\n-<html {% if block('htm...
PHP
MIT License
bolt/core
Add in CMS the lang attribute for the html tag
95,168
14.08.2020 17:24:51
-7,200
80d26040b85600b105dcc85d826b4cdc754af7e5
Set Locale for bootbox modals
[ { "change_type": "MODIFY", "old_path": "assets/js/app/confirmation.js", "new_path": "assets/js/app/confirmation.js", "diff": "@@ -6,6 +6,9 @@ $('*[data-confirmation]').on('click', function() {\nconst thisHref = $(this).attr('href');\nconst confirmation = $(this).data('confirmation');\n+ let locale =...
PHP
MIT License
bolt/core
Set Locale for bootbox modals
95,168
14.08.2020 17:32:06
-7,200
7e36a6a75b6c84972e0f0f3106229c247d2e07d7
Move bootbox config out of click event function
[ { "change_type": "MODIFY", "old_path": "assets/js/app/confirmation.js", "new_path": "assets/js/app/confirmation.js", "diff": "import bootbox from 'bootbox';\nimport $ from 'jquery';\n+let bootboxDefaults = {\n+ locale: 'en'\n+}\n+\n+bootbox.setDefaults(bootboxDefaults);\n+\n+let locale = $('html').a...
PHP
MIT License
bolt/core
Move bootbox config out of click event function
95,144
15.08.2020 16:09:34
-7,200
666905547057cc69a86a15d10d7eb1fe42c12a3f
Update templates/_base/layout.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/_base/layout.html.twig", "new_path": "templates/_base/layout.html.twig", "diff": "{# Check if aside has value and set hasAside variable #}\n{% set hasAside = block('aside')|trim is not empty ? true : false %}\n<!DOCTYPE html>\n-<html lang={{ app.user...
PHP
MIT License
bolt/core
Update templates/_base/layout.html.twig
95,144
19.08.2020 11:24:55
-7,200
29b552706da7c774c000df93ddb8233d88d50d56
Add `url_decode` Twig Filter
[ { "change_type": "MODIFY", "old_path": "ecs.php", "new_path": "ecs.php", "diff": "@@ -46,7 +46,7 @@ use Symplify\\CodingStandard\\Fixer\\Strict\\BlankLineAfterStrictTypesFixer;\nreturn static function (ContainerConfigurator $containerConfigurator): void {\n$parameters = $containerConfigurator->param...
PHP
MIT License
bolt/core
Add `url_decode` Twig Filter
95,144
19.08.2020 10:05:15
-7,200
212394834bbb140bd79fc1a7f6d1acaede4a8ed8
Set filter in "Templateselect" to a regex by default
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -96,7 +96,7 @@ pages:\nlabel: \"This is a checkbox\"\ntemplate:\ntype: templateselect\n- filter: '*.twig'\n+ filter: '/^[^_].*\\.twig$/'\ntaxonomy: [ groups ]\nlisting_rec...
PHP
MIT License
bolt/core
Set filter in "Templateselect" to a regex by default