author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
95,144
21.04.2019 14:15:11
-7,200
77a1ccecf9763b758d6c8b785599589c1e5ce715
Move `instanceof StreamedResponse` to start of method
[ { "change_type": "MODIFY", "old_path": "src/Snippet/HtmlInjector.php", "new_path": "src/Snippet/HtmlInjector.php", "diff": "@@ -56,15 +56,15 @@ class HtmlInjector\npublic function inject(WidgetInterface $widget, Response $response): void\n{\n- $html = $response->getContent();\n- $functionMap = $this...
PHP
MIT License
bolt/core
Move `instanceof StreamedResponse` to start of method
95,144
21.04.2019 14:45:36
-7,200
9c317abb616a857564174f6b1be7411c5cbf6958
Set config as true global
[ { "change_type": "MODIFY", "old_path": "config/packages/twig.yaml", "new_path": "config/packages/twig.yaml", "diff": "@@ -7,3 +7,5 @@ twig:\npaths:\n'%kernel.project_dir%/public/theme/%bolt.theme%': ''\n'%kernel.project_dir%/templates/': 'bolt'\n+ globals:\n+ 'config': '@Bolt\\Configuration\\Config'...
PHP
MIT License
bolt/core
Set config as true global
95,144
21.04.2019 14:51:30
-7,200
dd626d1f8f5e304a6959f0931f7b59757f6d2c8d
Add config as true global
[ { "change_type": "MODIFY", "old_path": "config/packages/twig.yaml", "new_path": "config/packages/twig.yaml", "diff": "@@ -7,3 +7,5 @@ twig:\npaths:\n'%kernel.project_dir%/public/theme/%bolt.theme%': ''\n'%kernel.project_dir%/templates/': 'bolt'\n+ globals:\n+ 'config': '@Bolt\\Configuration\\Config'...
PHP
MIT License
bolt/core
Add config as true global
95,144
21.04.2019 15:07:40
-7,200
60122b1ecd57681e3252e3c7826937e05d60a2cc
Remove methods from Twigaware interface
[ { "change_type": "MODIFY", "old_path": "src/Widget/TwigAware.php", "new_path": "src/Widget/TwigAware.php", "diff": "@@ -16,8 +16,4 @@ interface TwigAware\npublic function setTwig(Environment $twig): WidgetInterface;\npublic function getTwig(): Environment;\n-\n- public function getTemplate(): string...
PHP
MIT License
bolt/core
Remove methods from Twigaware interface
95,144
21.04.2019 15:24:04
-7,200
9bdd3bc94b6456dfd2e5925365e55bbe53ceb9f7
Init $template as string
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -20,7 +20,7 @@ class BaseWidget implements WidgetInterface\nprotected $priority = 0;\n/** @var string */\n- protected $template;\n+ protected $template = '';\n/** @var Response */...
PHP
MIT License
bolt/core
Init $template as string
95,144
21.04.2019 16:54:20
-7,200
bc0b59db0fa61e06eb3684b0967fbeb75a2b2e9b
Remove $type, and remove the initial `''` for $template
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -14,13 +14,12 @@ use Twig\\Environment;\nclass BaseWidget implements WidgetInterface\n{\nprotected $name = 'Nameless widget';\n- protected $type = 'widget';\nprotected $target = T...
PHP
MIT License
bolt/core
Remove $type, and remove the initial `''` for $template
95,112
21.04.2019 18:07:59
-7,200
989e5e9745283d16f5ae6a3ab31436739a1b05e1
Changes in Widgets
[ { "change_type": "MODIFY", "old_path": "phpunit.xml.dist", "new_path": "phpunit.xml.dist", "diff": "<!-- define your env variables for the test env here -->\n<!-- ###+ doctrine/doctrine-bundle ### -->\n- <env name=\"DATABASE_URL\" value=\"sqlite:///%kernel.project_dir%/var/data/bolt-test.sqlite\" fo...
PHP
MIT License
bolt/core
Changes in Widgets
95,144
21.04.2019 18:32:08
-7,200
af1cc729e46cd5b4c1d0f222b7743af95b3d2f15
Change BaseWidget description
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -10,7 +10,7 @@ use Symfony\\Component\\HttpFoundation\\Response;\nuse Twig\\Environment;\n/**\n- * BaseWidget can be used as easy starter pack or for as a base for heavy widgets.\...
PHP
MIT License
bolt/core
Change BaseWidget description Co-Authored-By: JarJak <egger1991@gmail.com>
95,112
21.04.2019 19:06:15
-7,200
871a5b93088e9b659692d4241a7243025e0778a9
Improve Widgets
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -4,16 +4,16 @@ declare(strict_types=1);\nnamespace Bolt\\Widget;\n+use Bolt\\Widget\\Exception\\WidgetException;\nuse Cocur\\Slugify\\Slugify;\n-use Symfony\\Component\\HttpFounda...
PHP
MIT License
bolt/core
Improve Widgets
95,112
22.04.2019 00:55:13
-7,200
74ee8fd30247f72acc1b9dfa4ad2d2f9c0cca97f
Html Injector rewritten
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/HtmlInjector.php", "new_path": "src/Widget/Injector/HtmlInjector.php", "diff": "@@ -81,20 +81,36 @@ class HtmlInjector\n}\n/**\n- * insert some HTML into the start of the head section of\n- * an HTML page, right after the <head> tag.\n+ * i...
PHP
MIT License
bolt/core
Html Injector rewritten
95,112
22.04.2019 00:59:21
-7,200
3cc070a34d427a5634805f578795345798033932
Fix NewsWidget
[ { "change_type": "MODIFY", "old_path": "src/Widget/NewsWidget.php", "new_path": "src/Widget/NewsWidget.php", "diff": "@@ -12,7 +12,7 @@ use Bolt\\Widget\\Injector\\RequestZone;\nuse GuzzleHttp\\Client;\nuse GuzzleHttp\\Exception\\RequestException;\n-class NewsWidget extends BaseWidget implements Twi...
PHP
MIT License
bolt/core
Fix NewsWidget
95,112
22.04.2019 01:20:41
-7,200
17a97c5632711cfad594210b378d181179ff6457
Fix setting deps in Widget Queue Processor
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/HtmlInjector.php", "new_path": "src/Widget/Injector/HtmlInjector.php", "diff": "@@ -5,10 +5,8 @@ declare(strict_types=1);\nnamespace Bolt\\Widget\\Injector;\nuse Bolt\\Common\\Str;\n-use Bolt\\Widget\\ResponseAware;\nuse Bolt\\Widget\\Widge...
PHP
MIT License
bolt/core
Fix setting deps in Widget Queue Processor
95,144
22.04.2019 12:47:06
-7,200
dff15a15c67d4155800c35fb992aedc49cde30a4
Only invoke widget, when we intend to inject it.
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/HtmlInjector.php", "new_path": "src/Widget/Injector/HtmlInjector.php", "diff": "@@ -60,9 +60,8 @@ class HtmlInjector\n$functionMap = $this->getMap();\n$target = $widget->getTarget();\n- $output = $widget();\n-\nif (isset($functionMap[$targe...
PHP
MIT License
bolt/core
Only invoke widget, when we intend to inject it.
95,144
22.04.2019 15:38:38
-7,200
85b752b4a2a3ba1143178b2646b3bc0bb535cf0b
Working on config parsers
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/BaseParser.php", "new_path": "src/Configuration/Parser/BaseParser.php", "diff": "@@ -6,7 +6,6 @@ namespace Bolt\\Configuration\\Parser;\nuse Bolt\\Configuration\\PathResolver;\nuse Symfony\\Component\\Config\\FileLocator;\n-use Symfony...
PHP
MIT License
bolt/core
Working on config parsers
95,144
22.04.2019 19:18:28
-7,200
578b40cdf4a8d84af7b704b0b8c7c2791c837bd1
More tests for TaxonomyParserTest
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/BaseParser.php", "new_path": "src/Configuration/Parser/BaseParser.php", "diff": "@@ -47,10 +47,8 @@ abstract class BaseParser\n}\n} catch (FileLocatorFileNotFoundException $e) {\nif ($ignoreMissing) {\n- echo \"[a]\";\nreturn new Colle...
PHP
MIT License
bolt/core
More tests for TaxonomyParserTest
95,144
26.04.2019 15:51:32
-7,200
170544974ac735d761dcfded9bfc5b3bc3ad775b
Add ParserTestBase
[ { "change_type": "MODIFY", "old_path": "tests/php/Configuration/Parser/ContentTypesParserTest.php", "new_path": "tests/php/Configuration/Parser/ContentTypesParserTest.php", "diff": "@@ -7,18 +7,12 @@ namespace Bolt\\Tests\\Configuration\\Parser;\nuse Bolt\\Configuration\\Parser\\ContentTypesParser;\...
PHP
MIT License
bolt/core
Add ParserTestBase
95,144
26.04.2019 15:52:35
-7,200
1f9eed5739f43687de18c34e9e37ca6eb9403900
make parent class abstract
[ { "change_type": "MODIFY", "old_path": "tests/php/Configuration/Parser/ParserTestBase.php", "new_path": "tests/php/Configuration/Parser/ParserTestBase.php", "diff": "@@ -6,7 +6,7 @@ namespace Bolt\\Tests\\Configuration\\Parser;\nuse PHPUnit\\Framework\\TestCase;\n-class ParserTestBase extends TestCa...
PHP
MIT License
bolt/core
make parent class abstract
95,144
28.04.2019 18:25:12
-7,200
3f0896112688406421dce694eadd35d073636a43
Make `with-images` and `without-images` groups in fixtures
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -10,6 +10,7 @@ use Bolt\\Configuration\\FileLocations;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Entity\\Field;\nuse Bolt\\Enum\\Statuses;\n+use Doctrine\\Bundl...
PHP
MIT License
bolt/core
Make `with-images` and `without-images` groups in fixtures
95,144
28.04.2019 19:04:01
-7,200
6dc72e4e870d97cf6387a2c318db32fe610c08d8
Speed up Fixtures in tests
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ImageFetchFixtures.php", "new_path": "src/DataFixtures/ImageFetchFixtures.php", "diff": "@@ -5,32 +5,23 @@ declare(strict_types=1);\nnamespace Bolt\\DataFixtures;\nuse Bolt\\Configuration\\FileLocations;\n-use Bolt\\Factory\\MediaFactory;\nuse...
PHP
MIT License
bolt/core
Speed up Fixtures in tests
95,144
28.04.2019 19:46:01
-7,200
97e9ec6746a0e84fe84fb667c06cdf39b5a0e4da
Add Relations in Fixtures
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -135,6 +135,9 @@ class ContentFixtures extends BaseFixture implements DependentFixtureInterface,\n}\n}\n+ $refKey = sprintf('content_%s_%s', $contentType['sl...
PHP
MIT License
bolt/core
Add Relations in Fixtures
95,144
28.04.2019 20:19:13
-7,200
590647cad7756926f1c2f2cef87818dcf9bdae9f
Show Relations in frontend
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/partials/_recordfooter.twig", "new_path": "public/theme/skeleton/partials/_recordfooter.twig", "diff": "<ul>\n{% for content_type, related_records in related_content_types %}\n<li>\n- <h4>Related {{ app.config.contenttypes[content_type].n...
PHP
MIT License
bolt/core
Show Relations in frontend
95,144
07.05.2019 15:10:28
-7,200
62c0ad4067d8ef8013d7091f3ace4edce54a6cdb
Poking at phpspec tests with a stick until they pass
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -39,9 +39,7 @@ csfix:\nmake csclear\nvendor/bin/ecs check src --fix\nvendor/bin/ecs check tests/spec --fix --config vendor/symplify/easy-coding-standard/config/common/namespaces.yml\n- vendor/bin/ecs check tests/p...
PHP
MIT License
bolt/core
Poking at phpspec tests with a stick until they pass
95,144
07.05.2019 15:55:39
-7,200
2fd53f70b243fa5360a4303e8f0d6a77741d3d5b
Flush referencesIndex, to make multiple in-memory tests run correctly
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/BaseFixture.php", "new_path": "src/DataFixtures/BaseFixture.php", "diff": "@@ -14,6 +14,15 @@ abstract class BaseFixture extends Fixture\nprivate $referencesIndex = [];\nprivate $taxonomyIndex = [];\n+ /**\n+ * During unit-tests, the fixtures ...
PHP
MIT License
bolt/core
Flush referencesIndex, to make multiple in-memory tests run correctly
95,144
07.05.2019 16:17:15
-7,200
6a7d0b2145cfeaf305e37346e912b05ccd4d4961
Cleanup, better variable names
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -124,7 +124,7 @@ class Config\n$timestamps = [];\nforeach ($configs as $config) {\n- foreach ($config->getFilenames() as $file) {\n+ foreach ($config->getParsedFilenames() a...
PHP
MIT License
bolt/core
Cleanup, better variable names
95,144
07.05.2019 16:18:41
-7,200
171b37a062970ccafc73b31c0a52f460afd6f240
Rename $filename to $initialFilename
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/BaseParser.php", "new_path": "src/Configuration/Parser/BaseParser.php", "diff": "@@ -24,12 +24,12 @@ abstract class BaseParser\n/** @var string[] */\nprotected $parsedFilenames = [];\n- public function __construct(string $filename)\n+ ...
PHP
MIT License
bolt/core
Rename $filename to $initialFilename
95,144
07.05.2019 18:04:43
-7,200
4dfd403710586f1f765004e6f0c691e96ff78d30
Update packages, add Luxon, reduce flag sizes
[ { "change_type": "MODIFY", "old_path": "assets/js/filters/date.js", "new_path": "assets/js/filters/date.js", "diff": "import Vue from 'vue';\n-import moment from 'moment';\n+import { DateTime } from 'luxon';\nVue.filter('date', string => {\nif (string) {\n- return moment(String(string))\n- .add(1, '...
PHP
MIT License
bolt/core
Update packages, add Luxon, reduce flag sizes
95,144
07.05.2019 19:32:40
-7,200
4d688cdaf272100cf0418fcb5843775dae0fc1a8
fix relative filename
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -162,7 +162,7 @@ class ContentFixtures extends BaseFixture implements DependentFixtureInterface,\ncase 'file':\n$randomImage = $this->imagesIndex->random();\...
PHP
MIT License
bolt/core
fix relative filename
95,144
09.05.2019 17:53:47
-7,200
9fe2550f287296cb69d5f34293c2d95ef7ffbe94
Add missing attributes to json_records
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/Table/Row/_Meta.vue", "new_path": "assets/js/app/listing/Components/Table/Row/_Meta.vue", "diff": "<div class=\"listing__row--item is-meta\">\n<ul class=\"listing__row--list\">\n<li v-if=\"size === 'normal'\">\n- <i class=\"fas...
PHP
MIT License
bolt/core
Add missing attributes to json_records
95,144
09.05.2019 18:17:45
-7,200
70851034a445ed80ca28cea5feaa62793b907396
Use ->getIcon instead
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -74,6 +74,7 @@ class Content\n* @var \\DateTime\n*\n* @ORM\\Column(type=\"datetime\")\n+ * @Groups(\"get_content\")\n*/\nprivate $createdAt;\n@@ -97,6 +98,7 @@ class Content\n* @var \\D...
PHP
MIT License
bolt/core
Use ->getIcon instead
95,144
09.05.2019 22:04:32
-7,200
5fc20dfe71667e55e22bd1ed12ef2a2ba80274cf
Allow for caching of widgets
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -15,6 +15,7 @@ abstract class BaseWidget implements WidgetInterface\nuse TwigTrait;\nuse RequestTrait;\nuse ResponseTrait;\n+ use CacheTrait;\n/** @var string */\nprotected $name;...
PHP
MIT License
bolt/core
Allow for caching of widgets
95,144
09.05.2019 22:09:36
-7,200
8d8ec16a4ede066db1d0c146d0c668d04d7409ad
Needs to be `$this->__invoke();`
[ { "change_type": "MODIFY", "old_path": "src/Widget/CacheTrait.php", "new_path": "src/Widget/CacheTrait.php", "diff": "@@ -26,8 +26,7 @@ trait CacheTrait\nreturn $this->getFromCache();\n}\n- /** @var WidgetInterface $this */\n- $output = $this();\n+ $output = $this->__invoke();\n$this->setToCache($ou...
PHP
MIT License
bolt/core
Needs to be `$this->__invoke();`
95,144
10.05.2019 14:41:05
-7,200
62c6ad25894ac1bf73c50f56756b6415a57de8a9
Working on caching
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -15,7 +15,6 @@ abstract class BaseWidget implements WidgetInterface\nuse TwigTrait;\nuse RequestTrait;\nuse ResponseTrait;\n- use CacheTrait;\n/** @var string */\nprotected $name;...
PHP
MIT License
bolt/core
Working on caching
95,144
10.05.2019 16:01:22
-7,200
513ba618f7b11d7205d77dd805ccd057ff06f0a8
Tweaks in widget caching
[ { "change_type": "MODIFY", "old_path": "src/Widget/CacheAware.php", "new_path": "src/Widget/CacheAware.php", "diff": "@@ -12,5 +12,5 @@ use Psr\\SimpleCache\\CacheInterface;\n*/\ninterface CacheAware extends WidgetInterface\n{\n- public function setCacheInterface(CacheInterface $config): void;\n+ pu...
PHP
MIT License
bolt/core
Tweaks in widget caching
95,144
10.05.2019 16:05:21
-7,200
f8eb284ba91b30a80360b64f965dae1d1a54bbe6
Missing rename of setCacheInterface
[ { "change_type": "MODIFY", "old_path": "src/Widget/CacheTrait.php", "new_path": "src/Widget/CacheTrait.php", "diff": "@@ -15,7 +15,7 @@ trait CacheTrait\n/** @var string */\nprivate $key;\n- public function setCacheInterface(CacheInterface $cache): void\n+ public function setCache(CacheInterface $ca...
PHP
MIT License
bolt/core
Missing rename of setCacheInterface
95,144
12.05.2019 16:46:22
-7,200
18bd0d334455579cc512d60cc32b652c8bea2785
Make Weather widget work
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -6,6 +6,8 @@ namespace Bolt\\Widget;\nuse Bolt\\Widget\\Injector\\AdditionalTarget;\nuse Bolt\\Widget\\Injector\\RequestZone;\n+use GuzzleHttp\\Client;\n+use GuzzleHttp\\Exc...
PHP
MIT License
bolt/core
Make Weather widget work
95,144
16.05.2019 21:07:36
-7,200
502677405fc0a13b11790b55301200924f4fa556
Ninja-fixing `z-index` clashes
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_variables.scss", "new_path": "assets/scss/init/_variables.scss", "diff": "@@ -8,4 +8,4 @@ $bolt-blue: #255687; // Nice and bright, pretty light\n$bolt-bluegray: #2F3E4D; // Nice dark and desaturated\n$bolt-saturated: #003E7C; // Very saturate...
PHP
MIT License
bolt/core
Ninja-fixing `z-index` clashes
95,144
20.05.2019 19:39:38
-7,200
525762f4be5f8a70127b277e6937a3c5a9d11834
Add StopwatchTrait and StopwatchInterface for Widgets
[ { "change_type": "MODIFY", "old_path": "src/Widget/CacheTrait.php", "new_path": "src/Widget/CacheTrait.php", "diff": "@@ -55,6 +55,6 @@ trait CacheTrait\nprivate function createKey()\n{\n- return $this->getName() . $this->getTarget() . $this->getZone() . $this->getPriority();\n+ return sprintf('%s--...
PHP
MIT License
bolt/core
Add StopwatchTrait and StopwatchInterface for Widgets
95,144
21.05.2019 09:38:47
-7,200
7ba4c095a917f9d8c3e59f505aabc647d9bd4d79
Let injected snippets use cache too
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/QueueProcessor.php", "new_path": "src/Widget/Injector/QueueProcessor.php", "diff": "@@ -4,9 +4,11 @@ declare(strict_types=1);\nnamespace Bolt\\Widget\\Injector;\n+use Bolt\\Widget\\CacheAware;\nuse Bolt\\Widget\\RequestAware;\nuse Bolt\\Wid...
PHP
MIT License
bolt/core
Let injected snippets use cache too
95,144
21.05.2019 16:25:27
-7,200
c4a75883de9a216e4d70492e8a091be57dbb3b04
Cleanup of composer.json
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "{\n\"name\": \"bolt/bolt\",\n- \"license\": \"MIT\",\n\"type\": \"library\",\n\"description\": \"Bolt 4 skeleton / prototype\",\n+ \"license\": \"MIT\",\n\"require\": {\n\"php\": \">=7.1.3\",\n\"ext-json\":...
PHP
MIT License
bolt/core
Cleanup of composer.json
95,144
22.05.2019 16:04:30
-7,200
26cffdbc968b9786612a8c09c08593a9bc9eb47e
Working on editing relations
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -9,9 +9,12 @@ use Bolt\\Controller\\CsrfTrait;\nuse Bolt\\Controller\\TwigAwareController;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Ent...
PHP
MIT License
bolt/core
Working on editing relations
95,144
22.05.2019 16:40:52
-7,200
1dac8a33e4589cfbf65320d528d859e4a7ee1f6c
Updating templates for editing Relations
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -277,40 +277,14 @@ blocks:\nslug:\ntype: slug\nuses: [ title ]\n-\n-# selectfield:\n-# type: select\n-# values: [ foo, bar, baz ]\n-# selectfieldd:\n-# type: select\n-# va...
PHP
MIT License
bolt/core
Updating templates for editing Relations
95,144
22.05.2019 17:24:28
-7,200
dbbe394bec542e832d32da6f226a588c4326dff9
Use my own fork, until upstream is fixed
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"erusev/parsedown\": \"^1.7\",\n\"ezyang/htmlpurifier\": \"^4.10\",\n\"fzaninotto/faker\": \"^1.8\",\n- \"gedmo/doctrine-extensions\": \"^2.4.4\",\n+ \"gedmo/doctrine-extensions\": \"v2.4.x-dev\",\n\"guzzl...
PHP
MIT License
bolt/core
Use my own fork, until upstream is fixed
95,144
23.05.2019 10:53:27
-7,200
aa1d729ea3586610d3579fe319c92125f5305601
Update RelatedExtensionSpec.php with black magic and voodoo
[ { "change_type": "MODIFY", "old_path": "tests/spec/Bolt/Twig/RelatedExtensionSpec.php", "new_path": "tests/spec/Bolt/Twig/RelatedExtensionSpec.php", "diff": "@@ -4,8 +4,10 @@ declare(strict_types=1);\nnamespace spec\\Bolt\\Twig;\n+use Bolt\\Configuration\\Config;\nuse Bolt\\Entity\\Content;\nuse Bol...
PHP
MIT License
bolt/core
Update RelatedExtensionSpec.php with black magic and voodoo
95,144
26.05.2019 12:41:02
-7,200
02512325090570c751220e63534dab7841c56682
Add Controllers for 'duplicate', 'change status' and 'delete'
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/Table/Row/_Actions.vue", "new_path": "assets/js/app/listing/Components/Table/Row/_Actions.vue", "diff": "<i class=\"fas fa-w fa-external-link-square-alt\"></i>\nView on Site\n</a>\n- <a v-if=\"record.status !== 'published'\" cl...
PHP
MIT License
bolt/core
Add Controllers for 'duplicate', 'change status' and 'delete'
95,144
27.05.2019 20:42:53
-7,200
5d7978896397b35ea8a7f7cea2a882e6ff5487a0
Only get existing Relations from content that was persisted before
[ { "change_type": "MODIFY", "old_path": "src/Repository/RelationRepository.php", "new_path": "src/Repository/RelationRepository.php", "diff": "@@ -36,6 +36,11 @@ class RelationRepository extends SortableRepository\n*/\npublic function findRelations(Content $from, ?string $name, bool $biDirectional = ...
PHP
MIT License
bolt/core
Only get existing Relations from content that was persisted before
95,144
28.05.2019 16:38:43
-7,200
3dd6bb68e8772841e2c2985db3ea65fccce17e50
Don't overlap rows in listings
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/Table/Row/_Actions.vue", "new_path": "assets/js/app/listing/Components/Table/Row/_Actions.vue", "diff": "</span>\n</div>\n</div>\n-\n-\n- </div>\n- </div>\n- <!-- <button\n- type=\"button\"\n- class=\"listing--actions--quickedi...
PHP
MIT License
bolt/core
Don't overlap rows in listings
95,144
29.05.2019 20:55:24
-7,200
7ce0ee6d191e7caf4db6eef3f3043117aa16e20a
Cleanup of a bunch of Vue stuff
[ { "change_type": "RENAME", "old_path": "assets/js/app/login/Components/Email/Email.vue", "new_path": "assets/js/app/editor/Components/Editor/Email/Email.vue", "diff": "<script>\nexport default {\n- name: 'FieldEmail',\n+ name: 'EditorEmail',\nprops: ['value', 'name', 'id'],\n};\n</script>\n" }, ...
PHP
MIT License
bolt/core
Cleanup of a bunch of Vue stuff
95,144
30.05.2019 10:31:45
-7,200
3b8f48b97f2352b1c9dd28fba868150adf097ce0
Update to Symfony 4.3 stable
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"ext-pdo\": \"*\",\n\"api-platform/core\": \"^2.4\",\n\"bolt/common\": \"^2.0.2\",\n- \"cocur/slugify\": \"^3.1\",\n- \"doctrine/annotations\": \"^1.0\",\n- \"doctrine/doctrine-bundle\": \"^1.8\",\n+ \"coc...
PHP
MIT License
bolt/core
Update to Symfony 4.3 stable
95,144
30.05.2019 14:43:28
-7,200
ef75c6ef3ad3aedbdd036ed61e2515a00e16753b
Call `$kernel->boot()` ourselves.
[ { "change_type": "MODIFY", "old_path": "tests/php/DbAwareTestCase.php", "new_path": "tests/php/DbAwareTestCase.php", "diff": "@@ -47,6 +47,10 @@ class DbAwareTestCase extends WebTestCase\nif (self::$application === null) {\n$client = static::createClient();\n+ // Since Symfony 4.3.0, the `doRun` met...
PHP
MIT License
bolt/core
Call `$kernel->boot()` ourselves.
95,144
30.05.2019 15:32:13
-7,200
0e793364f2206f0c0531069cf0088f120983cf3b
Nope, still need `jarjak/php-matcher`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"behat/mink-extension\": \"^2.3\",\n\"behat/mink-goutte-driver\": \"^1.2\",\n\"behatch/contexts\": \"^3.2\",\n- \"coduo/php-matcher\": \"^3.1.2\",\n+ \"coduo/php-matcher\": \"dev-patch-2@dev\",\n\"dama/doc...
PHP
MIT License
bolt/core
Nope, still need `jarjak/php-matcher`
95,144
31.05.2019 11:46:56
-7,200
29e1561713dde760d24bda94e332b218e49320b8
Explicitly require `psr/simple-cache`
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"nesbot/carbon\": \"^1.37\",\n\"php-translation/symfony-bundle\": \"^0.8\",\n\"phpdocumentor/reflection-docblock\": \"^4.3\",\n+ \"psr/simple-cache\": \"^1.0\",\n\"sensio/framework-extra-bundle\": \"^5.3\"...
PHP
MIT License
bolt/core
Explicitly require `psr/simple-cache`
95,144
31.05.2019 14:32:49
-7,200
de9275b3b9fe450d210f1fd3ee9389fa2b63841e
Don't hardcode projectDir
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -14,6 +14,7 @@ use Bolt\\Configuration\\Parser\\TaxonomyParser;\nuse Psr\\SimpleCache\\CacheInterface;\nuse Symfony\\Component\\Stopwatch\\Stopwatch;\nuse Tightenco\\Collect...
PHP
MIT License
bolt/core
Don't hardcode projectDir
95,144
31.05.2019 14:33:23
-7,200
2d9f3514055b47be7221b537a7c1e8d0b91b849d
Update tests with non-hardcoded $projectDir
[ { "change_type": "MODIFY", "old_path": "tests/php/Configuration/ConfigTest.php", "new_path": "tests/php/Configuration/ConfigTest.php", "diff": "@@ -17,7 +17,7 @@ class ConfigTest extends TestCase\npublic function testCanParse(): void\n{\n- $projectDir = dirname(__DIR__);\n+ $projectDir = dirname(dir...
PHP
MIT License
bolt/core
Update tests with non-hardcoded $projectDir
95,144
31.05.2019 15:38:36
-7,200
383412df6969cea7a9a2c066f6d18f6022c1aede
Construct dummy contenttype on the fly
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Content/ContentType.php", "new_path": "src/Configuration/Content/ContentType.php", "diff": "@@ -20,7 +20,7 @@ class ContentType extends DeepCollection\nreturn new self($contentTypesConfig->get($name));\n}\n- return $contentTypesConfig\n+ $con...
PHP
MIT License
bolt/core
Construct dummy contenttype on the fly
95,144
31.05.2019 15:39:24
-7,200
7e4ac50730a7d43d6be7309a783a59a8a2d5860f
Flawed logic: If it's not a Collection, we can't use a method from Collection on it
[ { "change_type": "MODIFY", "old_path": "src/Entity/ContentLocalizeTrait.php", "new_path": "src/Entity/ContentLocalizeTrait.php", "diff": "@@ -15,7 +15,7 @@ trait ContentLocalizeTrait\n{\n$locales = $this->getDefinition()->get('locales');\n- if ($locales->isEmpty()) {\n+ if (empty($locales)) {\nretur...
PHP
MIT License
bolt/core
Flawed logic: If it's not a Collection, we can't use a method from Collection on it
95,144
31.05.2019 15:40:08
-7,200
95d7cc91606d5243060978f25e51c3b46d991daa
Don't break when trying to make links to missing ContentTypes
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentExtension.php", "new_path": "src/Twig/ContentExtension.php", "diff": "@@ -10,6 +10,7 @@ use Bolt\\Entity\\Field\\ImageField;\nuse Bolt\\Repository\\ContentRepository;\nuse Bolt\\Utils\\Excerpt;\nuse Bolt\\Utils\\Html;\n+use Symfony\\Component\\...
PHP
MIT License
bolt/core
Don't break when trying to make links to missing ContentTypes
95,144
31.05.2019 16:23:15
-7,200
49367e815152eac84b0d097b24f5348df8137bd2
Cast to string, if empty locales
[ { "change_type": "MODIFY", "old_path": "src/Entity/ContentLocalizeTrait.php", "new_path": "src/Entity/ContentLocalizeTrait.php", "diff": "@@ -24,6 +24,6 @@ trait ContentLocalizeTrait\npublic function getDefaultLocale(): string\n{\n- return $this->getLocales()->first();\n+ return (string) $this->getL...
PHP
MIT License
bolt/core
Cast to string, if empty locales
95,144
01.06.2019 08:21:06
-7,200
af135610329213048b8bfd4032f3084a7c52e737
Allow for Carbon 2, alongside Carbon 1 (needed for Symfony 4 requirements)
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"league/glide-symfony\": \"^1.0\",\n\"miljar/php-exif\": \"^0.6.4\",\n\"nelmio/cors-bundle\": \"^1.5\",\n- \"nesbot/carbon\": \"^1.37\",\n+ \"nesbot/carbon\": \"^1.38 || ^2.19\",\n\"php-translation/symfony...
PHP
MIT License
bolt/core
Allow for Carbon 2, alongside Carbon 1 (needed for Symfony 4 requirements)
95,144
05.06.2019 17:43:27
-7,200
a07318d4e835bcd191e8b43aaf9e257d8896fff2
Don't parse string-like fields in the backend.
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/_base.html.twig", "new_path": "templates/_partials/fields/_base.html.twig", "diff": "{% if not value|default %}\n{% set value = field.value|default('') %}\n{% if value is iterable %}\n- {% set value = field.__toString() %}\n+ {% set ...
PHP
MIT License
bolt/core
Don't parse string-like fields in the backend.
95,144
06.06.2019 14:33:36
-7,200
05197226a0316e7d658cfdd375d06e21148f10ad
Update Field if ContentType definition for a field changes
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -48,7 +48,7 @@ locale: nl_NL\n# The default template file can be found in /app/theme_defaults/ and overridden\n# with this option using your own theme.\n#\n-# Note: If youve changed t...
PHP
MIT License
bolt/core
Update Field if ContentType definition for a field changes
95,144
06.06.2019 16:19:11
-7,200
9aa0ece6c3a58649600cabd82d17f7460dc66cfe
Some minor cleanup in templates / controllers
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ClearCacheController.php", "new_path": "src/Controller/Backend/ClearCacheController.php", "diff": "@@ -47,6 +47,6 @@ class ClearCacheController extends AbstractController implements BackendZone\n'output' => $output->fetch(),\n];\n- retur...
PHP
MIT License
bolt/core
Some minor cleanup in templates / controllers
95,144
06.06.2019 16:49:51
-7,200
b60b7c9ec167e1c5a67986376fb0641eec3e43b4
Don't need these for now.
[ { "change_type": "DELETE", "old_path": "templates/bundles/TwigBundle/Exception/error.html.twig", "new_path": null, "diff": "-{#\n- This template is used to render any error different from 403, 404 and 500.\n-\n- This is the simplest way to customize error pages in Symfony applications.\n- In case yo...
PHP
MIT License
bolt/core
Don't need these for now.
95,144
07.06.2019 14:15:09
-7,200
ef63c93347194adf61057360cfd3baf81e3b3a34
Don't remove Fields that don't exist yet
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -292,7 +292,7 @@ class ContentEditController extends TwigAwareController implements BackendZone\n}\n// If the Field exists, but it ha...
PHP
MIT License
bolt/core
Don't remove Fields that don't exist yet
95,144
08.06.2019 16:15:40
-7,200
cc5abf109acd51a76a36482987710c0ec6355ea3
Use (local) Source Sans Variable instead of from Google Fonts
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/scss/init/_fonts.scss", "diff": "+@font-face{\n+ font-family: 'Source Sans Variable';\n+ font-weight: 200 900;\n+ font-style: normal;\n+ font-stretch: normal;\n+ src: url('../../../node_modules/source-sans-pro/VAR/SourceSansVariable-Roman...
PHP
MIT License
bolt/core
Use (local) Source Sans Variable instead of from Google Fonts
95,144
09.06.2019 11:17:48
-7,200
c6094c7ea0fe5ccd4f98f9b4b83844f2aaa9a7b4
Add Font Awesome locally.
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/init.scss", "new_path": "assets/scss/init/init.scss", "diff": "@import '_variables';\n@import '_mixins';\n@import '_base';\n+\n+// Source Sans Variable\n@import '_fonts';\n+\n+// Font Awesome\n+@import '../../node_modules/@fortawesome/fontawes...
PHP
MIT License
bolt/core
Add Font Awesome locally.
95,144
09.06.2019 13:15:39
-7,200
8cf9f0a4bdc65ffb7af870c9b3276b10f97bb412
Add Bootstrap's "Toast" notifications
[ { "change_type": "DELETE", "old_path": "assets/js/app/notifications/Components/Notification.vue", "new_path": null, "diff": "-<template>\n- <div class=\"admin__notification-message\">\n- <transition\n- name=\"notification\"\n- :duration=\"duration\"\n- @after-enter=\"show = false\"\n- >\n- <div\n- v...
PHP
MIT License
bolt/core
Add Bootstrap's "Toast" notifications
95,144
09.06.2019 13:19:29
-7,200
e10b34054ca76c8265270db766e1d9689264bd21
Remove old vue-notifications
[ { "change_type": "DELETE", "old_path": "assets/scss/modules/base/_notification.scss", "new_path": null, "diff": "-//** Base | Notification\n-.admin__notifications {\n- display: block;\n- -webkit-backface-visibility: hidden;\n- z-index: $big-z-index + 100;\n- position: fixed;\n- bottom: $spacer * 3;\...
PHP
MIT License
bolt/core
Remove old vue-notifications
95,144
09.06.2019 13:47:22
-7,200
14b06a74d510f43295078e31e74feb163b6a5f0d
Remove test for non-existing component
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -64,7 +64,6 @@ e2e:\nfull-test:\nmake cscheck\nmake test\n- npm test\nmake behat\nmake e2e\n@@ -165,7 +164,6 @@ docker-full-test:\nmake docker-cache\nmake docker-cscheck\nmake docker-test\n- npm test\nmake docker-...
PHP
MIT License
bolt/core
Remove test for non-existing component
95,144
09.06.2019 15:02:34
-7,200
a3e7e05ee5a5fafd66d5073f5f8ce6588575c1b0
Fix "records_per_page" configuration setting
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -134,7 +134,7 @@ search_results_records: 10\n# The default amount of records to show on overview pages. Can be overridden\n# for each content type.\n-recordsperpage: 10\n+records_per_...
PHP
MIT License
bolt/core
Fix "records_per_page" configuration setting
95,144
09.06.2019 16:55:53
-7,200
6b22ef7089202da4cde7f710d01409685c22cfab
Good catch, PHPStan.
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Config.php", "new_path": "src/Configuration/Config.php", "diff": "@@ -144,7 +144,7 @@ class Config\n* For example:\n* $var = $config->get('general/wysiwyg/ck/contentsCss');\n*\n- * @param string|array|bool $default\n+ * @param string|array|bo...
PHP
MIT License
bolt/core
Good catch, PHPStan.
95,144
09.06.2019 16:56:28
-7,200
e284c4c48f48c36ee0cd64b4871541d59399744f
Tweaking test.
[ { "change_type": "MODIFY", "old_path": "tests/php/Configuration/Parser/ContentTypesParserTest.php", "new_path": "tests/php/Configuration/Parser/ContentTypesParserTest.php", "diff": "@@ -114,7 +114,7 @@ class ContentTypesParserTest extends ParserTestBase\n$this->assertSame('bar', $config['foo']['sing...
PHP
MIT License
bolt/core
Tweaking test.
95,144
10.06.2019 14:39:25
-7,200
140c80e0dafe336b5646ab91db4a3a525308c739
Using local Codemirror and a few other things
[ { "change_type": "MODIFY", "old_path": "assets/js/bolt.js", "new_path": "assets/js/bolt.js", "diff": "@@ -13,6 +13,7 @@ import $ from 'jquery';\nwindow.jQuery = $;\nwindow.$ = $;\n+import './codemirror';\nimport './filters';\nimport './app';\nimport '../scss/bolt.scss';\n" }, { "change_type"...
PHP
MIT License
bolt/core
Using local Codemirror and a few other things
95,144
13.06.2019 17:13:40
-7,200
e28064b574a96c62ee9438cf1b5fd8dadc1983ba
Exclude api-platform 2.4.4, see
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"white-october/pagerfanta-bundle\": \"^1.2\"\n},\n\"conflict\": {\n- \"symfony/symfony\": \"*\"\n+ \"symfony/symfony\": \"*\",\n+ \"api-platform/core\": \"2.4.4\"\n},\n\"require-dev\": {\n\"ext-curl\": \"*...
PHP
MIT License
bolt/core
Exclude api-platform 2.4.4, see #470
95,144
13.06.2019 15:52:57
-7,200
47f99fbe756d02aa41622532c84e8cd44e28e18e
Use 'andWhere' instead of 'where'
[ { "change_type": "MODIFY", "old_path": "src/Storage/Query/SelectQuery.php", "new_path": "src/Storage/Query/SelectQuery.php", "diff": "@@ -207,7 +207,7 @@ class SelectQuery implements ContentQueryInterface\n{\n$query = $this->qb;\nif ($this->getWhereExpression()) {\n- $query->where($this->getWhereExp...
PHP
MIT License
bolt/core
Use 'andWhere' instead of 'where'
95,144
18.06.2019 17:26:04
-7,200
76cf85ccdb8a909ed6016b3c31d9a08442b5d0b9
Use wttr.in for weather instead
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -19,67 +19,26 @@ class WeatherWidget extends BaseWidget implements TwigAware, CacheAware, Stopwat\nprotected $priority = 200;\nprotected $template = '@bolt/widgets/weather.t...
PHP
MIT License
bolt/core
Use wttr.in for weather instead
95,144
18.06.2019 17:28:00
-7,200
e652daad443c17d5915243bc633ebb484a4a9aa7
Still cache it, though
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -19,7 +19,7 @@ class WeatherWidget extends BaseWidget implements TwigAware, CacheAware, Stopwat\nprotected $priority = 200;\nprotected $template = '@bolt/widgets/weather.twi...
PHP
MIT License
bolt/core
Still cache it, though
95,144
19.06.2019 10:11:55
-7,200
997c6da9b8e3656edd25fc136c346f832cc99171
Allow widgets to return `null` if they fail, and the results shouldn't be cached.
[ { "change_type": "MODIFY", "old_path": "src/Widget/BaseWidget.php", "new_path": "src/Widget/BaseWidget.php", "diff": "@@ -87,7 +87,7 @@ abstract class BaseWidget implements WidgetInterface\n* Method to 'invoke' the widget. Simple wrapper around the 'run' method,\n* which can be overridden in a custo...
PHP
MIT License
bolt/core
Allow widgets to return `null` if they fail, and the results shouldn't be cached.
95,144
19.06.2019 16:30:53
-7,200
227ae6d57cdb4e5fb07b567d7eeb2132c53d7580
Update _fonts.scss
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_fonts.scss", "new_path": "assets/scss/init/_fonts.scss", "diff": "font-weight: 200 900;\nfont-style: normal;\nfont-stretch: normal;\n- src: url('../../../node_modules/source-sans-pro/VAR/SourceSansVariable-Roman.ttf.woff2') format('woff2'),\n...
PHP
MIT License
bolt/core
Update _fonts.scss
95,144
21.06.2019 08:35:37
-7,200
8ea1d4d55d3cac672c8ac9a6ee776056f8e459a9
Return error when News couldn't be fetched
[ { "change_type": "MODIFY", "old_path": "src/Widget/NewsWidget.php", "new_path": "src/Widget/NewsWidget.php", "diff": "@@ -28,14 +28,18 @@ class NewsWidget extends BaseWidget implements TwigAware, RequestAware, CacheAwa\n{\n$news = $this->getNews();\n+ if (isset($news['information'])) {\n$currentItem...
PHP
MIT License
bolt/core
Return error when News couldn't be fetched
95,187
21.06.2019 14:30:02
-7,200
e30e14c22b3dd48dd70fbe6d74ef3c92903a0ae2
Rewrite button macros
[ { "change_type": "MODIFY", "old_path": "templates/_macro/_macro.html.twig", "new_path": "templates/_macro/_macro.html.twig", "diff": "{# Button Macro #}\n-{% macro button(label, icon, class, type, form) %}{% spaceless %}\n+{% macro button(label, icon, class, attr) %}{% spaceless %}\n{% set label = l...
PHP
MIT License
bolt/core
Rewrite button macros
95,144
21.06.2019 15:07:20
-7,200
98dc5b3cb0d83ef38c60eac598124cf275252fbd
Correctly get first element from a select element.
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/SelectField.php", "new_path": "src/Entity/Field/SelectField.php", "diff": "@@ -21,10 +21,10 @@ class SelectField extends Field implements FieldInterface\npublic function getValue(): ?array\n{\nif (empty($this->value)) {\n- $options = (array) $...
PHP
MIT License
bolt/core
Correctly get first element from a select element.
95,144
21.06.2019 15:42:47
-7,200
1fe95466bf7998047271ea23d546d6d5c1bf9cf7
Don't include easy-log-handler
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"doctrine/doctrine-bundle\": \"^1.11\",\n\"doctrine/doctrine-cache-bundle\": \"^1.3.1\",\n\"doctrine/orm\": \"^2.6\",\n- \"easycorp/easy-log-handler\": \"^1.0.7\",\n\"embed/embed\": \"^3.3\",\n\"erusev/par...
PHP
MIT License
bolt/core
Don't include easy-log-handler
95,144
22.06.2019 12:42:31
-7,200
28d7a794a03da1445ac8fbb0636a0ff6f4df18e0
Add HTML Sanitiser for fields
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -85,7 +85,7 @@ pages:\ncontent:\ntype: html\nheight: 300px\n- allowtwig: true\n+ allow_twig: true\ncheckbox:\ntype: checkbox\nlabel: \"This is a checkbox\"\n" }, { ...
PHP
MIT License
bolt/core
Add HTML Sanitiser for fields
95,144
22.06.2019 12:48:40
-7,200
a89951709420d1d1c9173c42f5404f11c20e7ba3
remove unneeded dumps
[ { "change_type": "MODIFY", "old_path": "src/Controller/Frontend/DetailController.php", "new_path": "src/Controller/Frontend/DetailController.php", "diff": "@@ -71,9 +71,6 @@ class DetailController extends TwigAwareController implements FrontendZone\n$recordSlug => $record,\n];\n- dump($record);\n- d...
PHP
MIT License
bolt/core
remove unneeded dumps
95,144
22.06.2019 14:19:25
-7,200
e703f96fc9a4d1b2e998b4d2d1af69e64c25c24b
Adding some e2e-tests for Sanitiser
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -309,6 +309,12 @@ tests:\ntext_plain:\ntype: text\nallow_html: false\n+ text_not_sanitised:\n+ type: text\n+ sanitise: false\n+ text_sanitised:\n+ type: text\n+ sanitise: ...
PHP
MIT License
bolt/core
Adding some e2e-tests for Sanitiser
95,144
22.06.2019 15:19:30
-7,200
89b281cd4653ef51d1eb177f3579532401d74210
Make sure multiple selects keep all values
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/_base.html.twig", "new_path": "templates/_partials/fields/_base.html.twig", "diff": "{# Set the value #}\n{% if not value|default %}\n{% set value = field.value|default('') %}\n- {% if value is iterable %}\n+ {% if value is iterable ...
PHP
MIT License
bolt/core
Make sure multiple selects keep all values
95,144
22.06.2019 16:55:36
-7,200
85b30b858bdde5f30accd67077e6c872d1c0b921
Bumping NPM dependencies
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "}\n},\n\"eslint\": {\n- \"version\": \"5.16.0\",\n- \"resolved\": \"https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz\",\n- \"integrity\": \"sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5...
PHP
MIT License
bolt/core
Bumping NPM dependencies
95,192
24.06.2019 15:06:26
-7,200
2607a7b8be0cadcad197bd051738992e41473a30
Readme refinements
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -17,13 +17,13 @@ Follow the progress on Bolt 4, at the following locations\n- Bolt 4 roadmap: https://roadmap.bolt.cm\n- Slack: https://boltcms.slack.com/messages/C0NJEK631 (open for all, requires Slack account)...
PHP
MIT License
bolt/core
Readme refinements
95,192
24.06.2019 15:12:57
-7,200
6490c25b7db4865e9940ae7b35901a58d4161662
Extra info about the following install steps
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -17,6 +17,9 @@ Follow the progress on Bolt 4, at the following locations\n- Bolt 4 roadmap: https://roadmap.bolt.cm\n- Slack: https://boltcms.slack.com/messages/C0NJEK631 (open for all, requires Slack account)\n...
PHP
MIT License
bolt/core
Extra info about the following install steps
95,187
25.06.2019 15:36:46
-7,200
ac8df78d7e37ffd6c14748d44a2f32c329f6589d
Better disabled buttons, improved defaults in button macro
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_variables.scss", "new_path": "assets/scss/init/_variables.scss", "diff": "@@ -33,6 +33,9 @@ $headings-font-weight: 600;\n$link-color: var(--primary);\n$link-hover-color: var(--primary-600);\n+//buttons\n+$btn-disabled-opacity: 1;\n+\n// Form ...
PHP
MIT License
bolt/core
Better disabled buttons, improved defaults in button macro
95,187
25.06.2019 16:12:55
-7,200
4ee722f77eb0f8e71d56930a8d2dd71b246542b8
rewrite save-button to new macro (failed test earlier)
[ { "change_type": "MODIFY", "old_path": "templates/content/_buttons.html.twig", "new_path": "templates/content/_buttons.html.twig", "diff": "{% import '@bolt/_macro/_macro.html.twig' as macro %}\n<div class=\"btn-group\">\n-{{ macro.button('action.save', 'fa-save', 'success', 'submit', 'editcontent')...
PHP
MIT License
bolt/core
rewrite save-button to new macro (failed test earlier)
95,187
25.06.2019 16:40:23
-7,200
e94aa6a49d0cfaa4ac40673789367bb3c61e2a9a
update test + put disabled defaut button in kitchensink
[ { "change_type": "MODIFY", "old_path": "templates/pages/kitchensink.html.twig", "new_path": "templates/pages/kitchensink.html.twig", "diff": "<label>Default</label>\n<p>\n{{ macro.button() }}\n+ {{ macro.button('Button', 'fa-question-circle', 'tertiary', {'disabled': 'disabled' }) }}\n</p>\n<label>P...
PHP
MIT License
bolt/core
update test + put disabled defaut button in kitchensink
95,187
28.06.2019 11:01:56
-7,200
a93b8ca3ce6330f2281f71381ff3e110bbfad77f
Weather widget should not break Bolt when giving an error
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -25,7 +25,8 @@ class WeatherWidget extends BaseWidget implements TwigAware, CacheAware, Stopwat\n{\n$weather = $this->getWeather();\n- if (empty($weather)) {\n+ if (count($w...
PHP
MIT License
bolt/core
Weather widget should not break Bolt when giving an error
95,144
28.06.2019 13:03:46
-7,200
87c363e8162c0dd592ed90cd2441216223f1e729
Cast output to string, in case widget fails.
[ { "change_type": "MODIFY", "old_path": "src/Widgets.php", "new_path": "src/Widgets.php", "diff": "@@ -73,7 +73,7 @@ class Widgets\n})->first();\nif ($widget) {\n- return $this->invokeWidget($widget, $params);\n+ return (string) $this->invokeWidget($widget, $params);\n}\n}\n" } ]
PHP
MIT License
bolt/core
Cast output to string, in case widget fails.
95,144
28.06.2019 13:05:33
-7,200
bcd3683252b983a9963ffdc28cbb806eb7c5a1ca
Slightly different way to handle error from wttr.in response
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -25,8 +25,7 @@ class WeatherWidget extends BaseWidget implements TwigAware, CacheAware, Stopwat\n{\n$weather = $this->getWeather();\n- if (count($weather)<=1) {\n- // weathe...
PHP
MIT License
bolt/core
Slightly different way to handle error from wttr.in response
95,144
28.06.2019 13:17:48
-7,200
557425bf12deb4b51c27222e71e8b0d3c06f04b2
Herp, Derp, multibyte..
[ { "change_type": "MODIFY", "old_path": "src/Widget/WeatherWidget.php", "new_path": "src/Widget/WeatherWidget.php", "diff": "@@ -41,7 +41,7 @@ class WeatherWidget extends BaseWidget implements TwigAware, CacheAware, Stopwat\ntry {\n$client = new Client();\n$result = $client->request('GET', $url)->get...
PHP
MIT License
bolt/core
Herp, Derp, multibyte..
95,187
28.06.2019 14:39:59
-7,200
3acadba5eebcdf282e52773096242b052e455337
Adds hidden-danger class
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_variables.scss", "new_path": "assets/scss/init/_variables.scss", "diff": "@@ -84,6 +84,11 @@ $grid-breakpoints: (\n// Modal Dialog spacing\n$modal-dialog-margin-y-sm-up: 4rem;\n+// This number determines of a button has white or black text (a...
PHP
MIT License
bolt/core
Adds hidden-danger class - #493
95,192
28.06.2019 16:16:32
-7,200
5e989b17d502e751f3bf44318dbb8efcf4ff3ba4
redo of layout backend, making it responsive and mobile first. MVP for now
[ { "change_type": "MODIFY", "old_path": "assets/js/app/notifications/index.js", "new_path": "assets/js/app/notifications/index.js", "diff": "@@ -2,4 +2,19 @@ import $ from 'jquery';\n$(document).ready(function() {\n$('.toast').toast('show');\n+ // add a js class to indicate we have JS enabled. Needs ...
PHP
MIT License
bolt/core
redo of layout backend, making it responsive and mobile first. MVP for now
95,144
29.06.2019 16:49:29
-7,200
4963fd8f35508c19ed9aeab520f54ab5db177603
Adding simple "menu" pages, for mobile
[ { "change_type": "MODIFY", "old_path": "assets/scss/init/_variables.scss", "new_path": "assets/scss/init/_variables.scss", "diff": "@@ -68,7 +68,7 @@ $success: #61A31F;\n$info: #17A2B8;\n$warning: #FFC107;\n$danger: #DB2427;\n-$light: #E8E8E8;\n+$light: #E0E0E0;\n$dark: #333;\n$disabled: #C8C8C8;\n"...
PHP
MIT License
bolt/core
Adding simple "menu" pages, for mobile
95,187
01.07.2019 18:08:28
-7,200
4b80e2db46b77ec4d4cfeeb8c65d6b497592d2c5
Styling dropzone
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/editor/fields/_image.scss", "new_path": "assets/scss/modules/editor/fields/_image.scss", "diff": "width: 100%;\n}\n}\n+ &--dropzone {\n+ width: 100%;\n+ height: 100%;\n+ padding: 1rem;\n+ display: flex;\n+ align-items: center;\n+ justify-co...
PHP
MIT License
bolt/core
Styling dropzone #463