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,168
05.08.2021 15:43:08
-7,200
ddccfc8de36d86b24b4ea4de0bb1e1406c39af22
Update sass-loader to version ^9.0.0 since Webpack Encore does not support v8.0.0
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "\"prettier\": \"^1.19.1\",\n\"regenerator-runtime\": \"^0.13.7\",\n\"sass\": \"^1.34.1\",\n- \"sass-loader\": \"^8.0\",\n+ \"sass-loader\": \"^9.0.3\",\n\"source-sans-pro\": \"^3.6.0\",\n\"stylelint...
PHP
MIT License
bolt/core
Update sass-loader to version ^9.0.0 since Webpack Encore does not support v8.0.0
95,168
06.08.2021 08:55:52
-7,200
4bfd7eed2ba21d34242063f32d5ccd14164f77a7
Add the WebpackBar plugin back
[ { "change_type": "MODIFY", "old_path": "webpack.config.js", "new_path": "webpack.config.js", "diff": "+const WebpackBar = require('webpackbar');\nconst Encore = require('@symfony/webpack-encore');\n// Manually configure the runtime environment if not already configured yet by the \"encore\" command....
PHP
MIT License
bolt/core
Add the WebpackBar plugin back
95,168
06.08.2021 14:11:24
-7,200
5d9e26c4d4795f5a853f3c2d14bcbd428f4f8e70
Add image.button_from_url label to Image Field in Imagelist Field
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/imagelist.html.twig", "new_path": "templates/_partials/fields/imagelist.html.twig", "diff": "'placeholder_title': 'image.placeholder_title'|trans,\n'button_remove': 'image.button_remove'|trans,\n'button_edit_attributes': 'image.butto...
PHP
MIT License
bolt/core
Add image.button_from_url label to Image Field in Imagelist Field
95,144
09.08.2021 11:16:46
-7,200
45bc2847aa2efbcb7c392609a36ce98d76a91ecd
Improve feedback for uploading files
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -273,6 +273,18 @@ class Config\n);\n}\n+ public function getMaxUploadDescription(): string\n+ {\n+ return sprintf('This value is the minimum of these constraints:<br> <stron...
PHP
MIT License
bolt/core
Improve feedback for uploading files
95,147
09.08.2021 12:15:44
-7,200
98a403ad59281a2c02bf926a65ee4ef5b125a095
Use Symfony Process component instead of `passthru`
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/Script.php", "new_path": "bin/composer-script/Script.php", "diff": "@@ -4,6 +4,7 @@ namespace Bolt\\ComposerScripts;\nuse Composer\\Script\\Event;\nuse Symfony\\Component\\Console\\Style\\SymfonyStyle;\n+use Symfony\\Component\\Process\\Pro...
PHP
MIT License
bolt/core
Use Symfony Process component instead of `passthru`
95,144
09.08.2021 13:04:27
-7,200
d9f4fa1190b6d4c05ceb5fb49d305da667f341c8
Update templates/pages/about.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/pages/about.html.twig", "new_path": "templates/pages/about.html.twig", "diff": "<li>Symfony version: <code>{{ symfony }}</code></li>\n<li>Operating System: <code>{{ os_name }} - <small>{{ os_version }}</small></code></li>\n<li>Assets version: <code i...
PHP
MIT License
bolt/core
Update templates/pages/about.html.twig
95,144
10.08.2021 16:07:46
-7,200
8631c7e989a5d98c4b19b40bb7aa9918852b69c5
Re-add method that went missing somehow
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/Script.php", "new_path": "bin/composer-script/Script.php", "diff": "@@ -37,6 +37,29 @@ class Script\npublic static function run(string $command): int\n{\n$process = new Process([$command]);\n- $process->run();\n+\n+ return $process->run();\...
PHP
MIT License
bolt/core
Re-add method that went missing somehow
95,144
10.08.2021 15:35:55
-7,200
c042127406a8c39d2da706cce4a00e115032ded7
Add helpful notice to 404 exception page
[ { "change_type": "MODIFY", "old_path": "templates/helpers/page_404.html.twig", "new_path": "templates/helpers/page_404.html.twig", "diff": "<meta charset=\"utf-8\">\n<title>{{ exception.statusCode }} :: {{ exception.message }}</title>\n<link rel=\"stylesheet\" href=\"https://unpkg.com/purecss@1.0.1/...
PHP
MIT License
bolt/core
Add helpful notice to 404 exception page
95,144
11.08.2021 14:13:56
-7,200
6293cfaecd06c0494f89604ef4298c10b901c6c8
Despite what the arguments say, this should be a string
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/Script.php", "new_path": "bin/composer-script/Script.php", "diff": "@@ -32,7 +32,7 @@ class Script\n*/\nprotected static function run(string $command): void\n{\n- $process = new Process([$command]);\n+ $process = new Process($command);\n$pr...
PHP
MIT License
bolt/core
Despite what the arguments say, this should be a string
95,144
12.08.2021 14:44:24
-7,200
0e0ae9ff09adb1943225555eb2798b5727b7dac9
Workaround for constructor signature change in Symfony/Process
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/CreateProjectScript.php", "new_path": "bin/composer-script/CreateProjectScript.php", "diff": "<?php\n+declare(strict_types=1);\n+\nnamespace Bolt\\ComposerScripts;\nuse Composer\\Script\\Event;\n" }, { "change_type": "MODIFY", "...
PHP
MIT License
bolt/core
Workaround for constructor signature change in Symfony/Process
95,144
16.08.2021 12:11:51
-7,200
9695d72ad6c3bbe156132942a3eb4b59fd13afd6
Fix preview button (if complaining about GET vs POST)
[ { "change_type": "MODIFY", "old_path": "src/Controller/TwigAwareController.php", "new_path": "src/Controller/TwigAwareController.php", "diff": "@@ -137,7 +137,7 @@ class TwigAwareController extends AbstractController\n}\n// If the locale is the wrong locale\n- if (! $this->validLocaleForContentType(...
PHP
MIT License
bolt/core
Fix preview button (if complaining about GET vs POST)
95,144
18.08.2021 15:01:39
-7,200
a11dd892aeb6614b8c1ba43661ccf328c6dde02c
Fine-tune default permissions Part of the fix for
[ { "change_type": "MODIFY", "old_path": "config/bolt/permissions.yaml", "new_path": "config/bolt/permissions.yaml", "diff": "@@ -20,12 +20,12 @@ assignable_roles: [ROLE_DEVELOPER, ROLE_ADMIN, ROLE_CHIEF_EDITOR, ROLE_EDITOR, R\nglobal:\nabout: [ ROLE_EDITOR ] # view the 'About Bolt' page\nclearcache: ...
PHP
MIT License
bolt/core
Fine-tune default permissions Part of the fix for #2773
95,144
23.08.2021 13:30:20
-7,200
0fc7724c03dfe27d096e52978dbf3197d6aac449
Lock `symfony/flex` to `1.13` for now
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"symfony/dependency-injection\": \"^5.1\",\n\"symfony/dotenv\": \"^5.1\",\n\"symfony/expression-language\": \"^5.1\",\n- \"symfony/flex\": \"^1.9\",\n+ \"symfony/flex\": \"1.13.*\",\n\"symfony/form\": \"^5...
PHP
MIT License
bolt/core
Lock `symfony/flex` to `1.13` for now
95,144
13.08.2021 14:39:22
-7,200
1e80c3de65ec97c44779b5fa77021d54d83289d0
Create ServerCommand.php
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Command/ServerCommand.php", "diff": "+<?php\n+\n+namespace Bolt\\Command;\n+\n+use Bolt\\Common\\Str;\n+use Symfony\\Component\\Console\\Command\\Command;\n+use Symfony\\Component\\Console\\Input\\InputInterface;\n+use Symfony\\Component\\Co...
PHP
MIT License
bolt/core
Create ServerCommand.php
95,144
19.08.2021 08:48:46
-7,200
43f1cada580be6bde05a38cc740d8cb458e4602b
Improving Installation Commands
[ { "change_type": "MODIFY", "old_path": "src/Command/AddUserCommand.php", "new_path": "src/Command/AddUserCommand.php", "diff": "@@ -275,7 +275,7 @@ class AddUserCommand extends Command\n$this->io->comment(sprintf('New user database id: %d / Elapsed time: %.2f ms / Consumed memory: %.2f MB', $user->g...
PHP
MIT License
bolt/core
Improving Installation Commands
95,144
25.08.2021 14:08:40
-7,200
016f8d3c4e5606ebb3e978f7b329f61670aa83bf
Why write more code, when you can also write less code
[ { "change_type": "MODIFY", "old_path": "src/Command/ServerCommand.php", "new_path": "src/Command/ServerCommand.php", "diff": "@@ -9,20 +9,10 @@ use Symfony\\Component\\Console\\Input\\InputInterface;\nuse Symfony\\Component\\Console\\Input\\InputOption;\nuse Symfony\\Component\\Console\\Output\\Outp...
PHP
MIT License
bolt/core
Why write more code, when you can also write less code
95,144
26.08.2021 14:50:34
-7,200
3f2016090041b00071c402551e7670d53737f10f
Allow HTML for `type: text` fields by default
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/ContentTypesParser.php", "new_path": "src/Configuration/Parser/ContentTypesParser.php", "diff": "@@ -328,7 +328,7 @@ class ContentTypesParser extends BaseParser\n}\nif (isset($field['allow_html']) === false) {\n- $field['allow_html'] =...
PHP
MIT License
bolt/core
Allow HTML for `type: text` fields by default
95,144
26.08.2021 16:28:18
-7,200
312a150e6d95a17befc8cf41f91ec09929feab42
Migrate `security.yaml`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"api-platform/core\": \"^2.6\",\n\"babdev/pagerfanta-bundle\": \"^2.5\",\n\"beberlei/doctrineextensions\": \"^1.3\",\n- \"bobdenotter/yaml-migrations\": \"^1.0\",\n+ \"bobdenotter/yaml-migrations\": \"^1.1...
PHP
MIT License
bolt/core
Migrate `security.yaml`
95,144
26.08.2021 16:29:15
-7,200
ad838c9643fad5f046697a849d8ff28226d50fcc
Tweak version number
[ { "change_type": "MODIFY", "old_path": "yaml-migrations/m_2021-08-26-security_1.yaml", "new_path": "yaml-migrations/m_2021-08-26-security_1.yaml", "diff": "# Remove two keys (and underlying values) from the file: `role_hierarchy`, `access_control`\nfile: packages/security.yaml\n-since: 4.2.0\n+since...
PHP
MIT License
bolt/core
Tweak version number
95,144
26.08.2021 16:30:05
-7,200
5f9bd62021e8290eee28188fe7926fb5ac164c13
Update m_2021-08-26-security_2.yaml
[ { "change_type": "MODIFY", "old_path": "yaml-migrations/m_2021-08-26-security_2.yaml", "new_path": "yaml-migrations/m_2021-08-26-security_2.yaml", "diff": "@@ -15,9 +15,9 @@ add:\naccess_control:\n- { path: '^%bolt.backend_url%/login$', roles: IS_AUTHENTICATED_ANONYMOUSLY }\n- { path: '^%bolt.backen...
PHP
MIT License
bolt/core
Update m_2021-08-26-security_2.yaml
95,144
27.08.2021 14:15:46
-7,200
e564ca869d4f32608df742a7a740f8c96544a023
Fix Script.php
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/CreateProjectScript.php", "new_path": "bin/composer-script/CreateProjectScript.php", "diff": "@@ -19,8 +19,10 @@ class CreateProjectScript extends Script\nself::run('php bin/console bolt:reset-secret');\nself::run('php bin/console bolt:copy...
PHP
MIT License
bolt/core
Fix Script.php
95,144
28.08.2021 11:46:48
-7,200
4b134fe358b7c4690edecf33e98560512f73ae3a
Fixing Composer scripts
[ { "change_type": "ADD", "old_path": null, "new_path": "bin/composer-script/CorePostInstallScript.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\ComposerScripts;\n+\n+use OndraM\\CiDetector\\CiDetector;\n+\n+class CorePostInstallScript extends Script\n+{\n+ public static fun...
PHP
MIT License
bolt/core
Fixing Composer scripts
95,144
28.08.2021 12:23:50
-7,200
0bc55c99f3a1e5934f77f67c904bffe4050d73f9
Preparing release 5.0.0-rc.1
[ { "change_type": "MODIFY", "old_path": "assets/js/version.js", "new_path": "assets/js/version.js", "diff": "// generated by genversion\n-export const version = '4.99.14';\n+export const version = '4.99.15';\n" }, { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path":...
PHP
MIT License
bolt/core
Preparing release 5.0.0-rc.1
95,144
29.08.2021 11:41:06
-7,200
c077d9d47c12042bfe339d45551c4a0b5bf686af
Update migrations: security_checker.yaml
[ { "change_type": "MODIFY", "old_path": "yaml-migrations/m_2020-12-28-maker.yaml", "new_path": "yaml-migrations/m_2020-12-28-maker.yaml", "diff": "-# Adding the new Twig config for Bolt 4.2.0\n+# Removing deprecated file\nfile: packages/dev/maker.yaml\nsince: 4.2.0\n" }, { "change_type": "ADD...
PHP
MIT License
bolt/core
Update migrations: security_checker.yaml
95,144
29.08.2021 16:09:24
-7,200
a9b4c2a4155f041f6fb9531c43c087d911384d0f
Add `fix-bundles` script
[ { "change_type": "MODIFY", "old_path": "bin/composer-script/PostUpdateScript.php", "new_path": "bin/composer-script/PostUpdateScript.php", "diff": "@@ -10,6 +10,7 @@ class PostUpdateScript extends Script\n{\nparent::init('Running composer \"post-update-cmd\" scripts');\n+ self::run('php vendor/bolt/...
PHP
MIT License
bolt/core
Add `fix-bundles` script
95,144
29.08.2021 16:33:40
-7,200
f002e7228a9a27f6d7372237f04360d21e10c5c7
Give user correct path for `bolt:server` command
[ { "change_type": "MODIFY", "old_path": "src/Command/ServerCommand.php", "new_path": "src/Command/ServerCommand.php", "diff": "@@ -10,9 +10,20 @@ use Symfony\\Component\\Console\\Input\\InputOption;\nuse Symfony\\Component\\Console\\Output\\OutputInterface;\nuse Symfony\\Component\\Console\\Style\\Sy...
PHP
MIT License
bolt/core
Give user correct path for `bolt:server` command
95,144
30.08.2021 07:49:30
-7,200
b390a89fa8cdbe27ba6e858d43ace993bc0aa8b5
Add `--full-path` option to `bolt:server` command
[ { "change_type": "MODIFY", "old_path": "src/Command/ServerCommand.php", "new_path": "src/Command/ServerCommand.php", "diff": "@@ -30,6 +30,7 @@ class ServerCommand extends Command\n->setName('bolt:server')\n->addOption('port', 'p', InputOption::VALUE_OPTIONAL, 'Preferred HTTP port rather than auto-f...
PHP
MIT License
bolt/core
Add `--full-path` option to `bolt:server` command
95,118
30.08.2021 09:47:58
-7,200
f56656ccd585ba4aff193641ffca6ebae30faece
Remove missing related_values_from_content filter
[ { "change_type": "MODIFY", "old_path": "src/Twig/RelatedExtension.php", "new_path": "src/Twig/RelatedExtension.php", "diff": "@@ -51,8 +51,7 @@ class RelatedExtension extends AbstractExtension\nnew TwigFilter('related_by_type', [$this, 'getRelatedContentByType']),\nnew TwigFilter('related_first', [$...
PHP
MIT License
bolt/core
Remove missing related_values_from_content filter
95,118
30.08.2021 09:54:08
-7,200
ed7d44495048b16a2c1cbdc14666c0a34aaeebf3
Update src/Twig/RelatedExtension.php
[ { "change_type": "MODIFY", "old_path": "src/Twig/RelatedExtension.php", "new_path": "src/Twig/RelatedExtension.php", "diff": "@@ -51,7 +51,7 @@ class RelatedExtension extends AbstractExtension\nnew TwigFilter('related_by_type', [$this, 'getRelatedContentByType']),\nnew TwigFilter('related_first', [$...
PHP
MIT License
bolt/core
Update src/Twig/RelatedExtension.php
95,144
30.08.2021 17:38:02
-7,200
8bb07252c423b1348ca1d00d904e27a666a38ae0
Ninja-editing fix for
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "},\n\"conflict\": {\n\"friendsofphp/php-cs-fixer\": \">=2.19.0\",\n- \"symfony/security-http\": \"v5.3.0 v5.3.1\"\n+ \"symfony/security-http\": \"v5.3.0 v5.3.1\",\n+ \"symfony/dependency-injection\": \"5.3....
PHP
MIT License
bolt/core
Ninja-editing fix for #2810
95,144
31.08.2021 08:30:15
-7,200
c5c9ec4a17faf158a171ee9cfdcf0c2db05df77b
Backport of `"symfony/dependency-injection": "5.3.7"` in "conflicts"
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"doctrine/common\": \">=3.0\",\n\"doctrine/persistence\": \"<1.3\",\n\"friendsofphp/php-cs-fixer\": \">=2.19.0\",\n- \"symfony/security-http\": \"v5.3.0 v5.3.1\"\n+ \"symfony/security-http\": \"v5.3.0 v5.3...
PHP
MIT License
bolt/core
Backport of `"symfony/dependency-injection": "5.3.7"` in "conflicts"
95,121
03.09.2021 15:27:27
-7,200
329291294ea0bd0fd3201a027dce4010ade6b713
Fix missing id for textarea ID was missing for the textarea which broke the label.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Textarea.vue", "new_path": "assets/js/app/editor/Components/Textarea.vue", "diff": "<template>\n<div>\n<textarea\n+ :id=\"id\"\nv-model=\"rawVal\"\nclass=\"form-control field--textarea\"\n:name=\"name\"\n@@ -23,6 +24,7 @@ export...
PHP
MIT License
bolt/core
Fix missing id for textarea ID was missing for the textarea which broke the label.
95,121
03.09.2021 16:34:54
-7,200
0022ebfba9a0e0052431f33037e3628ea20444af
Fix missing id's for integer/float field Id was missing for the integer and float field which broke both of the labels.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Number.vue", "new_path": "assets/js/app/editor/Components/Number.vue", "diff": "<template>\n<div class=\"input-group\">\n<input\n+ :id=\"id\"\nv-model=\"val\"\n:name=\"name\"\nclass=\"form-control\"\n@@ -22,6 +23,7 @@ export def...
PHP
MIT License
bolt/core
Fix missing id's for integer/float field Id was missing for the integer and float field which broke both of the labels.
95,121
06.09.2021 11:04:47
-7,200
152b736b2ff4383c51a3eca414a9f3419aa52235
Addressed remove dummy users issue. Instead of removing the dummy users I set the status to disabled so only the admin can login.
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/UserFixtures.php", "new_path": "src/DataFixtures/UserFixtures.php", "diff": "@@ -59,7 +59,6 @@ class UserFixtures extends BaseFixture implements FixtureGroupInterface\ncontinue 2;\n}\n}\n-\n$user = new User();\n$user->setDisplayName($userData[...
PHP
MIT License
bolt/core
Addressed remove dummy users issue. Instead of removing the dummy users I set the status to disabled so only the admin can login.
95,121
06.09.2021 13:14:14
-7,200
cc87e4e4f0ecb12daac864695fbbcd3e68f72f67
Updated fixtures for Cypress test Cypress test failed because it couldn't log in as user/editor/chief editor.
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/UserFixtures.php", "new_path": "src/DataFixtures/UserFixtures.php", "diff": "@@ -110,6 +110,7 @@ class UserFixtures extends BaseFixture implements FixtureGroupInterface\n'password' => $this->append ? Str::generatePassword(10) : 'jane%1',\n'ema...
PHP
MIT License
bolt/core
Updated fixtures for Cypress test Cypress test failed because it couldn't log in as user/editor/chief editor.
95,121
06.09.2021 14:45:23
-7,200
2035c0092f5bce5be1b27ace4f22fe939950c9c0
Fixed the cypress test
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/_base.html.twig", "new_path": "templates/_partials/fields/_base.html.twig", "diff": "<!-- field \"{{ label }}\" (type: {{ type }}{% if variant != 'normal' %}, variant: {{ variant }}{% endif %}) -->\n<div\nclass=\"form-group {{ type_c...
PHP
MIT License
bolt/core
Fixed the cypress test
95,144
07.09.2021 09:30:01
-7,200
0c121dbf0c7e1bd056265ac5daa024b1f9dc3a6c
Show (and attempt to set) `memory_limit`
[ { "change_type": "MODIFY", "old_path": "bin/console", "new_path": "bin/console", "diff": "@@ -8,6 +8,7 @@ use Symfony\\Component\\Debug\\Debug;\nuse Symfony\\Component\\Dotenv\\Dotenv;\nset_time_limit(0);\n+@ini_set('memory_limit', '1024M');\nrequire __DIR__.'/../vendor/autoload.php';\n" }, { ...
PHP
MIT License
bolt/core
Show (and attempt to set) `memory_limit`
95,144
07.09.2021 09:51:38
-7,200
10036f0ed5fa8fc0ff6910586c53bd6f66459bb4
Removing false positive, which apparently isn't needed anymore
[ { "change_type": "MODIFY", "old_path": "phpstan.neon", "new_path": "phpstan.neon", "diff": "@@ -31,11 +31,6 @@ parameters:\nmessage: \"#Offset 'location' does not exist on array#\"\npath: %currentWorkingDirectory%/src/Log/LogHandler.php\n- # false positive: Parameter #1 $description of method Bolt\\...
PHP
MIT License
bolt/core
Removing false positive, which apparently isn't needed anymore
95,121
07.09.2021 13:21:13
-7,200
bce54fe4878a890203238e48427efcb1779d92e1
Update setcontent.spec.js
[ { "change_type": "MODIFY", "old_path": "tests/cypress/integration/setcontent.spec.js", "new_path": "tests/cypress/integration/setcontent.spec.js", "diff": "describe('As a user I want to see the results of Setcontent', () => {\nit('checks that the Setcontent page is visible as a user', () => {\n-\ncy...
PHP
MIT License
bolt/core
Update setcontent.spec.js
95,147
13.09.2021 15:41:28
-7,200
2a87ca3f248fe5b425bff4d5c25199fb5055b135
WIP search multiselects in doctrine
[ { "change_type": "MODIFY", "old_path": "config/packages/doctrine.yaml", "new_path": "config/packages/doctrine.yaml", "diff": "@@ -33,6 +33,7 @@ doctrine:\nstring_functions:\nJSON_EXTRACT: Bolt\\Doctrine\\Functions\\JsonExtract\nJSON_GET_TEXT: Scienta\\DoctrineJsonFunctions\\Query\\AST\\Functions\\Po...
PHP
MIT License
bolt/core
WIP search multiselects in doctrine
95,121
14.09.2021 10:48:12
-7,200
d6a9dc3801e3d9a13f85749d5267bcf46461ec38
Fixed that onUserEdit changes backend locale On userEdit the backend locale got changed because of the function. Removed contents of the function and all is still functional.
[ { "change_type": "MODIFY", "old_path": "src/Event/Subscriber/UserLocaleSubscriber.php", "new_path": "src/Event/Subscriber/UserLocaleSubscriber.php", "diff": "@@ -38,7 +38,7 @@ class UserLocaleSubscriber implements EventSubscriberInterface\npublic function onUserEdit(UserEvent $event): void\n{\n- $th...
PHP
MIT License
bolt/core
Fixed that onUserEdit changes backend locale On userEdit the backend locale got changed because of the function. Removed contents of the function and all is still functional.
95,147
16.09.2021 08:31:36
-7,200
26ddda4b1b6bcd09ee4be75a3d20c6d7edaa7c4e
Add `JSON_SEARCH` migration
[ { "change_type": "ADD", "old_path": null, "new_path": "yaml-migrations/m_2021-09-16-doctrine.yaml", "diff": "+# Adding the JSON_SEARCH for Bolt 5\n+file: packages/doctrine.yaml\n+since: 4.2.0\n+\n+add:\n+ doctrine:\n+ orm:\n+ dql:\n+ string_functions:\n+ JSON_SEARCH: Scienta\\DoctrineJsonFunctions\\...
PHP
MIT License
bolt/core
Add `JSON_SEARCH` migration
95,147
16.09.2021 14:24:16
-7,200
6bfc353a3e44e2dc2bb93319223ede463f11c0c3
Move `stringifyValue` to bolt/common
[ { "change_type": "MODIFY", "old_path": "src/Storage/Directive/PrintQueryDirective.php", "new_path": "src/Storage/Directive/PrintQueryDirective.php", "diff": "@@ -4,6 +4,7 @@ declare(strict_types=1);\nnamespace Bolt\\Storage\\Directive;\n+use Bolt\\Common\\Str;\nuse Bolt\\Storage\\QueryInterface;\nus...
PHP
MIT License
bolt/core
Move `stringifyValue` to bolt/common
95,144
16.09.2021 16:37:23
-7,200
121792eeab141782f5ce0313e1d84f51e63f86dc
Ninja-fix composer.json
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "},\n\"conflict\": {\n\"friendsofphp/php-cs-fixer\": \">=2.19.0\",\n- \"symfony/security-http\": \"v5.3.0 v5.3.1\",\n- \"symfony/dependency-injection\": \"5.3.7\"\n+ \"symfony/dependency-injection\": \"5.3.7...
PHP
MIT License
bolt/core
Ninja-fix composer.json
95,129
17.09.2021 15:44:25
-7,200
92d7f4b88ea7b20dec2d48c7ce9a2ee1ac78717e
Added save-method to RelationFactory. Closes
[ { "change_type": "MODIFY", "old_path": "src/Factory/RelationFactory.php", "new_path": "src/Factory/RelationFactory.php", "diff": "@@ -7,18 +7,24 @@ namespace Bolt\\Factory;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Entity\\Relation;\nuse Bolt\\Repository\\RelationRepository;\n+use Doctrine\\ORM\\Entity...
PHP
MIT License
bolt/core
Added save-method to RelationFactory. Closes #2832
95,129
17.09.2021 16:37:13
-7,200
f247fecaaa13bc008aa7f137e923dd7eee8c590f
Analyzed and corrected through ECS and PHPStan.
[ { "change_type": "MODIFY", "old_path": "src/Factory/RelationFactory.php", "new_path": "src/Factory/RelationFactory.php", "diff": "@@ -7,7 +7,6 @@ namespace Bolt\\Factory;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Entity\\Relation;\nuse Bolt\\Repository\\RelationRepository;\n-use Doctrine\\ORM\\EntityMa...
PHP
MIT License
bolt/core
Analyzed and corrected through ECS and PHPStan.
95,129
19.09.2021 10:27:21
-7,200
c1d9447e43a3bb1f4b127ca1e4c470e904d6b0fd
Changed arrow function to anonymous function.
[ { "change_type": "MODIFY", "old_path": "tests/php/Factory/RelationFactoryTest.php", "new_path": "tests/php/Factory/RelationFactoryTest.php", "diff": "@@ -95,7 +95,9 @@ final class RelationFactoryTest extends DbAwareTestCase\n}\n$relationFactory->save($relations);\n- $relationIds = array_map(fn ($rel...
PHP
MIT License
bolt/core
Changed arrow function to anonymous function.
95,129
19.09.2021 11:30:52
-7,200
19e9f7b18da0522da0d5ae56d701ec079d6f03c7
Added possible null return for getId. Closes
[ { "change_type": "MODIFY", "old_path": "src/Entity/Relation.php", "new_path": "src/Entity/Relation.php", "diff": "@@ -77,7 +77,7 @@ class Relation\n$toContent->addRelationsToThisContent($this);\n}\n- public function getId(): int\n+ public function getId(): ?int\n{\nreturn $this->id;\n}\n" }, { ...
PHP
MIT License
bolt/core
Added possible null return for getId. Closes #2834
95,121
20.09.2021 09:45:39
-7,200
0b03b3dbdc4fb0d3511ee4376c02829b247efcc0
Changed editor permissions test
[ { "change_type": "MODIFY", "old_path": "config/bolt/permissions.yaml", "new_path": "config/bolt/permissions.yaml", "diff": "@@ -25,7 +25,7 @@ global:\n# these control /bolt/file-edit and /bolt/filemanager -> combined create/read/update/delete permission\n# the part after the files: is the 'location'...
PHP
MIT License
bolt/core
Changed editor permissions test
95,129
21.09.2021 13:50:34
-7,200
133ccd3ed29e87991e611ed51e9b7417f9ee7c5c
Fixed array key resetting after filter.
[ { "change_type": "MODIFY", "old_path": "tests/php/Factory/RelationFactoryTest.php", "new_path": "tests/php/Factory/RelationFactoryTest.php", "diff": "@@ -87,11 +87,15 @@ final class RelationFactoryTest extends DbAwareTestCase\n$relations = [];\n$limit = count($nonRelatedEntryIds) > 5 ? 5 : count($no...
PHP
MIT License
bolt/core
Fixed array key resetting after filter.
95,144
28.09.2021 17:07:16
-7,200
8280763cb4195a03b59cc82e5d371fedc956c0b1
Fix Multiselect in setcontent
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -597,7 +597,7 @@ class SelectQuery implements QueryInterface\nif ($this->utils->isFieldType($this, $filter->getKey(), SelectField::TYPE) && $this->utils->hasJsonSearch()) {\n/...
PHP
MIT License
bolt/core
Fix Multiselect in setcontent
95,144
29.09.2021 10:10:37
-7,200
d9f1b47eec8ce8da5d62551ae55bd303326e34f3
Prepare release 5.0.3
[ { "change_type": "MODIFY", "old_path": "assets/js/version.js", "new_path": "assets/js/version.js", "diff": "// generated by genversion\n-export const version = '5.0.2';\n+export const version = '5.0.3';\n" }, { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "pa...
PHP
MIT License
bolt/core
Prepare release 5.0.3
95,121
01.10.2021 13:43:31
-7,200
7f8622d20a942f838a838e59c18c5dca3ed6eced
Fixed issue about the password eye
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Password.vue", "new_path": "assets/js/app/editor/Components/Password.vue", "diff": "class=\"form-control\"\ntype=\"password\"\n:name=\"name\"\n+ :id=\"id\"\n:value=\"value\"\n:required=\"required\"\n:readonly=\"readonly\"\n@@ -6...
PHP
MIT License
bolt/core
Fixed issue about the password eye
95,121
01.10.2021 13:57:45
-7,200
a115c7a4d89570358d095001e1f3b8a9204dfcbc
JS lint test
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Password.vue", "new_path": "assets/js/app/editor/Components/Password.vue", "diff": "<div>\n<div class=\"input-group\">\n<input\n+ :id=\"id\"\nref=\"inputField\"\nclass=\"form-control\"\ntype=\"password\"\n:name=\"name\"\n- :id=\...
PHP
MIT License
bolt/core
JS lint test
95,144
06.10.2021 13:07:11
-7,200
092e5f7c6908c1b451b7daca0147e6ae368f8d14
Add `cascade={"persist"}` to Field#content relation
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -64,7 +64,7 @@ class Field implements FieldInterface, TranslatableInterface\nprivate $version;\n/**\n- * @ORM\\ManyToOne(targetEntity=\"Bolt\\Entity\\Content\", inversedBy=\"fields\")\n+ * ...
PHP
MIT License
bolt/core
Add `cascade={"persist"}` to Field#content relation
95,144
12.10.2021 11:38:52
-7,200
bce8a76ad3733d7ef1fa3f1bb34bdca18a8f5a1d
Unlock `symfony/flex` so it updates past 1.13
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"symfony/dependency-injection\": \"^5.3\",\n\"symfony/dotenv\": \"^5.3\",\n\"symfony/expression-language\": \"^5.3\",\n- \"symfony/flex\": \"1.13.*\",\n+ \"symfony/flex\": \"^1.17\",\n\"symfony/form\": \"^...
PHP
MIT License
bolt/core
Unlock `symfony/flex` so it updates past 1.13
95,121
12.10.2021 11:46:21
-7,200
ac0ef5d1df3b4256a1143d08a7f263c2c657ab11
Update for SCSS deprecations
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/admin/_sidebar.scss", "new_path": "assets/scss/modules/admin/_sidebar.scss", "diff": "//** Admin | Sidebar\n+@use \"sass:math\";\n+\n.admin__sidebar {\nbackground: var(--admin-sidebar);\ncolor: var(--admin-sidebar-text);\n&--link {\npositio...
PHP
MIT License
bolt/core
Update for SCSS deprecations
95,144
13.10.2021 17:02:45
-7,200
c6f6be709e93d1e133e1c84d04811068c6d421b1
Improve the way `time_limit` and `memory_limit` is being set
[ { "change_type": "MODIFY", "old_path": "bin/console", "new_path": "bin/console", "diff": "@@ -6,15 +6,19 @@ use Symfony\\Bundle\\FrameworkBundle\\Console\\Application;\nuse Symfony\\Component\\Console\\Input\\ArgvInput;\nuse Symfony\\Component\\Dotenv\\Dotenv;\nuse Symfony\\Component\\ErrorHandler\\...
PHP
MIT License
bolt/core
Improve the way `time_limit` and `memory_limit` is being set
95,128
14.10.2021 09:28:48
-7,200
f4494bb045f59df0520be3bf6f6186c523344fc6
Fixed created date UTC in content entity
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -152,7 +152,7 @@ class Content\npublic function __construct(?ContentType $contentTypeDefinition = null)\n{\n- $this->createdAt = new \\DateTime();\n+ $this->createdAt = $this->convertTo...
PHP
MIT License
bolt/core
Fixed created date UTC in content entity
95,144
22.10.2021 08:51:05
-7,200
af6341a08a84385aeec7a02d670649c8bb77cfc6
Update m_2021-10-21-translation.yaml
[ { "change_type": "MODIFY", "old_path": "yaml-migrations/m_2021-10-21-translation.yaml", "new_path": "yaml-migrations/m_2021-10-21-translation.yaml", "diff": "# Adding the new locales_array for Bolt 5.0.4\n-file: packages/dtranslation.yaml\n+file: packages/translation.yaml\nsince: 5.0.4\nadd:\ntransl...
PHP
MIT License
bolt/core
Update m_2021-10-21-translation.yaml
95,144
22.10.2021 10:30:43
-7,200
0f57d3f675019bdd5f84b297605075dcb5aef081
Update Composer to 2.1 and Symplify to 9.4
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -80,17 +80,6 @@ appveyor.yml\n###> symfony/web-server-bundle ###\n/.web-server-pid\n###< symfony/web-server-bundle ###\n-\n-###> friendsofphp/php-cs-fixer ###\n-/.php_cs\n-/.php_cs.cache\n-###< friendsofphp/ph...
PHP
MIT License
bolt/core
Update Composer to 2.1 and Symplify to 9.4
95,144
24.10.2021 14:13:03
-7,200
670d84da861961e9244439fb8b6ffa6f996f68ac
Fix setPath: Don't override existing `$route`, if we already have one
[ { "change_type": "MODIFY", "old_path": "src/Canonical.php", "new_path": "src/Canonical.php", "diff": "@@ -166,7 +166,7 @@ class Canonical\n{\nif (! $route && ! $this->request->attributes->has('_route')) {\nreturn;\n- } elseif ($this->request->attributes->has('_route')) {\n+ } elseif (! $route) {\n$r...
PHP
MIT License
bolt/core
Fix setPath: Don't override existing `$route`, if we already have one
95,121
25.10.2021 10:50:42
-7,200
8926e83e1e79896d7168a7ff4f8667d1e3e970f2
Fix up updating locale for current user only
[ { "change_type": "MODIFY", "old_path": "src/Event/Subscriber/UserLocaleSubscriber.php", "new_path": "src/Event/Subscriber/UserLocaleSubscriber.php", "diff": "@@ -8,6 +8,7 @@ use Bolt\\Entity\\User;\nuse Bolt\\Event\\UserEvent;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\nuse ...
PHP
MIT License
bolt/core
Fix up updating locale for current user only
95,191
26.10.2021 13:22:12
-7,200
5b2acca976a6c2327e7cb5471d01cf595a8c144a
Recent fix broke the bulk action
[ { "change_type": "MODIFY", "old_path": "tests/cypress/integration/bulk_actions.spec.js", "new_path": "tests/cypress/integration/bulk_actions.spec.js", "diff": "@@ -27,8 +27,7 @@ describe('As an Admin I want to change the status of several tests at once', ()\ncy.get('.multiselect--active').should('co...
PHP
MIT License
bolt/core
Recent fix broke the bulk action
95,144
26.10.2021 15:12:58
-7,200
e64387ef4ba628834c69e67e98dfd2b09c9c4172
Cache backend menu always
[ { "change_type": "MODIFY", "old_path": "config/services.yaml", "new_path": "config/services.yaml", "diff": "@@ -87,11 +87,11 @@ services:\ntags:\n- { name: knp_menu.menu_builder, method: createAdminMenu, alias: admin_menu } # The alias is what is used to retrieve the menu\n- Bolt\\Menu\\BackendMenuB...
PHP
MIT License
bolt/core
Cache backend menu always
95,144
26.10.2021 15:50:57
-7,200
a1d6a4af5ceeeb2db690be1118596f3e7151e085
Adding YAML migrations
[ { "change_type": "ADD", "old_path": null, "new_path": "yaml-migrations/m_2021-10-26-services.yaml", "diff": "+# Remove keys (and underlying values) from the file: `services.yaml`\n+# See: https://github.com/bolt/core/pull/2886\n+\n+file: services.yaml\n+since: 5.0.6\n+\n+add:\n+ services:\n+ Bolt\\M...
PHP
MIT License
bolt/core
Adding YAML migrations
95,144
26.10.2021 16:58:54
-7,200
17bef0571a6ad049c9bda4d42d6b9d799ab998ac
Update src/Menu/FrontendMenu.php
[ { "change_type": "MODIFY", "old_path": "src/Menu/FrontendMenu.php", "new_path": "src/Menu/FrontendMenu.php", "diff": "@@ -38,7 +38,7 @@ final class FrontendMenu implements FrontendMenuBuilderInterface\n{\n$this->stopwatch->start('bolt.frontendMenu');\n- $key = 'frontendmenu_' . ($name ?: 'main') . '...
PHP
MIT License
bolt/core
Update src/Menu/FrontendMenu.php
95,144
26.10.2021 17:11:04
-7,200
1933842cd406f648018a1e43b31ca1d5eb6a6ffa
Cache JSON encoding of an array of Entries
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -186,6 +186,16 @@ class Content\nreturn $this->id;\n}\n+ public function getCacheKey(?string $locale = null): string\n+ {\n+ $key = sprintf('record-%05d', $this->getId());\n+ if ($local...
PHP
MIT License
bolt/core
Cache JSON encoding of an array of Entries
95,144
26.10.2021 17:30:53
-7,200
ceaacd8cc775298d0529ec8a3651d20ddfb91956
Cache "related options"
[ { "change_type": "MODIFY", "old_path": "src/Event/Subscriber/ContentSaveSubscriber.php", "new_path": "src/Event/Subscriber/ContentSaveSubscriber.php", "diff": "@@ -25,8 +25,7 @@ class ContentSaveSubscriber implements EventSubscriberInterface\npublic function postSave(ContentEvent $event): ContentEve...
PHP
MIT License
bolt/core
Cache "related options"
95,144
03.11.2021 13:01:31
-3,600
c6b6facbc9170411f5bb39e2f5e1b1ca4a927b08
Allow `GET` requests for Preview
[ { "change_type": "MODIFY", "old_path": "src/Controller/Frontend/DetailController.php", "new_path": "src/Controller/Frontend/DetailController.php", "diff": "@@ -36,6 +36,10 @@ class DetailController extends TwigAwareController implements FrontendZoneInterf\n* name=\"record_locale\",\n* requirements={...
PHP
MIT License
bolt/core
Allow `GET` requests for Preview
95,144
08.11.2021 11:34:23
-3,600
e467bb290e00c1a4154746532ddf1f03fb8a03be
Ensure consistency in sluggified anchor link
[ { "change_type": "MODIFY", "old_path": "templates/content/edit.html.twig", "new_path": "templates/content/edit.html.twig", "diff": "{% include '@bolt/content/_fields.html.twig' %}\n- <div class=\"tab-pane\" id=\"relations\" role=\"tabpanel\" aria-labelledby=\"relations-tab\">\n+ {# Note: the `|slug`...
PHP
MIT License
bolt/core
Ensure consistency in sluggified anchor link
95,144
08.11.2021 14:10:24
-3,600
64abd3164b25ab28c77c54dda89c23d2b58c34af
Enable 'Remember me' by default, and make duration configurable
[ { "change_type": "MODIFY", "old_path": "config/packages/security.yaml", "new_path": "config/packages/security.yaml", "diff": "@@ -38,7 +38,7 @@ security:\nremember_me:\nsecret: '%kernel.secret%'\n- lifetime: 2592000\n+ lifetime: '%bolt.remember_lifetime%'\nremember_me_parameter: login[remember_me]\n...
PHP
MIT License
bolt/core
Enable 'Remember me' by default, and make duration configurable
95,144
08.11.2021 14:40:10
-3,600
23cd1fb5f60190ab968707ea41017d48243edf46
More detailed logging when logging in and logging out
[ { "change_type": "MODIFY", "old_path": "src/Security/LoginFormAuthenticator.php", "new_path": "src/Security/LoginFormAuthenticator.php", "diff": "@@ -138,8 +138,11 @@ class LoginFormAuthenticator extends AbstractFormLoginAuthenticator\n$userArr = [\n'id' => $user->getId(),\n'username' => $user->getU...
PHP
MIT License
bolt/core
More detailed logging when logging in and logging out
95,144
08.11.2021 15:30:50
-3,600
cce407cd4f66152e1eb3121dcd0e3f19b5cecb30
Redirect 'GET on Preview' link to edit page
[ { "change_type": "MODIFY", "old_path": "src/Controller/Frontend/DetailController.php", "new_path": "src/Controller/Frontend/DetailController.php", "diff": "@@ -36,11 +36,6 @@ class DetailController extends TwigAwareController implements FrontendZoneInterf\n* name=\"record_locale\",\n* requirements={...
PHP
MIT License
bolt/core
Redirect 'GET on Preview' link to edit page
95,121
10.11.2021 15:05:07
-3,600
816f7936f51d93054981b9edfff81da580e9e592
An empty image alt made the page throw an error If you created a field with no alt attribute it returns an error in the standard skeleton theme
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/partials/_image.twig", "new_path": "public/theme/skeleton/partials/_image.twig", "diff": "<a href=\"{{ record|image }}\">\n<img src=\"{{ thumbnail(record, 1368, 1026) }}\" alt=\"{{ (record|image).alt|default(record|title) }}\">\n</a>\n- {...
PHP
MIT License
bolt/core
An empty image alt made the page throw an error If you created a field with no alt attribute it returns an error in the standard skeleton theme
95,151
12.11.2021 00:21:13
-3,600
5821ac712a17c8f1b9cc3e538fa614769c9b4159
fix(setup-command): skip creating the database if it already exists
[ { "change_type": "MODIFY", "old_path": "src/Command/SetupCommand.php", "new_path": "src/Command/SetupCommand.php", "diff": "@@ -47,7 +47,7 @@ class SetupCommand extends Command\n// See: https://github.com/doctrine/DoctrineBundle/issues/542\n$options = ['-q' => true];\nif ($this->connection->getDatab...
PHP
MIT License
bolt/core
fix(setup-command): skip creating the database if it already exists
95,151
12.11.2021 01:20:58
-3,600
8e70837fc37ca043f930dd9a55d5155f6e28cb20
fix(configuration): use environment variables into config settings
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -189,10 +189,10 @@ class Config\n{\n$value = Arr::get($this->data, $path, $default);\n- // Basic getenv parser, for values like `%env(FOO_BAR)%`\n+ // Basic $_ENV parser, fo...
PHP
MIT License
bolt/core
fix(configuration): use environment variables into config settings
95,147
12.11.2021 10:24:04
-3,600
6d72726a15a38371f54b6f16efdfe34c51b6d6d7
Allow overriding field twig templates
[ { "change_type": "MODIFY", "old_path": "templates/content/_fields.html.twig", "new_path": "templates/content/_fields.html.twig", "diff": "{# Three-step include: first try a 'built-in' fieldtype, then a field added by\nan Extension, and fall back to 'generic' field type #}\n{% include [\n+ fielddefin...
PHP
MIT License
bolt/core
Allow overriding field twig templates
95,193
14.11.2021 00:37:13
-25,200
c3a17112251bc0ca7e7fb861f9e77ba3aceb6d6a
fix 2932 prop backendPrefix cause empty toolbar
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/SelectBox.vue", "new_path": "assets/js/app/listing/Components/SelectBox.vue", "diff": "@@ -57,7 +57,7 @@ export default {\nplural: String,\nlabels: Object,\ncsrftoken: String,\n- backendPrefix: RegExp,\n+ backendPrefix: String,...
PHP
MIT License
bolt/core
fix 2932 prop backendPrefix cause empty toolbar
95,121
15.11.2021 09:50:49
-3,600
724551f53b6f3ade58538867312b584f6a0cb5e6
Little typo :) There was a typo in the welcome command
[ { "change_type": "MODIFY", "old_path": "src/Command/WelcomeCommand.php", "new_path": "src/Command/WelcomeCommand.php", "diff": "@@ -50,7 +50,7 @@ HELP\n$io->note('If you wish to continue with SQLite, you can answer \\'Y\\' to the next question. If you\\'d like to use MySQL or PostgreSQL, answer \\'n...
PHP
MIT License
bolt/core
Little typo :) There was a typo in the welcome command
95,144
16.11.2021 11:38:38
-3,600
c8724fbf1221447b2cfdf3c08024be977732d59f
Remove reference to python executable (and node-sass)
[ { "change_type": "MODIFY", "old_path": "SETUP.md", "new_path": "SETUP.md", "diff": "@@ -82,12 +82,13 @@ Alternatively, run `make db-reset`, on a UNIX-like system.\n---------------------\nTo set up initially, run `npm install` to get the required dependencies /\n-`node_modules`. Alternatively give th...
PHP
MIT License
bolt/core
Remove reference to python executable (and node-sass)
95,144
17.11.2021 16:36:26
-3,600
975ef202d4dc40590f8773fc55f4da60b0ee37fd
Update link to Cypress
[ { "change_type": "MODIFY", "old_path": "SETUP.md", "new_path": "SETUP.md", "diff": "@@ -136,10 +136,9 @@ Testing\nBolt uses several testing frameworks for [different test layers][fowler]:\n-- unit: PHPSpec, PHPUnit, Jest\n+- unit: PHPSpec, PHPUnit\n- integration (of Symfony services): PHPUnit with K...
PHP
MIT License
bolt/core
Update link to Cypress
95,144
17.11.2021 17:46:44
-3,600
cf66bc8cdfceea317d95da745e9181d5ea85b290
Fix regex for email pattern
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -208,6 +208,7 @@ showcases:\nemail:\ntype: email\ninfo: \"This is an <i>info box</i> shown as a popover next to the field label.\"\n+ pattern: email\nembed:\ntype: embed\n...
PHP
MIT License
bolt/core
Fix regex for email pattern
95,151
21.11.2021 01:33:05
-3,600
dd34798c013e77e34c2f9d6b1f73484a241ae399
fix(fixtures): non existent data mapped for fields of type select
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Select.vue", "new_path": "assets/js/app/editor/Components/Select.vue", "diff": "@@ -103,15 +103,22 @@ export default {\n},\n},\nmounted() {\n- const _values = this.value.map ? this.value : [this.value];\n+ const _values = !this....
PHP
MIT License
bolt/core
fix(fixtures): non existent data mapped for fields of type select
95,151
21.11.2021 16:00:40
-3,600
322178e3a7f1930948fd6dc28500acd1b6c64111
chore(local-stack): skip database creation if exist and node 17 openssl3 issues with webpack
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -69,7 +69,7 @@ full-test: ## to run full tests\nmake test\ndb-create: ## to create database and load fixtures\n- bin/console doctrine:database:create\n+ bin/console doctrine:database:create --if-not-exists\nbin/co...
PHP
MIT License
bolt/core
chore(local-stack): skip database creation if exist and node 17 openssl3 issues with webpack
95,168
26.11.2021 13:18:25
-3,600
d72104fd713c28629351ab908e99bbe5a70bcd81
Make it possible to add custom class in Select field
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/select.html.twig", "new_path": "templates/_partials/fields/select.html.twig", "diff": "{% block field %}\n<editor-select\n- :classname=\"{{ \"wide-options\"|json_encode }}\"\n+ :classname=\"{{ ['wide-options ', class]|join|json_encod...
PHP
MIT License
bolt/core
Make it possible to add custom class in Select field
95,151
26.11.2021 21:27:30
-3,600
e15d74d4f06c25049960580208795fc400b97fb2
chore(webpack): improve webpack configuration for local environment - run encore automatically with docker - add hash to file name for avoid cache issues (local environment)
[ { "change_type": "MODIFY", "old_path": "docker-compose.yml", "new_path": "docker-compose.yml", "diff": "@@ -47,6 +47,10 @@ services:\nvolumes:\n- ./:/home/node/app\nworking_dir: /home/node/app\n+ command:\n+ - ./node_modules/.bin/encore\n+ - dev\n+ - --watch\npadm:\nimage: phpmyadmin/phpmyadmin\n" ...
PHP
MIT License
bolt/core
chore(webpack): improve webpack configuration for local environment - run encore automatically with docker - add hash to file name for avoid cache issues (local environment)
95,177
28.11.2021 11:00:57
-3,600
3c9b750935ea90642756003ae493110b7ce239aa
Check on null value added to calling setCurrentLocale to prevent null value parameter
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -301,7 +301,7 @@ class Field implements FieldInterface, TranslatableInterface\npublic function setLocale(?string $locale): self\n{\n- $this->setCurrentLocale($locale);\n+ $this->setCurrentL...
PHP
MIT License
bolt/core
Check on null value added to calling setCurrentLocale to prevent null value parameter
95,144
28.11.2021 11:46:45
-3,600
6bacf788c4349534056b74d4f671f0b5ec238040
Allow passing in string in `getTitle`, to give friendlier notice
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentExtension.php", "new_path": "src/Twig/ContentExtension.php", "diff": "@@ -183,10 +183,13 @@ class ContentExtension extends AbstractExtension\nreturn '(untitled)';\n}\n- public function getTitle(?Content $content, string $locale = '', int $lengt...
PHP
MIT License
bolt/core
Allow passing in string in `getTitle`, to give friendlier notice
95,144
27.11.2021 16:04:58
-3,600
e1f2075056875cbc72fe9d8118ccd561ba039a15
Tweaking Caching Decorator
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -10,8 +10,7 @@ secret: '%env(APP_SECRET)%'\n# Set the caching configuration for various areas of Bolt.\n# The expires_after is counted in seconds.\ncaching:\n- related_options: true\n...
PHP
MIT License
bolt/core
Tweaking Caching Decorator
95,144
27.11.2021 16:13:34
-3,600
bbbdc5f6d6bc1d475c40ef9466f2903ac1faf682
Cache canonical (for a little while)
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -11,6 +11,7 @@ secret: '%env(APP_SECRET)%'\n# The expires_after is counted in seconds.\ncaching:\nrelated_options: 600\n+ canonical: 10\n# The theme to use.\n#\n" }, { "change...
PHP
MIT License
bolt/core
Cache canonical (for a little while)
95,144
27.11.2021 16:56:06
-3,600
15321728618e02289a3c01bcab3a1a4ef14133c0
Ensure we use tags in our caches
[ { "change_type": "MODIFY", "old_path": "src/Cache/CachingTrait.php", "new_path": "src/Cache/CachingTrait.php", "diff": "@@ -16,7 +16,10 @@ trait CachingTrait\nprivate $stopwatch;\n/** @var string */\n- private $cacheKey;\n+ private $cacheKey = '';\n+\n+ /** @var array */\n+ private $cacheTags = [];\...
PHP
MIT License
bolt/core
Ensure we use tags in our caches
95,144
27.11.2021 17:37:06
-3,600
075cc7007db467f7ff1fb905ebc016d6ad902821
Cache JsonRecords
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -13,6 +13,7 @@ caching:\nrelated_options: 600\ncanonical: 10\nselectoptions: 600\n+ content_array: 600\n# The theme to use.\n#\n" }, { "change_type": "MODIFY", "old_path":...
PHP
MIT License
bolt/core
Cache JsonRecords
95,144
28.11.2021 12:39:47
-3,600
ad07b68bfe51099c722780bcac09111fd5944a11
Add config options for Frontend and BackendMenu
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -10,10 +10,12 @@ secret: '%env(APP_SECRET)%'\n# Set the caching configuration for various areas of Bolt.\n# The expires_after is counted in seconds.\ncaching:\n- related_options: 600\...
PHP
MIT License
bolt/core
Add config options for Frontend and BackendMenu
95,191
26.11.2021 12:37:06
-3,600
729b23ec44bb72bb0b36f76a605cd6bded2ad263
Fix the date format expected for params like 'today'
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -10,6 +10,7 @@ use Bolt\\Doctrine\\JsonHelper;\nuse Bolt\\Entity\\Field\\CheckboxField;\nuse Bolt\\Entity\\Field\\NumberField;\nuse Bolt\\Entity\\Field\\SelectField;\n+use Car...
PHP
MIT License
bolt/core
Fix the date format expected for params like 'today'
95,191
26.11.2021 13:18:42
-3,600
d0a43ea1ced7467a4bee6995c470bfa88ab7c0ce
Fix the phpstan :smile:
[ { "change_type": "MODIFY", "old_path": "src/Storage/SelectQuery.php", "new_path": "src/Storage/SelectQuery.php", "diff": "@@ -330,7 +330,7 @@ class SelectQuery implements QueryInterface\n$fieldName = preg_replace('/(_[0-9]+)$/', '', $key);\n// Use strtotime on 'date' fields to allow selections like ...
PHP
MIT License
bolt/core
Fix the phpstan :smile:
95,191
23.11.2021 14:29:04
-3,600
96d2db5ba100b77cbcb2814f1159c3723801c075
Fixed a few cypress tests again
[ { "change_type": "MODIFY", "old_path": "tests/cypress/integration/edit_record_1_field.spec.js", "new_path": "tests/cypress/integration/edit_record_1_field.spec.js", "diff": "@@ -46,11 +46,11 @@ describe('As an Admin, I want to reset an image field', () => {\ncy.get('a[id=\"media-tab\"]').click();\nc...
PHP
MIT License
bolt/core
Fixed a few cypress tests again
95,144
20.11.2021 12:58:08
-3,600
5a2b7f51e4978350bc6ae34e3bf47757a79c1324
Bumping versions of Glide and PHPStan
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"jasny/twig-extensions\": \"^1.3\",\n\"knplabs/doctrine-behaviors\": \"^2.1\",\n\"knplabs/knp-menu-bundle\": \"^3.1\",\n- \"league/glide-symfony\": \"^1.0\",\n+ \"league/glide-symfony\": \"^2.1\",\n\"milja...
PHP
MIT License
bolt/core
Bumping versions of Glide and PHPStan
95,144
28.11.2021 16:02:21
-3,600
bbcab45e873a2c07227c72385fa5b596c6aba309
Fix HtmlInjector
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/HtmlInjector.php", "new_path": "src/Widget/Injector/HtmlInjector.php", "diff": "@@ -80,7 +80,7 @@ class HtmlInjector\n$snippet = $widget() . \"\\n\";\n// If the widget doesn't produce output, there's no need to inject it.\n- if (mb_strlen($...
PHP
MIT License
bolt/core
Fix HtmlInjector
95,191
23.11.2021 13:20:07
-3,600
922d2b2378e0439f0b8e5f7fc67c381077625247
Add new tests and fix old ones This should work :D
[ { "change_type": "ADD", "old_path": null, "new_path": "tests/cypress/integration/api_getcontent.spec.js", "diff": "+/// <reference types=\"cypress\" />\n+\n+describe('As a user I want to fetch all contents of an API' , () => {\n+ it('Checks that GET response equals 200', () => {\n+ cy.login();\n+ cy...
PHP
MIT License
bolt/core
Add new tests and fix old ones This should work :D