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
16.11.2018 16:59:44
-3,600
6adbd74568cca26225547b62ad4e1e8919b939a1
Set the locale from the submitted locales array
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/UserController.php", "new_path": "src/Controller/Backend/UserController.php", "diff": "@@ -51,7 +51,7 @@ class UserController extends BaseController\n$user = $this->getUser();\n$userTitle = $user->getFullName();\n$url = $urlGenerator->ge...
PHP
MIT License
bolt/core
Set the locale from the submitted locales array
95,168
16.11.2018 17:05:41
-3,600
3440d8aefd1c3a57205d0427eb888dc73dc6a890
Delete ChangePasswordType.php
[ { "change_type": "DELETE", "old_path": "src/Form/ChangePasswordType.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Form;\n-\n-use Symfony\\Component\\Form\\AbstractType;\n-use Symfony\\Component\\Form\\Extension\\Core\\Type\\PasswordType;\n-use Symfony\\Co...
PHP
MIT License
bolt/core
Delete ChangePasswordType.php
95,144
16.11.2018 17:16:29
-3,600
34efe3c4c82000d18536fe9eac6ce7d542791b80
Refactoring conrtollers and their constructor
[ { "change_type": "MODIFY", "old_path": "src/Controller/Async/News.php", "new_path": "src/Controller/Async/News.php", "diff": "@@ -104,10 +104,10 @@ final class News\n$client = new Client(['base_uri' => $source]);\n$fetchedNewsData = $client->request('GET', '/', $options)->getBody();\n} catch (Reques...
PHP
MIT License
bolt/core
Refactoring conrtollers and their constructor
95,144
16.11.2018 17:33:41
-3,600
c81798be813ac16df138f7595e6c2139d2c1b0d5
Working on Controllers
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/EditRecordController.php", "new_path": "src/Controller/Backend/EditRecordController.php", "diff": "@@ -4,7 +4,6 @@ declare(strict_types=1);\nnamespace Bolt\\Controller\\Backend;\n-use Bolt\\Configuration\\Config;\nuse Bolt\\Controller\\B...
PHP
MIT License
bolt/core
Working on Controllers
95,149
16.11.2018 18:55:31
-3,600
20dc4b609b9e531af832388d8be56adb7f32d4b0
Install npm in travis
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -22,10 +22,12 @@ matrix:\nbefore_install:\n- '[[ \"$TRAVIS_PHP_VERSION\" == \"nightly\" ]] || phpenv config-rm xdebug.ini'\n- composer self-update\n+ - nvm install 8.2\ninstall:\n- composer install\n- ./bin/...
PHP
MIT License
bolt/core
Install npm in travis
95,149
16.11.2018 18:57:07
-3,600
6cf41b2c0d34cb88e2d23c30690d0c583c9d001f
Add jest unittest execution to travis
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -45,3 +45,5 @@ script:\n- composer validate --strict\n# this checks that Doctrine's mapping configurations are valid\n- ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction\n+ # run jest ...
PHP
MIT License
bolt/core
Add jest unittest execution to travis
95,149
16.11.2018 22:48:46
-3,600
7e549fd257a9b1ecd89882f6098bcd1badcf7fe6
Add eslint and prettier as linter
[ { "change_type": "ADD", "old_path": null, "new_path": ".eslintrc.js", "diff": "+module.exports = {\n+ root: true,\n+ env: {\n+ node: true\n+ },\n+ extends: [\n+ \"plugin:vue/essential\",\n+ \"plugin:prettier/recommended\",\n+ \"eslint:recommended\"\n+ ],\n+ rules: {\n+ \"no-console\": process.env.NO...
PHP
MIT License
bolt/core
Add eslint and prettier as linter
95,144
17.11.2018 15:01:28
-3,600
dc49d3ef634b5c55b5e30102023f13aa048698f6
Clean up Dashboardcontroller
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/DashboardController.php", "new_path": "src/Controller/Backend/DashboardController.php", "diff": "@@ -18,13 +18,16 @@ class DashboardController extends BaseController\n{\n/**\n* @Route(\"/\", name=\"bolt_dashboard\")\n- * was: (\"/{vueRou...
PHP
MIT License
bolt/core
Clean up Dashboardcontroller
95,144
17.11.2018 15:50:44
-3,600
f4b43de4da785864fc414afb9cd4e4b0d6978004
Fixing up content_overview controller
[ { "change_type": "MODIFY", "old_path": "src/Content/MenuBuilder.php", "new_path": "src/Content/MenuBuilder.php", "diff": "@@ -79,7 +79,7 @@ class MenuBuilder\nforeach ($contenttypes as $contenttype) {\n$menu->addChild($contenttype['slug'], [\n- 'uri' => $this->urlGenerator->generate('bolt_contentlis...
PHP
MIT License
bolt/core
Fixing up content_overview controller
95,144
17.11.2018 16:17:22
-3,600
78c0d562ddcdff7fe648fe4c3a2afa158db02200
Adding Omnisearch controller
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -82,7 +82,13 @@ class ContentEditController extends BaseController\nreturn new RedirectResponse($url);\n}\n- private function content...
PHP
MIT License
bolt/core
Adding Omnisearch controller
95,144
17.11.2018 16:39:09
-3,600
6f7e403e560559dc362cd6ae38c2a3bd322c8c01
Create ResetPasswordController.php
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Controller/Backend/ResetPasswordController.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Controller\\Backend;\n+\n+use Bolt\\Controller\\BaseController;\n+use Symfony\\Component\\HttpFoundation\\Response;\n+use Sym...
PHP
MIT License
bolt/core
Create ResetPasswordController.php
95,144
17.11.2018 16:49:51
-3,600
0004093260471f2bd1880e305e856ec3b13978f2
Adding FixturesController and DatabaseIntegrityController
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Controller/Backend/DatabaseIntegrityController.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Controller\\Backend;\n+\n+use Bolt\\Controller\\BaseController;\n+use Symfony\\Component\\HttpFoundation\\Response;\n+use...
PHP
MIT License
bolt/core
Adding FixturesController and DatabaseIntegrityController
95,144
17.11.2018 17:39:10
-3,600
57ea474da78eeeb020e72765bb160f3b405520f2
Rename Finder to Filemanager, split users
[ { "change_type": "MODIFY", "old_path": "src/Content/MenuBuilder.php", "new_path": "src/Content/MenuBuilder.php", "diff": "@@ -157,7 +157,7 @@ class MenuBuilder\n]);\n$menu['Configuration']->addChild('All configuration files', [\n- 'uri' => $this->urlGenerator->generate('bolt_finder', ['area' => 'con...
PHP
MIT License
bolt/core
Rename Finder to Filemanager, split users
95,144
17.11.2018 17:45:13
-3,600
4fef9136b2d6f38a93456e10da05e9283fa9b93d
Tweaking File edit routes
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/README.md", "new_path": "public/theme/skeleton/README.md", "diff": "@@ -9,3 +9,5 @@ Features:\n- Simple design, function over form.\n- Uses [Sakura](https://github.com/oxalorg/sakura) as a minimal CSS theme.\n- No Javascript.\n+\n+ Aw yis...
PHP
MIT License
bolt/core
Tweaking File edit routes
95,144
17.11.2018 18:12:18
-3,600
fff67d3629ce25dab820de282a9c8a90492f4826
Tweaking PHPDOC for backend controllers
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/AuthenticationController.php", "new_path": "src/Controller/Backend/AuthenticationController.php", "diff": "@@ -9,6 +9,9 @@ use Symfony\\Component\\HttpFoundation\\Response;\nuse Symfony\\Component\\Routing\\Annotation\\Route;\nuse Symfon...
PHP
MIT License
bolt/core
Tweaking PHPDOC for backend controllers
95,112
19.11.2018 00:20:22
-3,600
f6a65405565fd04e502ffa8b222030dba4c10817
add new commands to Makefile
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "+install:\n+ composer install\n+ npm install\n+ npm run build\n+\n+start:\n+ make install\n+ make db-create\n+ make server\n+\n+server:\n+ bin/console server:start\n+\ncsclear:\nmkdir -p var/cache/ecs\nchmod -R a+rw ...
PHP
MIT License
bolt/core
add new commands to Makefile
95,180
19.11.2018 12:37:13
-3,600
faa6402ef924b66b3ea17c3d8fb7abd773b7d808
switched out flagkit-web for flagpack
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/General/Language/Language.vue", "new_path": "assets/js/app/editor/Components/General/Language/Language.vue", "diff": ">\n<template slot=\"singleLabel\" slot-scope=\"props\">\n<span\n- class=\"flag mr-1\"\n- :class=\"props.option...
PHP
MIT License
bolt/core
switched out flagkit-web for flagpack
95,112
19.11.2018 17:24:42
-3,600
853d86ba5f3de3c3fc8a7d3a934edfcb74a7a7d6
Travis config updated, ECS config fine-tuned, some CS fixes applied
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -31,8 +31,10 @@ install:\nscript:\n- ./bin/phpunit\n- # this checks that the source code follows the Symfony Code Syntax rules\n- - '[[ \"$TRAVIS_PHP_VERSION\" == \"nightly\" ]] || ./vendor/bin/php-cs-fixer ...
PHP
MIT License
bolt/core
Travis config updated, ECS config fine-tuned, some CS fixes applied
95,168
19.11.2018 17:27:36
-3,600
f995458b66501120aa03affdd99287e8e88dac51
Add Email field and update component names
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/js/Components/Email/Email.vue", "diff": "+<template>\n+ <div>\n+ <input\n+ type=\"email\"\n+ :id=\"id\"\n+ :name=\"name\"\n+ :value=\"value\"\n+ class=\"form-control\"\n+ />\n+ </div>\n+</template>\n+\n+<script>\n+export default {\n+ name...
PHP
MIT License
bolt/core
Add Email field and update component names
95,112
19.11.2018 17:27:57
-3,600
2629865441f77f7bfcfb277addf3a4b8087855c0
another CS fixes, still 38 errors to be fixed manually
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -172,7 +172,7 @@ class Content\npublic function getSummary(): array\n{\n- $summary = [\n+ return [\n'id' => $this->getid(),\n'contenttype' => $this->getDefinition()->get('slug'),\n'slug...
PHP
MIT License
bolt/core
another CS fixes, still 38 errors to be fixed manually
95,112
19.11.2018 18:11:17
-3,600
60154487bf11b43a5c342b61b754811122952911
fix doctrine deprecated class
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"api-platform/api-pack\": \"^1.1\",\n\"bolt/common\": \"^2.0\",\n\"cocur/slugify\": \"^3.1\",\n+ \"doctrine/common\": \"2.8.1\",\n\"erusev/parsedown\": \"^1.7\",\n\"ezyang/htmlpurifier\": \"^4.10\",\n\"fza...
PHP
MIT License
bolt/core
fix doctrine deprecated class
95,144
19.11.2018 21:49:16
-3,600
b35f48e8c73bb4399d5fdc1d732b7e4bf9c488ab
Working on code quality
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -8,7 +8,6 @@ use Bolt\\Common\\Arr;\nuse Bolt\\Configuration\\Parser\\ContentTypesParser;\nuse Bolt\\Configuration\\Parser\\GeneralParser;\nuse Bolt\\Configuration\\Parser\\...
PHP
MIT License
bolt/core
Working on code quality
95,124
20.11.2018 00:39:03
-3,600
6c5691c5abf9302c430ef84d08a933bfa8436645
add button clear cache
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ClearCacheController.php", "new_path": "src/Controller/Backend/ClearCacheController.php", "diff": "@@ -5,6 +5,7 @@ namespace Bolt\\Controller\\Backend;\nuse Symfony\\Bundle\\FrameworkBundle\\Console\\Application;\nuse Symfony\\Component\...
PHP
MIT License
bolt/core
add button clear cache
95,144
20.11.2018 07:53:26
-3,600
03f2e6221d45edf7878bed7f413bc454e9fdb31c
CS fixes, capture output
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ClearCacheController.php", "new_path": "src/Controller/Backend/ClearCacheController.php", "diff": "<?php\n+declare(strict_types=1);\n+\nnamespace Bolt\\Controller\\Backend;\n+use Bolt\\Controller\\BaseController;\nuse Symfony\\Bundle\\Fr...
PHP
MIT License
bolt/core
CS fixes, capture output
95,144
20.11.2018 07:53:59
-3,600
386f921821f292bb413bcbff117628a5b07ea206
Display output
[ { "change_type": "MODIFY", "old_path": "templates/clearcache/clearcache.html.twig", "new_path": "templates/clearcache/clearcache.html.twig", "diff": "{% block main %}\n+ <pre style=\"font-family: monospace; border: 1px solid #BBB; background: #DDD; padding: 1rem; font-size: 0.8rem; line-height: 1.0r...
PHP
MIT License
bolt/core
Display output
95,168
20.11.2018 10:27:22
-3,600
c130b77a574ba4cdb07395e715dc2cc61d5e8508
Remove div wrappers for password and email
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/email.html.twig", "new_path": "templates/_partials/fields/email.html.twig", "diff": "{% extends '@bolt/_partials/fields/_base.html.twig' %}\n{% block field %}\n- <div id=\"user-email\">\n<field-email\n:id=\"'{{ id }}'\"\n:name=\"'{{ ...
PHP
MIT License
bolt/core
Remove div wrappers for password and email
95,168
20.11.2018 10:55:44
-3,600
bd19aec1768b9456669b90ab0d12c7f9beb95e8d
Add togglePassword method to make password visible
[ { "change_type": "MODIFY", "old_path": "assets/js/Components/Password/Password.vue", "new_path": "assets/js/Components/Password/Password.vue", "diff": "autocomplete=\"new-password\"\n/>\n- <i class=\"input-group-text fas fa-eye\"></i>\n+ <i class=\"input-group-text fas fa-eye\" @click=\"togglePasswo...
PHP
MIT License
bolt/core
Add togglePassword method to make password visible
95,168
20.11.2018 11:29:11
-3,600
a9dd47a3b0aa2258999b2fa7992d9576d94a57b1
Toggle eye icon when password is viewed or hidden
[ { "change_type": "MODIFY", "old_path": "assets/js/Components/Password/Password.vue", "new_path": "assets/js/Components/Password/Password.vue", "diff": "@@ -21,13 +21,16 @@ export default {\nprops: [\"value\", \"name\", \"id\"],\nmethods: {\ntogglePassword: function(event) {\n+ let iconElement = even...
PHP
MIT License
bolt/core
Toggle eye icon when password is viewed or hidden
95,144
20.11.2018 12:11:43
-3,600
e249bc58638e777f9546b7ef9da87482b190c9b2
Tweaking typehints.
[ { "change_type": "MODIFY", "old_path": "src/Twig/ArrayExtension.php", "new_path": "src/Twig/ArrayExtension.php", "diff": "@@ -4,6 +4,7 @@ declare(strict_types=1);\nnamespace Bolt\\Twig;\n+use Bolt\\Entity\\Content;\nuse Twig\\Extension\\AbstractExtension;\nuse Twig\\TwigFilter;\nuse Twig\\TwigFuncti...
PHP
MIT License
bolt/core
Tweaking typehints.
95,144
21.11.2018 17:58:06
-3,600
965ba6843f09f92cd1787e3be6646f6cb35a39da
Working on CS some more.
[ { "change_type": "MODIFY", "old_path": "src/Content/MediaFactory.php", "new_path": "src/Content/MediaFactory.php", "diff": "@@ -65,6 +65,10 @@ class MediaFactory\n->setArea($area);\n}\n+ if (! in_array($file->getExtension(), $this->mediatypes, true)) {\n+ die('Not a valid media type.');\n+ }\n+\n$me...
PHP
MIT License
bolt/core
Working on CS some more.
95,144
21.11.2018 20:14:12
-3,600
227b40a1aff3d42b3a2e6c8d95647a43c9115808
Working on CS
[ { "change_type": "MODIFY", "old_path": "src/Controller/Async/Uploader.php", "new_path": "src/Controller/Async/Uploader.php", "diff": "@@ -74,7 +74,7 @@ class Uploader\n$messages = $result->getMessages();\n}\n- return new Response('Not OK: ' . implode(', ', $messages));\n+ return new Response('Not OK...
PHP
MIT License
bolt/core
Working on CS
95,144
21.11.2018 21:29:38
-3,600
ae7f85b1cbd75787341ad77a6355daca9b841129
Update composer (to fix Travis)
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"api-platform/api-pack\": \"^1.1\",\n\"bolt/common\": \"^2.0\",\n\"cocur/slugify\": \"^3.1\",\n- \"doctrine/common\": \"2.8.1\",\n+ \"doctrine/common\": \"^2.8\",\n\"erusev/parsedown\": \"^1.7\",\n\"ezyang...
PHP
MIT License
bolt/core
Update composer (to fix Travis)
95,144
23.11.2018 12:34:06
-3,600
c5bde2b7d03c396b47922d5d5717a02a1bbd281a
Throw Exception instead of die()-ing.
[ { "change_type": "MODIFY", "old_path": "src/Content/MediaFactory.php", "new_path": "src/Content/MediaFactory.php", "diff": "@@ -52,6 +52,9 @@ class MediaFactory\n$this->mediatypes = $config->getMediaTypes();\n}\n+ /**\n+ * @throws \\Exception\n+ */\npublic function createOrUpdateMedia(SplFileInfo $f...
PHP
MIT License
bolt/core
Throw Exception instead of die()-ing.
95,144
23.11.2018 12:56:06
-3,600
d83ceb0a561fa63fcf62f2c300268b8c845dec57
Keep `@todo` formatting consistent.
[ { "change_type": "MODIFY", "old_path": "src/Content/MediaFactory.php", "new_path": "src/Content/MediaFactory.php", "diff": "@@ -71,7 +71,7 @@ class MediaFactory\n}\nif (! $this->mediatypes->contains($file->getExtension())) {\n- // Todo: We're throwing a generic Exception here. Needs to be handled be...
PHP
MIT License
bolt/core
Keep `@todo` formatting consistent.
95,144
24.11.2018 18:24:20
-3,600
77770d7d0bb5577626e6395d6e7b8289f4e2408c
Getting more work done!
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -103,7 +103,7 @@ class ContentEditController extends BaseController\n$field = $content->getLocalisedField($key, $locale);\n} else {\n...
PHP
MIT License
bolt/core
Getting more work done!
95,144
25.11.2018 18:07:42
-3,600
a086af0561e0816268afd006b3a18e7c5123b8f7
Clean up labels, postfix and prefix
[ { "change_type": "DELETE", "old_path": "assets/js/app/editor/Components/Editor/_Partials/Helper.vue", "new_path": "assets/js/app/editor/Components/Editor/_Partials/Helper.vue", "diff": "" }, { "change_type": "DELETE", "old_path": "assets/js/app/editor/Components/Editor/_Partials/Label.vu...
PHP
MIT License
bolt/core
Clean up labels, postfix and prefix
95,168
26.11.2018 16:51:43
-3,600
2ec16aa9f2f76ddd2b6ded9a89f2ca6825c14994
Remove TODOs in login.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/security/login.html.twig", "new_path": "templates/security/login.html.twig", "diff": "{% endif %}\n<form action=\"{{ path('bolt_login') }}\" method=\"post\" class=\"\" id=\"login-form\">\n- {# TODO: Add _target_path hidden input as Vue Component #}\n...
PHP
MIT License
bolt/core
Remove TODOs in login.html.twig
95,144
26.11.2018 17:41:33
-3,600
2091921b5741b8008b6ae95414f47a55180f80fc
Updating link to security checker to security.symfony.com
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -42,7 +42,7 @@ script:\n# this checks that the XLIFF translations contain no syntax errors\n- ./bin/console lint:xliff translations\n# this checks that the application doesn't use dependencies with known sec...
PHP
MIT License
bolt/core
Updating link to security checker to security.symfony.com
95,144
26.11.2018 20:38:54
-3,600
a301c677c8cc2c99ef0e1facbb7f7942a8296338
Updating travis again, no url needed.
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -42,7 +42,7 @@ script:\n# this checks that the XLIFF translations contain no syntax errors\n- ./bin/console lint:xliff translations\n# this checks that the application doesn't use dependencies with known sec...
PHP
MIT License
bolt/core
Updating travis again, no url needed.
95,132
27.11.2018 10:45:22
-3,600
ea9ef0fed727cd6f4b0a78351aff49d5c4af0952
Remove references to Label component
[ { "change_type": "MODIFY", "old_path": "assets/js/Views/user.js", "new_path": "assets/js/Views/user.js", "diff": "@@ -6,7 +6,6 @@ import Theme from \"../Components/User/Theme\";\nimport Password from \"../Components/Password/Password\";\nimport Email from \"../Components/Email/Email\";\nimport Text ...
PHP
MIT License
bolt/core
Remove references to Label component
95,132
27.11.2018 11:58:29
-3,600
882bcd03b6def1814e33be1d0f05a46e52c45392
Remove references to `editor-label` component
[ { "change_type": "MODIFY", "old_path": "assets/js/Views/editor.js", "new_path": "assets/js/Views/editor.js", "diff": "@@ -29,7 +29,5 @@ Vue.component(\"editor-image\", Image);\n/**\n* Register Partial Components\n*/\n-Vue.component(\"editor-label\", Label);\n-\nnew Vue({ el: \"#editcontent\", name: ...
PHP
MIT License
bolt/core
Remove references to `editor-label` component
95,144
27.11.2018 12:34:07
-3,600
9130b138a35d884d3fda2cb7ab3e02073e6a79d2
Making fixtures work again
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -49,7 +49,8 @@ class ContentFixtures extends Fixture implements DependentFixtureInterface\n$amount = $contentType['singleton'] ? 1 : 15;\nforeach (range(1, $...
PHP
MIT License
bolt/core
Making fixtures work again
95,144
28.11.2018 17:38:15
-3,600
2ea31c91fb33e167c0e0ec7bb797b823a075b267
Update number.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/number.html.twig", "new_path": "templates/_partials/fields/number.html.twig", "diff": "{# set step #}\n{% if step is not defined and mode == 'integer' %}\n{% set step = define.step|default(0.5) %}\n- {% else %}\n+ {% elseif mode == '...
PHP
MIT License
bolt/core
Update number.html.twig
95,144
29.11.2018 13:04:43
-3,600
e585eb705cdcc303a76d5bc3110302cf62ba586e
Update 'linuxy' to 'UNIX-like'
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -26,7 +26,7 @@ To install Bolt 4 (for now):\n- Run `composer install`\n- Run `npm install && npm run build`\n-Alternatively, run `make install`, on a Linuxy system.\n+Alternatively, run `make install`, on a UNIX...
PHP
MIT License
bolt/core
Update 'linuxy' to 'UNIX-like'
95,168
29.11.2018 16:32:23
-3,600
390e93c45f5cdb6f030a5dc05e21aa821da6aa9d
Update embed.html.twig and remove video.html.twig
[ { "change_type": "DELETE", "old_path": "templates/_partials/fields/video.html.twig", "new_path": null, "diff": "-{% extends '@bolt/_partials/fields/_base.html.twig' %}\n-\n-{% block field %}\n- <input name=\"{{ name }}\" placeholder=\"First Name\" type=\"text\" value=\"{{ value }}\" class=\"form-con...
PHP
MIT License
bolt/core
Update embed.html.twig and remove video.html.twig
95,180
29.11.2018 19:15:45
-3,600
9bf8c98d0516a308a253983885c2ab2d3fd50238
fixed number breaking issue
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Number/Number.vue", "new_path": "assets/js/app/editor/Components/Editor/Number/Number.vue", "diff": ":step=\"step\"\nv-model=\"val\"\n>\n- <!-- <div class=\"input-group-append\">\n- <button\n- class=\"btn btn-sm btn-secon...
PHP
MIT License
bolt/core
fixed number breaking issue
95,112
02.12.2018 00:01:43
-3,600
f890a897b24e8cc8c0c781be699152325dbd350f
add docker env
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -38,3 +38,41 @@ db-reset:\nbin/console doctrine:schema:drop --force\nbin/console doctrine:schema:create\nbin/console doctrine:fixtures:load -n\n+\n+# Dockerized commands\n+docker-install:\n+ docker-compose exec -T...
PHP
MIT License
bolt/core
add docker env
95,132
30.10.2018 12:01:52
-3,600
bf05d5aa7b75e653d6927846a25d1531b2556786
Start with `setcontent` integration
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Twig/Extension/SetcontentExtension.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Twig\\Extension;\n+\n+use Bolt\\Twig\\TokenParser\\SetcontentTokenParser;\n+use Twig\\Extension\\AbstractExtension;\n+\n+/**\n+ * Set...
PHP
MIT License
bolt/core
Start with `setcontent` integration
95,132
01.11.2018 09:32:32
-3,600
e76b25994cdec6d12598fcef6f070f0de2ed04df
(WIP) Refactor DBAL to ORM Very rough early variant with some assumptions
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -138,7 +138,7 @@ entries:\nlisting_template: listing.twig\nlisting_records: 10\ndefault_status: published\n- sort: -datepublish\n+ sort: -publishedAt\nrecordsperpage: 20\n...
PHP
MIT License
bolt/core
(WIP) Refactor DBAL to ORM Very rough early variant with some assumptions
95,132
15.11.2018 15:35:53
-3,600
b9df695b90a5b49cfd269b2e1336ad403f858870
Cast `preg_match` parameter to string (warning when integer)
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/QueryParameterParser.php", "new_path": "src/Storage/Query/QueryParameterParser.php", "diff": "@@ -16,7 +16,6 @@ class QueryParameterParser\n{\n/** @var string */\npublic $alias;\n-\n/** @var string */\nprotected $key;\n/** @var mixed */\n@@ -...
PHP
MIT License
bolt/core
Cast `preg_match` parameter to string (warning when integer)
95,132
15.11.2018 16:25:33
-3,600
1c7bc21f585a7228f151d7ca9bacc56f948fe90f
No need to check for `getOperation()` anymore and if it was needed a set of `()` was missing in the IF-statement
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/ContentQueryParser.php", "new_path": "src/Storage/Query/ContentQueryParser.php", "diff": "@@ -448,11 +448,7 @@ class ContentQueryParser\n$this->parse();\n// $parseEvent = new QueryEvent($this);\n// $this->getEntityManager()->getEventManager()...
PHP
MIT License
bolt/core
No need to check for `getOperation()` anymore and if it was needed a set of `()` was missing in the IF-statement
95,132
16.11.2018 09:40:36
-3,600
d73090b83005991e483ba6bcbebba510c69ccb50
Modify Setcontent to match current repo (without Runtime)
[ { "change_type": "DELETE", "old_path": "src/Twig/Extension/SetcontentExtension.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Twig\\Extension;\n-\n-use Bolt\\Twig\\TokenParser\\SetcontentTokenParser;\n-use Twig\\Extension\\AbstractExtension;\n-\n-/**\n- * ...
PHP
MIT License
bolt/core
Modify Setcontent to match current repo (without Runtime)
95,132
16.11.2018 10:52:26
-3,600
ced02a4f9fbefa9e87df2e6879971709cddd87f6
Return early if an empty search is attempted See:
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/Handler/SearchQueryHandler.php", "new_path": "src/Storage/Query/Handler/SearchQueryHandler.php", "diff": "@@ -34,6 +34,11 @@ class SearchQueryHandler\n$query->setContentType($contentType);\n$searchParam = $contentQuery->getParameter('filter')...
PHP
MIT License
bolt/core
Return early if an empty search is attempted See: https://github.com/bolt/bolt/commit/bd823dee5919645b8c33ba4accc487e25735fa98#diff-62941ecfac9b632f60e6d0e5a8eac524
95,132
30.11.2018 14:02:55
-3,600
77eb7d033f71c44c5f265035519d67eb2e9a3e90
Start with JOINs on `bolt_field` table
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/Handler/SelectQueryHandler.php", "new_path": "src/Storage/Query/Handler/SelectQueryHandler.php", "diff": "@@ -31,12 +31,8 @@ class SelectQueryHandler\n$contentType = str_replace('-', '_', $contentType);\n$repo = $contentQuery->getContentRepos...
PHP
MIT License
bolt/core
Start with JOINs on `bolt_field` table
95,132
27.11.2018 17:51:09
-3,600
223788902f7265da063b8b2a3e6779384e410376
Remove `random` handler
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/ContentQueryParser.php", "new_path": "src/Storage/Query/ContentQueryParser.php", "diff": "@@ -21,7 +21,6 @@ use Bolt\\Storage\\Query\\Handler\\FirstQueryHandler;\nuse Bolt\\Storage\\Query\\Handler\\IdentifiedSelectHandler;\nuse Bolt\\Storage\...
PHP
MIT License
bolt/core
Remove `random` handler
95,132
29.11.2018 14:55:01
-3,600
95e86f563fe4e9efcdd83959e7bf3ce92b9df2a9
Make queries work again and add small changes
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/Directive/OrderDirective.php", "new_path": "src/Storage/Query/Directive/OrderDirective.php", "diff": "@@ -46,7 +46,7 @@ class OrderDirective\n$direction = null;\n}\n- if (in_array($order, $this->coreFields)) {\n+ if (in_array($order, $this->c...
PHP
MIT License
bolt/core
Make queries work again and add small changes
95,132
30.11.2018 13:36:00
-3,600
5558b9c4e79f9c968b1b7cd4b79f07260c59f9f9
Directly return array of `Content` instead of `QueryResultset`
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/FrontendQueryScope.php", "new_path": "src/Storage/Query/FrontendQueryScope.php", "diff": "@@ -78,7 +78,7 @@ class FrontendQueryScope implements QueryScopeInterface\n// Setup status to only published unless otherwise specified\n$status = $quer...
PHP
MIT License
bolt/core
Directly return array of `Content` instead of `QueryResultset`
95,132
30.11.2018 16:32:49
-3,600
15c523e5b13cd453f0433b3a4daa6f53e7918e48
Remove `NativeSearchHandler` (for now)
[ { "change_type": "DELETE", "old_path": "src/Storage/Query/Adapter/PostgresSearch.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Storage\\Query\\Adapter;\n-\n-use Bolt\\Storage\\Query\\SearchConfig;\n-use Doctrine\\DBAL\\Query\\QueryBuilder;\n-\n-/**\n- * H...
PHP
MIT License
bolt/core
Remove `NativeSearchHandler` (for now)
95,132
30.11.2018 16:42:24
-3,600
09a2870350bcc14e6495cd05d1ebbb194658d7f2
Add some more type-hinting There are still a bunch of things that are not implemented yet, so not sure whether to remove them and add them later. Or keep them, and modify/delete them later.
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/ContentQueryInterface.php", "new_path": "src/Storage/Query/ContentQueryInterface.php", "diff": "@@ -8,27 +8,20 @@ interface ContentQueryInterface extends QueryInterface\n{\n/**\n* Returns the content type this query is executing on.\n- *\n- *...
PHP
MIT License
bolt/core
Add some more type-hinting There are still a bunch of things that are not implemented yet, so not sure whether to remove them and add them later. Or keep them, and modify/delete them later.
95,132
03.12.2018 14:15:11
-3,600
61c5a08adc59592ed3a45b21bf1cad59003b8208
Fix some more ECS issues
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/ContentQueryParser.php", "new_path": "src/Storage/Query/ContentQueryParser.php", "diff": "@@ -4,10 +4,10 @@ declare(strict_types=1);\nnamespace Bolt\\Storage\\Query;\n+use Bolt\\Entity\\Content;\nuse Bolt\\Events\\QueryEvent;\nuse Bolt\\Event...
PHP
MIT License
bolt/core
Fix some more ECS issues
95,132
03.12.2018 16:20:17
-3,600
16b985f162e6c28ece0e207ad2f6d0795eb3760a
Re-writing these seems not worth it
[ { "change_type": "MODIFY", "old_path": "easy-coding-standard.yml", "new_path": "easy-coding-standard.yml", "diff": "@@ -105,3 +105,6 @@ parameters:\n- 'PhpCsFixer\\Fixer\\Whitespace\\BlankLineBeforeStatementFixer'\n- 'SlevomatCodingStandard\\Sniffs\\TypeHints\\TypeHintDeclarationSniff'\n- 'Symplify\...
PHP
MIT License
bolt/core
Re-writing these seems not worth it
95,132
13.12.2018 17:32:59
-3,600
5eba811a08428593b0521ff32db42d69d2b0e155
Fix changes as per review
[ { "change_type": "MODIFY", "old_path": "easy-coding-standard.yml", "new_path": "easy-coding-standard.yml", "diff": "@@ -105,6 +105,3 @@ parameters:\n- 'PhpCsFixer\\Fixer\\Whitespace\\BlankLineBeforeStatementFixer'\n- 'SlevomatCodingStandard\\Sniffs\\TypeHints\\TypeHintDeclarationSniff'\n- 'Symplify\...
PHP
MIT License
bolt/core
Fix changes as per review
95,132
14.12.2018 15:51:28
-3,600
d1a8f35d886cfc18e83ace54b0af74e97f856de4
Run ECS check I know that `$value` can be `string` or `integer`
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/Filter.php", "new_path": "src/Storage/Query/Filter.php", "diff": "@@ -94,8 +94,6 @@ class Filter\n/**\n* Allows setting a parameter for a single key.\n- *\n- * @param mixed $value\n*/\npublic function setParameter(string $param, $value): void...
PHP
MIT License
bolt/core
Run ECS check I know that `$value` can be `string` or `integer`
95,144
14.12.2018 19:18:52
-3,600
82244abb3932d121e10b5ee8c7d335660240e112
Working on PHPStan issues
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/index.twig", "new_path": "public/theme/skeleton/index.twig", "diff": "{% endif %}\n+ <hr>\n+ {% setcontent pages = \"pages\" %}\n+\n+ <ul>\n+ {% for page in pages %}\n+ <li><a href=\"{{ page.link }}\">{{ page.title }}</a></li>\n+ {% endfo...
PHP
MIT License
bolt/core
Working on PHPStan issues
95,144
15.12.2018 16:04:41
-3,600
16765351ef0b754a1f1e3b4505de5c65a27bb68e
Update Font Awesome to 5.6.1
[ { "change_type": "MODIFY", "old_path": "src/Content/MenuBuilder.php", "new_path": "src/Content/MenuBuilder.php", "diff": "@@ -177,7 +177,7 @@ class MenuBuilder\n$menu->addChild('Maintenance', ['extras' => [\n'name' => $t->trans('caption.maintenance'),\n- 'icon' => 'fa-wrench',\n+ 'icon' => 'fa-tools...
PHP
MIT License
bolt/core
Update Font Awesome to 5.6.1
95,180
20.12.2018 10:10:24
-3,600
d87eaa066774173d5dec72ef9f28b6db147000f4
added quick fix in for mutlselect
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/js/app/editor/Components/Editor/Multiselect/Multiselect.vue", "diff": "+<template>\n+ <div>\n+ <multiselect\n+ v-model=\"option\"\n+ track-by=\"key\"\n+ label=\"value\"\n+ :options=\"options\"\n+ :searchable=\"false\"\n+ :multiple=\"true\...
PHP
MIT License
bolt/core
added quick fix in for mutlselect
95,144
21.12.2018 17:43:02
-3,600
22cd40063575c8030d0a6275a75f9f6b96a53457
Minor tweaks. YOLO-push
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_base.scss", "new_path": "assets/scss/init/_base.scss", "diff": "@@ -21,8 +21,8 @@ strong {\n.card{\nbox-shadow: $card-box-shadow;\n+ background: #FFF;\n.card-header{\n- background: transparent;\nfont-weight: $font-weight-bold;\n}\n}\n" }, ...
PHP
MIT License
bolt/core
Minor tweaks. YOLO-push
95,113
21.12.2018 21:49:01
0
9b79a93d3334af036431a83c09ee9ecee47bb27b
set findLatest querybuilder limit
[ { "change_type": "MODIFY", "old_path": "src/Repository/ContentRepository.php", "new_path": "src/Repository/ContentRepository.php", "diff": "@@ -57,6 +57,7 @@ class ContentRepository extends ServiceEntityRepository\n->setParameter('ct', $contenttype['slug']);\n}\n+ $qb->setMaxResults( $amount );\n$re...
PHP
MIT License
bolt/core
set findLatest querybuilder limit
95,144
16.12.2018 16:21:01
-3,600
f1894b12815efcc1e0ae129b7f6ab7c07ce6880a
Initial draft of working Taxonomies
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/ContentTypesParser.php", "new_path": "src/Configuration/Parser/ContentTypesParser.php", "diff": "@@ -126,6 +126,8 @@ class ContentTypesParser extends BaseParser\n// Make sure taxonomy is an array.\nif (isset($contentType['taxonomy'])) ...
PHP
MIT License
bolt/core
Initial draft of working Taxonomies
95,144
16.12.2018 18:14:32
-3,600
69670221021a9e4609ebdfea7ce64a66d7c68736
Working on taxonomies
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/ContentTypesParser.php", "new_path": "src/Configuration/Parser/ContentTypesParser.php", "diff": "@@ -143,7 +143,7 @@ class ContentTypesParser extends BaseParser\n}\nif (! empty($contentType['relations']) || ! empty($contentType['taxono...
PHP
MIT License
bolt/core
Working on taxonomies
95,144
22.12.2018 16:06:07
-3,600
fafe5994f79080ad71125bd1fa89f579c9e8ed91
Many, many random tidbits
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/scss/themes/dark.scss", "diff": "+//** Theme | Default\n+\n+@import '../init/mixins';\n+@import '_shared';\n+\n+:root{\n+\n+ --background: #2B2B2B;\n+ --foreground: #000;\n+\n+ --status-published: #08b883;\n+ --status-draft: #1078da;\n+ -...
PHP
MIT License
bolt/core
Many, many random tidbits
95,144
22.12.2018 16:06:53
-3,600
46408474c588332a5117dcaca98cc7a2457d2a55
Cleanup un twig
[ { "change_type": "MODIFY", "old_path": "templates/dashboard/dashboard.html.twig", "new_path": "templates/dashboard/dashboard.html.twig", "diff": "<i class='fas mr-2 fa-tachometer-alt'></i><strong>{{ 'caption.dashboard'|trans }}</strong>\n{% endblock title %}\n-\n-\n{% block main %}\n- {{ dump(record...
PHP
MIT License
bolt/core
Cleanup un twig
95,113
27.12.2018 22:36:25
0
f6547432ea8eefc305a6ad4d63362fc64b34d503
Update ContentRepository.php fix PHP_CodeSniffer problems and remove unnecessary array_slice
[ { "change_type": "MODIFY", "old_path": "src/Repository/ContentRepository.php", "new_path": "src/Repository/ContentRepository.php", "diff": "@@ -60,7 +60,7 @@ class ContentRepository extends ServiceEntityRepository\n$qb->setMaxResults($amount);\n$result = $qb->getQuery()->getResult();\n- return array...
PHP
MIT License
bolt/core
Update ContentRepository.php fix PHP_CodeSniffer problems and remove unnecessary array_slice
95,113
27.12.2018 22:43:40
0
9f1bc2ae38e8977196d0a3e64d1f9f50210815ed
Update ContentRepository.php fix PHP_CodeSniffer problems
[ { "change_type": "MODIFY", "old_path": "src/Repository/ContentRepository.php", "new_path": "src/Repository/ContentRepository.php", "diff": "@@ -58,9 +58,7 @@ class ContentRepository extends ServiceEntityRepository\n}\n$qb->setMaxResults($amount);\n- $result = $qb->getQuery()->getResult();\n-\n- retu...
PHP
MIT License
bolt/core
Update ContentRepository.php fix PHP_CodeSniffer problems
95,144
01.01.2019 16:47:29
-3,600
5de79d2b69a07e1ad370945f52093d9464ec3a02
Don't break if a contenttype is removed
[ { "change_type": "MODIFY", "old_path": "src/Content/ContentType.php", "new_path": "src/Content/ContentType.php", "diff": "@@ -20,8 +20,8 @@ final class ContentType extends Collection\n*/\npublic static function factory(string $name, $contenttypesconfig): ?self\n{\n- if ($contenttypesconfig[$name]) {...
PHP
MIT License
bolt/core
Don't break if a contenttype is removed
95,144
28.12.2018 19:45:49
-3,600
7e1df4d3c5ff8d46331c164cf64027bfb015516d
Working on <select>
[ { "change_type": "DELETE", "old_path": "assets/js/app/editor/Components/Editor/Multiselect/Multiselect.vue", "new_path": null, "diff": "-<template>\n- <div>\n- <multiselect\n- v-model=\"option\"\n- track-by=\"key\"\n- label=\"value\"\n- :options=\"options\"\n- :searchable=\"false\"\n- :multiple=\"tr...
PHP
MIT License
bolt/core
Working on <select>
95,144
28.12.2018 20:59:36
-3,600
e8e134c7c6a5a3f0d1fb1e4416f136400a9fc4db
Fix setting status.
[ { "change_type": "MODIFY", "old_path": "composer.lock", "new_path": "composer.lock", "diff": "},\n{\n\"name\": \"bolt/common\",\n- \"version\": \"v2.0.0\",\n+ \"version\": \"v2.0.1\",\n\"source\": {\n\"type\": \"git\",\n\"url\": \"https://github.com/bolt/common.git\",\n- \"reference\": \"42a7658b417...
PHP
MIT License
bolt/core
Fix setting status.
95,144
30.12.2018 11:26:41
-3,600
a3030abd1a570f2f4473a82450aff02e374e2100
Fixes error when editing records with `video` field
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/generic.html.twig", "new_path": "templates/_partials/fields/generic.html.twig", "diff": "{% extends '@bolt/_partials/fields/_base.html.twig' %}\n{% block field %}\n- <input name=\"{{ name }}\" placeholder=\"First Name\" type=\"text\"...
PHP
MIT License
bolt/core
Fixes error when editing records with `video` field
95,180
30.12.2018 11:52:13
-3,600
8f9e206dc5f7af9431b8f9556fce51bf4d5c506c
added multiselect fixes
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "diff": "<template>\n<div>\n<multiselect\n- v-model=\"option\"\n+ v-model=\"selected\"\ntrack-by=\"key\"\nlabel=\"value\"\n:optio...
PHP
MIT License
bolt/core
added multiselect fixes
95,144
30.12.2018 12:12:39
-3,600
983aae3e2897734e98c6f81c5f1de89898e99f01
Treat all selects the same.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "diff": "@@ -55,13 +55,8 @@ export default {\ncomputed: {\nsanitized(){\nlet filtered;\n- if(this.multiple){\nfiltered = this.sel...
PHP
MIT License
bolt/core
Treat all selects the same.
95,144
31.12.2018 11:17:32
-3,600
afb93abc65a6b2cbfa7a69cd2e94849a34f381c8
Working more on Taxonomies
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "diff": "track-by=\"key\"\nlabel=\"value\"\n:options=\"options\"\n- :searchable=\"false\"\n:show-labels=\"false\"\n:limit=\"1000\...
PHP
MIT License
bolt/core
Working more on Taxonomies
95,144
01.01.2019 16:34:52
-3,600
8d5d7593208993b3cf3415d211a9b50228f7a6c1
Show default tags
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentHelperExtension.php", "new_path": "src/Twig/ContentHelperExtension.php", "diff": "@@ -7,6 +7,7 @@ namespace Bolt\\Twig;\nuse Bolt\\Content\\MenuBuilder;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Entity\\Field;\n+use Bolt\\Repository\\TaxonomyRepos...
PHP
MIT License
bolt/core
Show default tags
95,112
02.01.2019 15:13:01
-3,600
7ef1add87582228dd0c6a4e8a44e939c816b85c2
improve docker config
[ { "change_type": "MODIFY", "old_path": ".env.dist", "new_path": ".env.dist", "diff": "@@ -16,8 +16,11 @@ APP_SECRET=67d829bf61dc5f87a73fd814e2c9f629\n# SQLite\nDATABASE_URL=sqlite:///%kernel.project_dir%/var/data/bolt.sqlite\n-# MySQL\n-# DATABASE_URL=mysql://root:\"password\"@127.0.0.1:3306/bolt_sk...
PHP
MIT License
bolt/core
improve docker config
95,144
02.01.2019 16:51:08
-3,600
4c73d6606e5a759b902bb3d1b25bdf9441c77993
Fixing empty titles on overview
[ { "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": "<!-- column details -->\n<div\nclass=\"listing__row--item is-details\"\n- v-html=\"record.excerpt\"\n>\n+ <a :href=\"record.edit...
PHP
MIT License
bolt/core
Fixing empty titles on overview
95,144
04.01.2019 15:27:41
-3,600
dacc297127a4b0b9af715594f190ed9594f547a5
Putting `composer update` on a diet
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"require\": {\n\"php\": \"^7.1.3\",\n\"ext-json\": \"*\",\n- \"api-platform/api-pack\": \"^1.1\",\n+ \"api-platform/core\": \"^2.1\",\n\"bolt/common\": \"^2.0\",\n\"cocur/slugify\": \"^3.1\",\n- \"doctrine...
PHP
MIT License
bolt/core
Putting `composer update` on a diet
95,112
04.01.2019 15:58:28
-3,600
1d9c9135891476b50b3bbeaab9f3956635bd58ea
Fix marking Fixtures as services
[ { "change_type": "MODIFY", "old_path": "config/services.yaml", "new_path": "config/services.yaml", "diff": "@@ -23,7 +23,7 @@ services:\n# this creates a service per class whose id is the fully-qualified class name\nBolt\\:\nresource: '../src/*'\n- exclude: '../src/{Entity,Migrations,Tests,Kernel.ph...
PHP
MIT License
bolt/core
Fix marking Fixtures as services
95,112
04.01.2019 17:17:33
-3,600
f07f32aace208d070309562b546b951a745aa807
restore symfony.lock
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -22,6 +22,7 @@ Vagrantfile\n.*.swp\n.swp\n*.lock\n+!symfony.lock\n.buildpath\n.idea\n.vscode/*\n" }, { "change_type": "ADD", "old_path": null, "new_path": "symfony.lock", "diff": "+{\n+ \"a...
PHP
MIT License
bolt/core
restore symfony.lock
95,144
04.01.2019 17:36:00
-3,600
08bd9865e4eccb8811f2bca2ba79dc55f0414308
Some minor JS cleanup (with Prettier) `prettier --single-quote --write assets/js/app/editor/Components/**/*`
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Date/Date.vue", "new_path": "assets/js/app/editor/Components/Editor/Date/Date.vue", "diff": ":class=\"{ 'btn-outline-secondary': disabled == 1 }\"\ntype=\"button\"\n:disabled=\"disabled == 1\"\n- data-toggle>\n+ data-togg...
PHP
MIT License
bolt/core
Some minor JS cleanup (with Prettier) `prettier --single-quote --write assets/js/app/editor/Components/**/*`
95,112
04.01.2019 17:37:11
-3,600
023053681af039f685273f9c4b14bd776a44937d
fix travis once again
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -9,7 +9,6 @@ matrix:\nfast_finish: true\ninclude:\n- php: 7.1.18\n- env: COMPOSER_FLAGS=\"--prefer-lowest\"\n- php: 7.2\n- php: 7.3\n- php: nightly\n@@ -22,7 +21,7 @@ before_install:\n- composer self-update\...
PHP
MIT License
bolt/core
fix travis once again
95,144
08.01.2019 07:21:28
-3,600
eb9ae9060aa333978bb0433a072207948fa0b838
[chore] NPM update, because of security warning
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"simplemde\": \"^1.11.2\",\n\"tinycolor2\": \"^1.4.1\",\n\"vue\": \"^2.5.21\",\n- \"vue-flatpickr-component\": \"^8.1.0\",\n+ \"vue-flatpickr-component\": \"^8.1.1\",\n\"vue-multiselect\": \"^2.1.3\",\n\"vue...
PHP
MIT License
bolt/core
[chore] NPM update, because of security warning
95,112
08.01.2019 17:36:18
-3,600
c6932419270efc5dd9b5e2abb063785c60dcc539
Examples how to write Unit tests with 4 different ways
[ { "change_type": "ADD", "old_path": null, "new_path": ".phpspec.yml", "diff": "+suites:\n+ default:\n+ spec_path: tests\n\\ No newline at end of file\n" }, { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -29,11 +29,17 @@ csfix:\nvendor/bin/e...
PHP
MIT License
bolt/core
Examples how to write Unit tests with 4 different ways
95,112
09.01.2019 13:18:32
-3,600
37b437162628ff9cc04728802cb3a97143b01c3c
remove mockery
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -26,8 +26,9 @@ install:\n- npm install\nscript:\n- # run PHP Unit tests\n+ # run PHP Unit / PHP Spec tests\n- ./vendor/bin/phpunit\n+ - ./vendor/bin/phpspec run\n# this checks that the source code follows th...
PHP
MIT License
bolt/core
remove mockery
95,144
10.01.2019 15:53:44
-3,600
79fcf38e2b1b67cc6a13661f3139fdd7de052458
Hotfix: don't add `/bolt` to security.yaml yet. See
[ { "change_type": "MODIFY", "old_path": "config/packages/security.yaml", "new_path": "config/packages/security.yaml", "diff": "@@ -33,5 +33,5 @@ security:\n# this is a catch-all for the admin area\n# additional security lives in the controllers\n# @todo make admin area prefix configurable\n- - { path...
PHP
MIT License
bolt/core
Hotfix: don't add `/bolt` to security.yaml yet. See #245
95,144
10.01.2019 18:21:22
-3,600
829eb9c43ff8ea5acb041c96cc099dfc51a5f618
Fix Vue multiselect
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue", "diff": "@@ -45,9 +45,8 @@ export default {\nconst _options = this.options;\nlet filterSelectedItems = _options.filter(item => {\...
PHP
MIT License
bolt/core
Fix Vue multiselect
95,144
11.01.2019 12:29:17
-3,600
521f528ec6d5d4b736049bc9305eab5f1c5a28ab
Refactor `fullName` to `displayName` for Users / Authors
[ { "change_type": "MODIFY", "old_path": "src/Command/AddUserCommand.php", "new_path": "src/Command/AddUserCommand.php", "diff": "@@ -146,12 +146,12 @@ class AddUserCommand extends Command\n}\n// Ask for the full name if it's not defined\n- $fullName = $input->getArgument('full-name');\n- if ($fullNam...
PHP
MIT License
bolt/core
Refactor `fullName` to `displayName` for Users / Authors
95,144
11.01.2019 13:28:57
-3,600
c16d5ac4f3b1b29f31d48cf602b2417d1dadf6dd
Fixes, as suggested.
[ { "change_type": "MODIFY", "old_path": "src/Command/AddUserCommand.php", "new_path": "src/Command/AddUserCommand.php", "diff": "@@ -76,7 +76,7 @@ class AddUserCommand extends Command\n->addArgument('username', InputArgument::OPTIONAL, 'The username of the new user')\n->addArgument('password', InputA...
PHP
MIT License
bolt/core
Fixes, as suggested.
95,144
11.01.2019 13:55:14
-3,600
28f8a2e6c3170b2944a575355bf4e76cd9c53203
More requested tweaks
[ { "change_type": "MODIFY", "old_path": "src/Command/AddUserCommand.php", "new_path": "src/Command/AddUserCommand.php", "diff": "@@ -104,7 +104,7 @@ class AddUserCommand extends Command\n*/\nprotected function interact(InputInterface $input, OutputInterface $output): void\n{\n- if ($input->getArgumen...
PHP
MIT License
bolt/core
More requested tweaks
95,144
11.01.2019 15:54:52
-3,600
aff46fa26b089307a5158ee230f223c68ce98b9e
Minor tweaks to CSS
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_base.scss", "new_path": "assets/scss/init/_base.scss", "diff": "@@ -30,3 +30,4 @@ strong {\n.custom-select{\n-webkit-appearance: none;\n}\n+\n" }, { "change_type": "MODIFY", "old_path": "assets/scss/init/_variables.scss", "new...
PHP
MIT License
bolt/core
Minor tweaks to CSS
95,112
11.01.2019 16:26:53
-3,600
12a1dd8a9ddea80383882d365cef76e03eb2844d
move UrlGenerator to magic trait
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -12,7 +12,6 @@ use Bolt\\Enum\\Statuses;\nuse Doctrine\\Common\\Collections\\ArrayCollection;\nuse Doctrine\\Common\\Collections\\Collection;\nuse Doctrine\\ORM\\Mapping as ORM;\n-use S...
PHP
MIT License
bolt/core
move UrlGenerator to magic trait
95,144
11.01.2019 17:19:13
-3,600
883fa8b4864ff8a434de3011011f2463dc620ab3
Store locale correctly from Profile
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ProfileController.php", "new_path": "src/Controller/Backend/ProfileController.php", "diff": "@@ -4,6 +4,7 @@ declare(strict_types=1);\nnamespace Bolt\\Controller\\Backend;\n+use Bolt\\Common\\Json;\nuse Bolt\\Controller\\BaseController;\...
PHP
MIT License
bolt/core
Store locale correctly from Profile