author int64 658 755k | date stringlengths 19 19 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods list | language stringclasses 20 values | license stringclasses 3 values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
424,171 | 18.01.2018 15:12:45 | -3,600 | 30a686d37e7dcba4e3d5c61a936601d2d2762ccb | register rules | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/MJMLRulesCollection.js",
"new_path": "packages/mjml-validator/src/MJMLRulesCollection.js",
"diff": "import warning from 'warning'\n+import { mapKeys } from 'lodash'\n+import { components } from 'mjml-core'\nimport * as rules from '.... | JavaScript | MIT License | mjmlio/mjml | register rules |
424,171 | 18.01.2018 16:12:43 | -3,600 | 1fb5f1ba70e9c31be93a1fe17db14953ae3511aa | added missing allowedAttributes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-body/src/index.js",
"new_path": "packages/mjml-body/src/index.js",
"diff": "@@ -22,7 +22,6 @@ export default class MjBody extends BodyComponent {\nrender() {\nconst { setBackgroundColor } = this.context\n-\nsetBackgroundColor(this.getAttribute('b... | JavaScript | MIT License | mjmlio/mjml | added missing allowedAttributes |
424,171 | 18.01.2018 17:06:05 | -3,600 | a5e0f9036255f12967ea90d87e686a09d0c76ed6 | add allowed width attribute | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -11,17 +11,18 @@ export default class MjImage extends BodyComponent {\n'alt': 'string',\n'href': 'string',\n'src': 'string',\n- 'padding-bottom': 'unit(px,%)',\n- 'p... | JavaScript | MIT License | mjmlio/mjml | add allowed width attribute |
424,171 | 18.01.2018 17:08:52 | -3,600 | 9290d0f1611de25fe92c779458b692274ebb607b | allow some tags even if no associated component | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/validTag.js",
"new_path": "packages/mjml-validator/src/rules/validTag.js",
"diff": "+import { includes } from 'lodash'\nimport ruleError from './ruleError'\n+// Tags that have no associated components but are allowed even so\n... | JavaScript | MIT License | mjmlio/mjml | allow some tags even if no associated component |
424,171 | 18.01.2018 19:04:19 | -3,600 | b1eabb0ecaf631c26b030e1a9e354e4137dac530 | validation errors logging in cli | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "import yargs from 'yargs'\nimport { html as htmlBeautify } from 'js-beautify'\nimport { flow, pick, isNil, negate, pickBy } from 'lodash/fp'\n-import { isArray, isEmpty }... | JavaScript | MIT License | mjmlio/mjml | validation errors logging in cli |
424,171 | 18.01.2018 19:05:34 | -3,600 | 796a10b767644a8b26c2b3c63f86c9836c197e3a | handle regex when displaying allowed parentTags | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/validChildren.js",
"new_path": "packages/mjml-validator/src/rules/validChildren.js",
"diff": "@@ -36,7 +36,10 @@ export default function validChildren(element, { components }) {\nreturn true\n}\n- const allowedDependencies = k... | JavaScript | MIT License | mjmlio/mjml | handle regex when displaying allowed parentTags |
424,171 | 18.01.2018 19:08:02 | -3,600 | 83ffc7de744b132acf72bd64f3414bce059060e4 | cur must go back to parent node on close tag even if inInclude | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -174,7 +174,6 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\nonclosetag: () => {\nif (inInclude) {\ninInclude = false\n- retu... | JavaScript | MIT License | mjmlio/mjml | cur must go back to parent node on close tag even if inInclude |
424,171 | 19.01.2018 15:09:42 | -3,600 | 8093df2890567abf445d0595fd164d8f86b1b787 | fix social migrate & add default display | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-migrate/src/migrate.js",
"new_path": "packages/mjml-migrate/src/migrate.js",
"diff": "@@ -42,15 +42,16 @@ function cleanAttributes(attributes) {\nreturn attributes\n}\n+const DEFAULT_SOCIAL_DISPLAY = 'facebook twitter google'\n+\nfunction migrate... | JavaScript | MIT License | mjmlio/mjml | fix social migrate & add default display |
424,171 | 19.01.2018 18:09:21 | -3,600 | d90d7bea4ab86c7207cef6aafeee8e765451681d | mj-social deps and allowed attrs | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -50,6 +50,8 @@ export default class MjSocialElement extends BodyComponent {\n'font-size': 'unit(px,%)',\n'font-style': 'string',\n'font-weight': 's... | JavaScript | MIT License | mjmlio/mjml | mj-social deps and allowed attrs |
424,171 | 19.01.2018 18:10:03 | -3,600 | 7d9241ce1498bca1cbd0309116d29a1bef8f0abd | make rule safer since sometimes data is missing | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/ruleError.js",
"new_path": "packages/mjml-validator/src/rules/ruleError.js",
"diff": "export default function ruleError(message, element) {\n- const { line, tagName, includedIn, absoluteFilePath } = element\n+ const { line, ta... | JavaScript | MIT License | mjmlio/mjml | make rule safer since sometimes data is missing |
424,191 | 22.01.2018 17:41:47 | -3,600 | 0387b57da9a9e4db081baf14c5c047fed24ff92a | Set minifyCSS to false
html-minifier is converting every color name to a hex-value. This causes font names like "Arial Black" to be turned into "Arial #000". Disabling minifyCSS prevents this. | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -236,7 +236,7 @@ export default function mjml2html(mjml, options = {}) {\ncontent = minify\n? htmlMinify(content, {\ncollapseWhitespace: true,\n- minifyCSS: true,\n+ m... | JavaScript | MIT License | mjmlio/mjml | Set minifyCSS to false
html-minifier is converting every color name to a hex-value. This causes font names like "Arial Black" to be turned into "Arial #000". Disabling minifyCSS prevents this. |
424,171 | 30.01.2018 17:49:30 | -3,600 | abc0daac7dae328d09632452bf2de52213092d60 | properly set cur while parsing includes, fix | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -75,7 +75,6 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\ncontent: `<!-- mj-include fails to read file : ${file} at ${partia... | JavaScript | MIT License | mjmlio/mjml | properly set cur while parsing includes, fix #970 |
424,171 | 30.01.2018 17:55:37 | -3,600 | 86e5a9f8c64a95e0717c69cff2a422d45882b2c8 | re fix & removes endingTag that causes weird shift in html | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-raw/src/index.js",
"new_path": "packages/mjml-raw/src/index.js",
"diff": "import { BodyComponent } from 'mjml-core'\nexport default class MjRaw extends BodyComponent {\n- static endingTag = true\n- static rawElement = true\n+ constructor(props) {... | JavaScript | MIT License | mjmlio/mjml | re fix #935 & removes endingTag that causes weird shift in html |
424,171 | 30.01.2018 17:58:03 | -3,600 | f61a377313f78a3a7a831e75620c335f5e61661a | fix minify-beautify options received in strings from cli & pass filePath to parser, which fixes relative paths in mj-includes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -47,12 +47,14 @@ export default function mjml2html(mjml, options = {}) {\nminify = false,\nskeleton = defaultSkeleton,\nvalidationLevel = 'soft',\n+ filePath = '.'\n} ... | JavaScript | MIT License | mjmlio/mjml | fix minify-beautify options received in strings from cli & pass filePath to parser, which fixes relative paths in mj-includes |
424,171 | 31.01.2018 13:08:25 | -3,600 | 0402539bdf9cb95265cd251f5ed2cb26d3f2935f | fix handle css-class in navbar-link | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-navbar/src/NavbarLink.js",
"new_path": "packages/mjml-navbar/src/NavbarLink.js",
"diff": "@@ -62,10 +62,14 @@ export default class MjNavbarLink extends BodyComponent {\n? url.resolve(navbarBaseUrl, href)\n: href\n+ const cssClass = this.getAttrib... | JavaScript | MIT License | mjmlio/mjml | fix #892 handle css-class in navbar-link |
424,171 | 31.01.2018 13:09:54 | -3,600 | fb88926f2b53586e67332dcb89493f3e84a13927 | fix add meta for viewport | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/skeleton.js",
"new_path": "packages/mjml-core/src/helpers/skeleton.js",
"diff": "@@ -29,6 +29,7 @@ export default function skeleton(options) {\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n<!--<![endif]-->\n<meta ht... | JavaScript | MIT License | mjmlio/mjml | fix #967 add meta for viewport |
424,171 | 31.01.2018 13:47:38 | -3,600 | 2259686c454f2b8c8aea517418914267a7bef1e9 | fix add option to renderChildren to return raw XML for custom comps | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -3,6 +3,7 @@ import { get, forEach, identity, reduce, kebabCase } from 'lodash'\nimport MJMLParser from 'mjml-parser-xml'\nimport shorthandParser f... | JavaScript | MIT License | mjmlio/mjml | fix #914 add option to renderChildren to return raw XML for custom comps |
424,171 | 31.01.2018 14:09:03 | -3,600 | 9b3d922a06a64dc3a5ca99d619f92622e02c9359 | fix dont add body bg-color if not defined | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/skeleton.js",
"new_path": "packages/mjml-core/src/helpers/skeleton.js",
"diff": "@@ -83,7 +83,7 @@ export default function skeleton(options) {\n? `<style type=\"text/css\">${style.join('')}</style>`\n: ''}\n</head>\n- <body style... | JavaScript | MIT License | mjmlio/mjml | fix #964 dont add body bg-color if not defined |
424,171 | 02.02.2018 15:30:12 | -3,600 | 2c1c3586710b53b5b2537cce0586ca1f04eea048 | add missing allowedAttributes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-divider/src/index.js",
"new_path": "packages/mjml-divider/src/index.js",
"diff": "@@ -9,7 +9,12 @@ export default class MjDivider extends BodyComponent {\n'border-color': 'color',\n'border-style': 'string',\n'border-width': 'unit(px)',\n+ 'contai... | JavaScript | MIT License | mjmlio/mjml | add missing allowedAttributes |
424,171 | 05.02.2018 16:28:28 | -3,600 | 8ae2b20b77859195aabcddbf1305ec5102e03a1e | add missing attributes & doc update | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -41,23 +41,11 @@ Displays calls-to-action for various social networks with their associated logo.\n</aside>\n-->\n-<aside class=\"notice\">\n- You can add any unsupporte... | JavaScript | MIT License | mjmlio/mjml | add missing attributes & doc update |
424,171 | 05.02.2018 16:43:13 | -3,600 | a86c9a62ebf43bf476fdd00541f99b8ce9e2ea19 | last doc fix | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -80,7 +80,7 @@ attribute | unit | description | defa\n----------------------------|-------------|-------------------------------|---------------------------\nborder-radi... | JavaScript | MIT License | mjmlio/mjml | last doc fix |
424,171 | 22.02.2018 15:39:08 | -3,600 | 2a73a91763e1ae0b437a0798d63395248910cfbf | fix validChildren returning true instead of null when regex check | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/validChildren.js",
"new_path": "packages/mjml-validator/src/rules/validChildren.js",
"diff": "@@ -33,7 +33,7 @@ export default function validChildren(element, { components }) {\n}\nif (parentDependencies.some(dep => dep instan... | JavaScript | MIT License | mjmlio/mjml | fix validChildren returning true instead of null when regex check |
424,171 | 22.02.2018 16:28:37 | -3,600 | 70bb35e1e16f4a767e66b9e6adb9943e1367ce53 | fix when handling head tag with no corresponding component | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -198,7 +198,7 @@ export class HeadComponent extends Component {\n},\n})\n- if (component.handler) {\n+ if (component && component.handler) {\ncompo... | JavaScript | MIT License | mjmlio/mjml | fix when handling head tag with no corresponding component |
424,171 | 22.02.2018 17:12:23 | -3,600 | b2b5c123a166e2aae68d931a9a461ec06180c2f7 | add warning when no matching component for tag in head | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -198,7 +198,12 @@ export class HeadComponent extends Component {\n},\n})\n- if (component && component.handler) {\n+ if (!component) {\n+ console.l... | JavaScript | MIT License | mjmlio/mjml | add warning when no matching component for tag in head |
424,171 | 23.02.2018 13:27:04 | -3,600 | 4f11a202f657d2b5fdda705d52a11723b5721106 | allow to cumulate css-classes from mj-classes - resolve | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -136,12 +136,24 @@ export default function mjml2html(mjml, options = {}) {\nconst classes = get(mjml.attributes, 'mj-class', '').split(' ')\nconst attributesClasses = ... | JavaScript | MIT License | mjmlio/mjml | allow to cumulate css-classes from mj-classes - resolve #722 |
424,171 | 23.02.2018 16:50:04 | -3,600 | 16d090f0c15f976ac31296c62719d16b51750e18 | Add target attribute to social-element & mj-button, update doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/README.md",
"new_path": "packages/mjml-button/README.md",
"diff": "@@ -49,6 +49,7 @@ vertical-align | string | vertical alignment\nline-height | px/%/none | line-height on link | 120%\nhref | link | link to be triggered when the button is ... | JavaScript | MIT License | mjmlio/mjml | Add target attribute to social-element & mj-button, update doc |
424,171 | 23.02.2018 17:19:28 | -3,600 | df2d41c88b46ae4c2ea9879c01f7ebcf5eb0fd55 | Add target attribute on navbar and carousel links | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -47,6 +47,7 @@ export default class MjButton extends BodyComponent {\n'inner-padding': '10px 25px',\n'line-height': '120%',\npadding: '10px 25px',\n+ target: '_bla... | JavaScript | MIT License | mjmlio/mjml | Add target attribute on navbar and carousel links |
424,171 | 23.02.2018 18:05:27 | -3,600 | d7dd513355222f8e5eb3cfb0415959693bbe1b0b | add fluid-on-mobile attribute on images, resolve | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/README.md",
"new_path": "packages/mjml-image/README.md",
"diff": "@@ -42,3 +42,4 @@ alt | string | image description |\nalign | position | image alignment | center\ntitle | string | tooltip & accessibility | n/a\ncss-class | string | class ... | JavaScript | MIT License | mjmlio/mjml | add fluid-on-mobile attribute on images, resolve #263 |
424,171 | 26.02.2018 15:54:45 | -3,600 | d2e1746adc102d48f467c7fb87383a09ad967af0 | Include type checking in validation | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/index.js",
"new_path": "packages/mjml-validator/src/index.js",
"diff": "-import { concat, filter, includes, values } from 'lodash'\n+import { flatten, concat, filter, includes, values } from 'lodash'\nimport ruleError from './rules/... | JavaScript | MIT License | mjmlio/mjml | Include type checking in validation |
424,260 | 01.03.2018 15:07:11 | -3,600 | fadc0f2f4ad0ad9776a22e93c4a4c4642fdbb522 | add srcset as an allowed attribute of mj-image | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -11,6 +11,7 @@ export default class MjImage extends BodyComponent {\n'alt': 'string',\n'href': 'string',\n'src': 'string',\n+ 'srcset': 'string',\n'title': 'string',... | JavaScript | MIT License | mjmlio/mjml | add srcset as an allowed attribute of mj-image |
424,171 | 06.03.2018 14:01:46 | -3,600 | c436a8bdda296e49edbf8112f59bb9e0c1d5a81d | Allow registerDependencies to merge with existing arrays | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/dependencies.js",
"new_path": "packages/mjml-validator/src/dependencies.js",
"diff": "-import merge from 'lodash/merge'\n+import { mergeWith, isArray } from 'lodash'\n+\n+function mergeArrays(objValue, srcValue) {\n+ if (isArray(obj... | JavaScript | MIT License | mjmlio/mjml | Allow registerDependencies to merge with existing arrays |
424,171 | 06.03.2018 14:02:36 | -3,600 | b2d0737f769c4fdefef56b53c9105be5a784ebd0 | remove remaining inline-links dependencies | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml/src/dependencies.js",
"new_path": "packages/mjml/src/dependencies.js",
"diff": "@@ -16,7 +16,6 @@ export default {\n'mj-divider',\n'mj-html',\n'mj-image',\n- 'mj-inline-links',\n'mj-invoice',\n'mj-list',\n'mj-location',\n@@ -60,7 +59,6 @@ export ... | JavaScript | MIT License | mjmlio/mjml | remove remaining inline-links dependencies |
424,182 | 07.03.2018 22:20:53 | 0 | 7c930bf72aa540302c0343660ea87adef7f66d82 | Remove doc for attribute `inner-padding`.
Removed the `inner-padding` attribute from the doc for `mj-social-element`, because it isn't valid. | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -92,7 +92,6 @@ align | string | left/right/center | cent\ncolor | color | text color | #333333\nname | string | `facebook google instagram pinterest linkedin twitter` | ... | JavaScript | MIT License | mjmlio/mjml | Remove doc for attribute `inner-padding`.
Removed the `inner-padding` attribute from the doc for `mj-social-element`, because it isn't valid. |
424,182 | 08.03.2018 09:44:57 | 0 | a06e4d795df711d89205f59953c308c3897502e3 | Remove 'icon-color' attribute from code and doc.
Setting `icon-color` has no effect, removed from doc and from the allowed
attributes list. The correct way to set a colour of the icon is via the
`background-color` attribute, which is already documented. | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -12,13 +12,13 @@ Displays calls-to-action for various social networks with their associated logo.\n<mj-section>\n<mj-column>\n<mj-social font-size=\"15px\" icon-size=\"3... | JavaScript | MIT License | mjmlio/mjml | Remove 'icon-color' attribute from code and doc.
Setting `icon-color` has no effect, removed from doc and from the allowed
attributes list. The correct way to set a colour of the icon is via the
`background-color` attribute, which is already documented. |
424,171 | 08.03.2018 14:57:25 | -3,600 | aae1312e16b202ca9db4429a811d79866a1ec181 | fix allow traverseMjml to ignore part of the tree to prevent selecting mj-body inside mj-attributes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/traverseMJML.js",
"new_path": "packages/mjml-core/src/helpers/traverseMJML.js",
"diff": "@@ -3,9 +3,13 @@ import head from 'lodash/head'\nimport map from 'lodash/map'\nimport noop from 'lodash/noop'\n-export default function trav... | JavaScript | MIT License | mjmlio/mjml | fix #1027 allow traverseMjml to ignore part of the tree to prevent selecting mj-body inside mj-attributes |
424,171 | 08.03.2018 17:54:24 | -3,600 | 0a99539668a5f542f0ac301f531df06adeff3a4d | pass inner-padding to children as padding | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/Social.js",
"new_path": "packages/mjml-social/src/Social.js",
"diff": "@@ -46,6 +46,11 @@ export default class MjSocial extends BodyComponent {\n}\ngetSocialElementAttributes() {\n+ const base = {}\n+ if (this.getAttribute('inner-paddi... | JavaScript | MIT License | mjmlio/mjml | pass inner-padding to children as padding |
424,171 | 08.03.2018 18:35:55 | -3,600 | 4bb905aa0c62442d5fea5ee3e419aa695355d371 | fix mj-group style | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-group/src/index.js",
"new_path": "packages/mjml-group/src/index.js",
"diff": "@@ -59,12 +59,10 @@ export default class MjGroup extends BodyComponent {\n'font-size': '0',\n'line-height': '0',\n'text-align': 'left',\n- direction: this.getAttribute(... | JavaScript | MIT License | mjmlio/mjml | fix #1022 mj-group style |
424,182 | 09.03.2018 14:25:14 | 0 | 618c5083cef7e15ca8e53c54bdeb6078d07f8fd2 | Make the icons grey again in example code. | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -12,13 +12,13 @@ Displays calls-to-action for various social networks with their associated logo.\n<mj-section>\n<mj-column>\n<mj-social font-size=\"15px\" icon-size=\"3... | JavaScript | MIT License | mjmlio/mjml | Make the icons grey again in example code. |
424,171 | 09.03.2018 17:07:55 | -3,600 | 2f29337c9f59c8b6f15e50c447b158912d16534c | fix strip path from input when formatting output fileName | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/commands/outputToFile.js",
"new_path": "packages/mjml-cli/src/commands/outputToFile.js",
"diff": "@@ -7,6 +7,7 @@ export const isDirectory = file => {\nreturn fs.statSync(outputPath).isDirectory()\n} catch (e) {\n+ console.log('Error: Out... | JavaScript | MIT License | mjmlio/mjml | fix #1023 strip path from input when formatting output fileName |
424,171 | 09.03.2018 18:03:12 | -3,600 | c09d8eef83de2a62badb23790e10a6355c323a50 | use lodash to simplify | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -139,7 +139,7 @@ export default function mjml2html(mjml, options = {}) {\n(acc, value) => {\nconst mjClassValues = globalDatas.classes[value]\nlet multipleClasses = {}... | JavaScript | MIT License | mjmlio/mjml | use lodash to simplify |
424,171 | 09.03.2018 18:15:41 | -3,600 | 6fe12fc9916d6586a62b23ef81fc0d136ecd3183 | remove actually not allowed attributes on mj-group | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-group/src/index.js",
"new_path": "packages/mjml-group/src/index.js",
"diff": "@@ -5,18 +5,7 @@ import widthParser from 'mjml-core/lib/helpers/widthParser'\nexport default class MjGroup extends BodyComponent {\nstatic allowedAttributes = {\n'backg... | JavaScript | MIT License | mjmlio/mjml | remove actually not allowed attributes on mj-group |
424,171 | 09.03.2018 19:39:13 | -3,600 | e25afbd400c5866a9c66f70d6bafd2c80636f0a6 | revert traverseMjml | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/traverseMJML.js",
"new_path": "packages/mjml-core/src/helpers/traverseMJML.js",
"diff": "@@ -3,13 +3,9 @@ import head from 'lodash/head'\nimport map from 'lodash/map'\nimport noop from 'lodash/noop'\n-export default function trav... | JavaScript | MIT License | mjmlio/mjml | revert traverseMjml |
424,171 | 09.03.2018 19:41:29 | -3,600 | 810ee9fd486f2f44cf8f64f80413555d872c5bbc | only search body and head in first level | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "-import { get, identity, map, omit, reduce } from 'lodash'\n+import { find, get, identity, map, omit, reduce } from 'lodash'\nimport path from 'path'\nimport juice from '... | JavaScript | MIT License | mjmlio/mjml | only search body and head in first level |
424,171 | 11.03.2018 16:49:51 | -3,600 | bae45449e3ef9797e13c6510a94e68f338ce076d | fix add vertical align on outlook td | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/src/index.js",
"new_path": "packages/mjml-column/src/index.js",
"diff": "@@ -232,6 +232,7 @@ export default class MjColumn extends BodyComponent {\n<td\n${component.htmlAttributes({\nalign: component.getAttribute('align'),\n+ 'vertical-ali... | JavaScript | MIT License | mjmlio/mjml | fix #1017 add vertical align on outlook td |
424,171 | 12.03.2018 14:59:46 | -3,600 | 4ba68cccaf364586c4f77bcd40782ec1001c2156 | re-fix to handle special chars in file names | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/commands/outputToFile.js",
"new_path": "packages/mjml-cli/src/commands/outputToFile.js",
"diff": "@@ -18,12 +18,11 @@ const replaceExtension = input =>\ninput.replace('.mjml', '').match(/(.)*\\.(.)+$/g) ? '' : '.html',\n)\n-const stripPat... | JavaScript | MIT License | mjmlio/mjml | re-fix to handle special chars in file names |
424,171 | 13.03.2018 15:19:58 | -3,600 | 003d4071d3d51ef58f7a899630b1181d3d6bb854 | remove misguided warning | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/commands/outputToFile.js",
"new_path": "packages/mjml-cli/src/commands/outputToFile.js",
"diff": "@@ -7,7 +7,6 @@ export const isDirectory = file => {\nreturn fs.statSync(outputPath).isDirectory()\n} catch (e) {\n- console.log('Error: Out... | JavaScript | MIT License | mjmlio/mjml | remove misguided warning |
424,171 | 13.03.2018 15:35:34 | -3,600 | 2f01c34b5b74ab4c3b750bcf10208ed44c5d5088 | more precise warning for non existing dir | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -175,7 +175,7 @@ export default async () => {\ncase 'o':\nif (inputs.length > 1 && (!isDirectory(argv.o) && argv.o !== '')) {\nerror(\n- `Multiple input files, but out... | JavaScript | MIT License | mjmlio/mjml | more precise warning for non existing dir |
424,171 | 23.03.2018 14:02:34 | -3,600 | 5faa22a6499903fd7c8b9e48eac2f9c7d1e79c7e | fix put padding attr in style | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-navbar/src/NavbarLink.js",
"new_path": "packages/mjml-navbar/src/NavbarLink.js",
"diff": "@@ -53,6 +53,13 @@ export default class MjNavbarLink extends BodyComponent {\n'padding-right': this.getAttribute('padding-right'),\n'padding-bottom': this.g... | JavaScript | MIT License | mjmlio/mjml | fix #1072 put padding attr in style |
424,171 | 26.03.2018 17:44:20 | -7,200 | f67b99428eef9d644489edc3bced86d9c17662f3 | fix social allow icon-height | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -57,7 +57,8 @@ attribute | unit | description | defa\nborder-radius | px | border radius | 3px\nfont-family | string | font name | Ubuntu, Helvetica, Arial, sans-serif\n... | JavaScript | MIT License | mjmlio/mjml | fix #1018 social allow icon-height |
424,171 | 26.03.2018 18:38:41 | -7,200 | 00b29a73ad6ca4ec9eac5866b56ebfb064c8b90a | fix column & group use max-width to handle clients that wipe important tags | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -172,7 +172,7 @@ export default function mjml2html(mjml, options = {}) {\naddMediaQuery(className, { parsedWidth, unit }) {\nglobalDatas.mediaQueries[\nclassName\n- ] ... | JavaScript | MIT License | mjmlio/mjml | fix #919 column & group use max-width to handle clients that wipe important tags |
424,171 | 29.03.2018 03:24:50 | -7,200 | 467aaed6ff9087080bc016b706b02169e102d8c5 | add error messages and verbose option | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/README.md",
"new_path": "packages/mjml-cli/README.md",
"diff": "@@ -60,6 +60,12 @@ $> mjml input.mjml --config.beautify true --config.minify false\nThese are the default options.\n+### Log debug information\n+\n+```bash\n+$> mjml input.mjml -... | JavaScript | MIT License | mjmlio/mjml | add error messages and verbose option |
424,162 | 29.03.2018 10:56:15 | -7,200 | 1ecb15c132efa9c9b4dab0862c2c80d29a05056b | document MJML in json with v4 | [
{
"change_type": "MODIFY",
"old_path": "doc/config.json",
"new_path": "doc/config.json",
"diff": "\"mjml/doc/mjml-chart.md\",\n\"mjml/packages/mjml-validator/README.md\",\n\"mjml/doc/create.md\",\n+ \"mjml/doc/using_mjml_in_json.md\",\n\"mjml/doc/tooling.md\"\n]\n"
},
{
"change_type": "ADD",... | JavaScript | MIT License | mjmlio/mjml | document MJML in json with v4 |
424,171 | 30.03.2018 17:15:45 | -7,200 | 68568dc77feb815fa63bab6e6435c6cd501ac5df | add more logging, prettier | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/commands/outputToFile.js",
"new_path": "packages/mjml-cli/src/commands/outputToFile.js",
"diff": "@@ -42,7 +42,7 @@ export default outputPath => {\nfs.writeFile(outputName, html, err => {\nif (err) {\n- return reject(outputName)\n+ return... | JavaScript | MIT License | mjmlio/mjml | add more logging, prettier |
424,171 | 05.04.2018 16:28:59 | -7,200 | 736715abaa7a0d590525a0205557afbc2ffea422 | handle mjmlconfig | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml/src/index.js",
"new_path": "packages/mjml/src/index.js",
"diff": "+import path from 'path'\n+import fs from 'fs'\n+\nimport mjml2html, { registerComponent } from 'mjml-core'\nimport { registerDependencies } from 'mjml-validator'\n@@ -46,4 +49,18 ... | JavaScript | MIT License | mjmlio/mjml | handle mjmlconfig |
424,171 | 05.04.2018 16:56:15 | -7,200 | 2557b25db945bc3f1ad55eb6ec7ad0a16cb237f2 | handle default exports | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml/src/index.js",
"new_path": "packages/mjml/src/index.js",
"diff": "@@ -55,7 +55,8 @@ try {\nconst custom_comps = JSON.parse(mjmlConfig).packages\ncustom_comps.forEach((compPath) => {\n- registerComponent(require(path.join(process.cwd(), compPath))... | JavaScript | MIT License | mjmlio/mjml | handle default exports |
424,171 | 05.04.2018 17:41:24 | -7,200 | 178bca74e369858aeeae26eafcb9b96a182a5db1 | fix tableAttributes shouldnt be an array | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-table/src/index.js",
"new_path": "packages/mjml-table/src/index.js",
"diff": "import { BodyComponent } from 'mjml-core'\n+import { reduce } from 'lodash'\nexport default class MjTable extends BodyComponent {\nstatic endingTag = true\n@@ -28,7 +29... | JavaScript | MIT License | mjmlio/mjml | fix #1086 tableAttributes shouldnt be an array |
424,171 | 05.04.2018 17:42:17 | -7,200 | da1b946490ec7d61ea6ed2d3e6fbe5ac63063cf2 | fix attr typo | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-table/src/index.js",
"new_path": "packages/mjml-table/src/index.js",
"diff": "@@ -54,7 +54,7 @@ export default class MjTable extends BodyComponent {\n}\nrender() {\n- const tableAttributes = reduce(['cellpading', 'cellspacing', 'width'], (acc, v)... | JavaScript | MIT License | mjmlio/mjml | fix attr typo |
424,171 | 09.04.2018 13:44:46 | -7,200 | d300e40bb62b224193cc3c3ecf11ca4175554d04 | fix mj-divider handle px width | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-divider/src/index.js",
"new_path": "packages/mjml-divider/src/index.js",
"diff": "@@ -61,7 +61,8 @@ export default class MjDivider extends BodyComponent {\nparseInt(parsedWidth, 10) /\n100 -\npaddingSize}px`\n-\n+ case 'px':\n+ return width\ndefa... | JavaScript | MIT License | mjmlio/mjml | fix #1084 mj-divider handle px width |
424,171 | 09.04.2018 13:51:03 | -7,200 | cff55f16a728b54c5724099494fc575786a53650 | fix Social add defaultAttr for href | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -75,6 +75,7 @@ export default class MjSocialElement extends BodyComponent {\npadding: '4px',\ntarget: '_blank',\n'text-decoration': 'none',\n+ href... | JavaScript | MIT License | mjmlio/mjml | fix #1118 Social add defaultAttr for href |
424,171 | 09.04.2018 15:09:46 | -7,200 | 8edd3c6f40cff3a0ec3fdf3ed77eea89ea464c42 | remove verbose option, document config.stack | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/README.md",
"new_path": "packages/mjml-cli/README.md",
"diff": "@@ -60,10 +60,10 @@ $> mjml input.mjml --config.beautify true --config.minify false\nThese are the default options.\n-### Log debug information\n+### Log error stack\n```bash\n-$... | JavaScript | MIT License | mjmlio/mjml | remove verbose option, document config.stack |
424,171 | 09.04.2018 15:30:48 | -7,200 | e4c447d9383bc192d8c94f3eebcda97fe70d461c | fix juice after skeleton so that body tag can be juiced | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -212,6 +212,11 @@ export default function mjml2html(mjml, options = {}) {\ncontent = processing(mjBody, bodyHelpers, applyAttributes)\n+ content = skeleton({\n+ conten... | JavaScript | MIT License | mjmlio/mjml | fix #1113 juice after skeleton so that body tag can be juiced |
424,208 | 11.04.2018 10:10:54 | -7,200 | 83b54794f20fe83ab3307752a5432c70089891e7 | Fix: Remove conflict tags - README mjml-head-font | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-head-font/README.md",
"new_path": "packages/mjml-head-font/README.md",
"diff": "@@ -8,7 +8,6 @@ This tag allows you to import fonts if used in your MJML document\n<mj-font name=\"Raleway\" href=\"https://fonts.googleapis.com/css?family=Raleway\" ... | JavaScript | MIT License | mjmlio/mjml | Fix: Remove conflict tags - README mjml-head-font |
424,171 | 13.04.2018 18:16:06 | -7,200 | 04ba6a89d386e9e260cc272eed38934c76b078b6 | handle css-class on Carousel image and thumbnail | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/CarouselImage.js",
"new_path": "packages/mjml-carousel/src/CarouselImage.js",
"diff": "@@ -62,6 +62,9 @@ export default class MjCarouselImage extends BodyComponent {\nrenderThumbnail() {\nconst { carouselId, src, alt, 'tb-width': wid... | JavaScript | MIT License | mjmlio/mjml | handle css-class on Carousel image and thumbnail |
424,171 | 15.04.2018 19:44:38 | -7,200 | d86f3206c0ca692d245859e47c42f863c3c01fcd | fix migrate mj-link | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-migrate/src/migrate.js",
"new_path": "packages/mjml-migrate/src/migrate.js",
"diff": "@@ -132,6 +132,9 @@ function loopThrough(tree) {\ncase 'mj-inline-links':\ntree.children[i].tagName = 'mj-navbar'\nbreak\n+ case 'mj-link':\n+ tree.children[i].... | JavaScript | MIT License | mjmlio/mjml | fix #1124 migrate mj-link |
424,171 | 15.04.2018 22:59:07 | -7,200 | ad7dfac6539e1ac319f159ea67912eb0290964db | rm useless cloning | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -120,10 +120,7 @@ export default class MjSocialElement extends BodyComponent {\n}\ngetSocialAttributes() {\n- const socialNetwork = {\n- ...default... | JavaScript | MIT License | mjmlio/mjml | rm useless cloning |
424,171 | 15.04.2018 23:56:05 | -7,200 | d4ed382710b9936c26d0161721be86fcfa318b7f | fix look in inlineStyle for fonts | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/fonts.js",
"new_path": "packages/mjml-core/src/helpers/fonts.js",
"diff": "import forEach from 'lodash/forEach'\nimport map from 'lodash/map'\n-export function buildFontsTags(content, fonts = {}) {\n+// eslint-disable-next-line i... | JavaScript | MIT License | mjmlio/mjml | fix #703 look in inlineStyle for fonts |
424,171 | 16.04.2018 13:04:03 | -7,200 | f3af61118e7a0d9e92659e5b62bb0274c06cd146 | fix remove color from wrapping td | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -67,7 +67,6 @@ export default class MjButton extends BodyComponent {\n'border-radius': this.getAttribute('border-radius'),\n'border-right': this.getAttribute('bord... | JavaScript | MIT License | mjmlio/mjml | fix #672 remove color from wrapping td |
424,171 | 16.04.2018 14:46:15 | -7,200 | ada745ce6b9d0e75e8fe36e2f59ec3f891499da5 | suffixing into helper | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/CarouselImage.js",
"new_path": "packages/mjml-carousel/src/CarouselImage.js",
"diff": "-import { BodyComponent } from 'mjml-core'\n+import { BodyComponent, suffixCssClasses } from 'mjml-core'\nimport { mapValues } from 'lodash'\nexpo... | JavaScript | MIT License | mjmlio/mjml | suffixing into helper |
424,171 | 16.04.2018 14:57:03 | -7,200 | 41ba5c12e93b5fe86f911a47a23780d39826abeb | fix remove incorrect attributes, fix gutter check | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/src/index.js",
"new_path": "packages/mjml-column/src/index.js",
"diff": "@@ -178,7 +178,13 @@ export default class MjColumn extends BodyComponent {\n}\nhasGutter() {\n- return this.getAttribute('padding') != null\n+ return [\n+ 'padding',\... | JavaScript | MIT License | mjmlio/mjml | fix #1135 remove incorrect attributes, fix gutter check |
424,171 | 16.04.2018 15:02:09 | -7,200 | 796823ce1974714aeb81e288c281969292b22e4e | minify conditional comments, fix doc | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -137,7 +137,7 @@ keepComments | boolean | Option to keep comments in the HTML output | true\nbeautify | boolean | Option to beautify the HTML output | false\nminify | boolean | Option to minify the HTML output |... | JavaScript | MIT License | mjmlio/mjml | minify conditional comments, fix doc |
424,171 | 16.04.2018 15:29:28 | -7,200 | 7c77d44309c38d425b9a53e1c8518c676f79b971 | move mjmlconfig handling to core | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "import { find, get, identity, map, omit, reduce } from 'lodash'\nimport path from 'path'\n+import fs from 'fs'\nimport juice from 'juice'\nimport { html as htmlBeautify }... | JavaScript | MIT License | mjmlio/mjml | move mjmlconfig handling to core |
424,181 | 16.04.2018 20:02:50 | -7,200 | 4cdd64f8d56bbe1e6a65399d1bca0e912e4d468e | modif eslint | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-accordion/src/Accordion.js",
"new_path": "packages/mjml-accordion/src/Accordion.js",
"diff": "@@ -34,7 +34,7 @@ export default class MjAccordion extends BodyComponent {\npadding: '10px 25px',\n}\n- headStyle = () => (\n+ headStyle = () =>\n`\nnoi... | JavaScript | MIT License | mjmlio/mjml | modif eslint |
424,171 | 18.04.2018 15:41:03 | -7,200 | 805ef5fdf782b09a6803b6b5658190df5890d181 | fix new use case in regex and add test | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/helpers/addCDATASection.js",
"new_path": "packages/mjml-parser-xml/src/helpers/addCDATASection.js",
"diff": "@@ -2,7 +2,7 @@ import _ from 'lodash'\nconst regexTag = tag =>\nnew RegExp(\n- `<${tag}((?:(?:\"[^\"]*?\")*(?:'[^']*?')*[... | JavaScript | MIT License | mjmlio/mjml | fix new use case in regex and add test |
424,171 | 20.04.2018 15:42:13 | -7,200 | d0d8751ce89cdca4254aa3b1a4f35c228c255001 | add parser option | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -202,6 +202,7 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\n{\nrecognizeCDATA: true,\ndecodeEntities: false,\n+ recognizeSel... | JavaScript | MIT License | mjmlio/mjml | add parser option |
424,171 | 20.04.2018 16:18:15 | -7,200 | b17d5585830822ecdc7bd6b3628249e3731e2750 | fix migrate ignore includes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-migrate/src/migrate.js",
"new_path": "packages/mjml-migrate/src/migrate.js",
"diff": "@@ -192,7 +192,7 @@ const jsonToXML = ({ tagName, attributes, children, content }) => {\nexport default function migrate(input) {\nif (typeof input === 'object'... | JavaScript | MIT License | mjmlio/mjml | fix #1141 migrate ignore includes |
424,171 | 20.04.2018 17:51:55 | -7,200 | b4c9f18084ea55d8ed662c72769941af49db3d8a | fix --validate option on cli | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/README.md",
"new_path": "packages/mjml-cli/README.md",
"diff": "@@ -42,6 +42,14 @@ $> mjml -m input.mjml -o result.mjml\nIt will output a HTML file called `input.html`.\n+### Validate MJML\n+\n+```bash\n+$> mjml -v input.mjml\n+```\n+\n+It wi... | JavaScript | MIT License | mjmlio/mjml | fix #1142 --validate option on cli |
424,171 | 23.04.2018 17:21:51 | -7,200 | 8738becfa9196ff79aa5a3ceffadb46cdfde75d8 | handle image height | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -26,8 +26,8 @@ export default class MjImage extends BodyComponent {\n'padding-left': 'unit(px,%)',\n'padding-right': 'unit(px,%)',\n'padding-top': 'unit(px,%)',\n- h... | JavaScript | MIT License | mjmlio/mjml | handle image height |
424,171 | 23.04.2018 19:20:39 | -7,200 | dea40cbd660299e483db4eb4deddf0a815f7f1ed | fix only count columns and groups in auto width calc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/README.md",
"new_path": "packages/mjml-column/README.md",
"diff": "@@ -43,7 +43,7 @@ border-left | string | css border format | n/a\nborder-right | string | css border format | n/a\nborder-top | string | css border format | n/a\nborder-rad... | JavaScript | MIT License | mjmlio/mjml | fix #1152 only count columns and groups in auto width calc |
424,171 | 24.04.2018 14:23:03 | -7,200 | 8079099be639b80fcbad0b38b2d418e03821747b | handle auto height & prettier | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -8,11 +8,11 @@ export default class MjImage extends BodyComponent {\nstatic tagOmission = true\nstatic allowedAttributes = {\n- 'alt': 'string',\n- 'href': 'string',... | JavaScript | MIT License | mjmlio/mjml | handle auto height & prettier |
424,215 | 24.04.2018 12:26:50 | -7,200 | 0737d837b34439948c10d165772288911d72a063 | Fix mj-social-element when inline style is added | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -193,6 +193,7 @@ export default class MjSocialElement extends BodyComponent {\n</td>\n</tr>\n</table>\n+ </td>\n${this.getContent()\n? `\n<td ${thi... | JavaScript | MIT License | mjmlio/mjml | Fix mj-social-element when inline style is added |
424,171 | 24.04.2018 18:30:12 | -7,200 | 99528cf79bdc29a5773033a428a80986b98154f9 | only ignore rawElements | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/README.md",
"new_path": "packages/mjml-column/README.md",
"diff": "@@ -43,7 +43,7 @@ border-left | string | css border format | n/a\nborder-right | string | css border format | n/a\nborder-top | string | css border format | n/a\nborder-rad... | JavaScript | MIT License | mjmlio/mjml | only ignore rawElements |
424,171 | 24.04.2018 19:29:38 | -7,200 | ef4fc4da42d4cc62f7d33c97d794552f8db37424 | add a few details to doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/README.md",
"new_path": "packages/mjml-cli/README.md",
"diff": "@@ -33,6 +33,7 @@ mjml input.mjml\n```\nIt will output a HTML file called `input.html`.\n+Input can also be a directory.\n### Migrate MJML3 to MJML4\n@@ -40,7 +41,7 @@ It will ou... | JavaScript | MIT License | mjmlio/mjml | add a few details to doc |
424,171 | 25.04.2018 11:55:55 | -7,200 | e5d4abfd5fc2a367499e49728004b6cd4f479a20 | fix social element when no name defined | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -120,14 +120,11 @@ export default class MjSocialElement extends BodyComponent {\n}\ngetSocialAttributes() {\n- const socialNetwork = defaultSocialN... | JavaScript | MIT License | mjmlio/mjml | fix social element when no name defined |
424,171 | 25.04.2018 16:00:38 | -7,200 | 0cd96a7d4a6898b33f10f66ea220d3689cd12a5a | fix update spacer doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-spacer/README.md",
"new_path": "packages/mjml-spacer/README.md",
"diff": "@@ -25,4 +25,17 @@ Displays a blank space.\nattribute | unit | description | default value\n----------------------------|-------------|--------------------------------|----... | JavaScript | MIT License | mjmlio/mjml | fix #1102 update spacer doc |
424,171 | 25.04.2018 16:10:08 | -7,200 | 19e789b919fba648c98eb21f9deacdef3e45c4a2 | fix add mj-body deps and remove mj-container | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml/src/dependencies.js",
"new_path": "packages/mjml/src/dependencies.js",
"diff": "@@ -5,7 +5,7 @@ export default {\n'mj-accordion-title': [],\n'mj-accordion-text': [],\n'mj-attributes': [/^.*^/],\n- 'mj-body': ['mj-container', 'mj-raw'],\n+ 'mj-bod... | JavaScript | MIT License | mjmlio/mjml | fix #1079 add mj-body deps and remove mj-container |
424,171 | 25.04.2018 16:23:10 | -7,200 | c700c56d39e860b4d05d65b40184dc96fb990ac7 | fix add lang attribute | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/skeleton.js",
"new_path": "packages/mjml-core/src/helpers/skeleton.js",
"diff": "@@ -17,11 +17,14 @@ export default function skeleton(options) {\nstyle,\nforceOWADesktop,\ninlineStyle,\n+ lang,\n} = options\n+ const langAttribute... | JavaScript | MIT License | mjmlio/mjml | fix #757 add lang attribute |
424,171 | 25.04.2018 17:26:14 | -7,200 | 6b7eadcb6c1baf8088635b1200f020f96f335b9d | fix allow to prevent share url | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -77,6 +77,13 @@ container-background-color | color | inner element background color\nThis component enables you to display a given social network inside `mj-social`.\nNo... | JavaScript | MIT License | mjmlio/mjml | fix #1130 allow to prevent share url |
424,171 | 25.04.2018 17:29:51 | -7,200 | 01f824fc8d83e327aa58bcb73d61103d9a9a33c5 | fix social doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -77,12 +77,10 @@ container-background-color | color | inner element background color\nThis component enables you to display a given social network inside `mj-social`.\nN... | JavaScript | MIT License | mjmlio/mjml | fix social doc |
424,171 | 26.04.2018 18:16:35 | -7,200 | 55661f4fbc69e579d2125a3043a1cdb73f392ca4 | fix change carousel width default values | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/Carousel.js",
"new_path": "packages/mjml-carousel/src/Carousel.js",
"diff": "@@ -206,7 +206,7 @@ export default class MjCarousel extends BodyComponent {\nwidth: '100%',\n'table-layout': 'fixed',\n'text-align': 'center',\n- 'font-size... | JavaScript | MIT License | mjmlio/mjml | fix #1170 change carousel width default values |
424,171 | 26.04.2018 18:51:17 | -7,200 | ba5d28854dc682086c24c4766d86ab78f588c83a | fix htmlAttributes ignoring '0' value | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -98,7 +98,7 @@ export class BodyComponent extends Component {\n(output, v, name) => {\nconst value = (specialAttributes[name] || specialAttributes.... | JavaScript | MIT License | mjmlio/mjml | fix htmlAttributes ignoring '0' value |
424,171 | 26.04.2018 19:25:28 | -7,200 | 089c0f7af107e389df93ab9cddbd71bec9e2b2fb | remove td default paddings | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/Carousel.js",
"new_path": "packages/mjml-carousel/src/Carousel.js",
"diff": "@@ -215,6 +215,11 @@ export default class MjCarousel extends BodyComponent {\nwidth: '100%',\n},\n},\n+ images: {\n+ td: {\n+ padding: '0px',\n+ },\n+ },\nc... | JavaScript | MIT License | mjmlio/mjml | remove td default paddings |
424,171 | 27.04.2018 01:40:42 | -7,200 | e38839680c9113d244d8dc6927b8b59db91038fb | fix image size when border | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -87,6 +87,13 @@ export class BodyComponent extends Component {\nreturn shorthandParser(mjAttribute, direction)\n}\n+ getShorthandBorderValue(direct... | JavaScript | MIT License | mjmlio/mjml | fix image size when border |
424,171 | 27.04.2018 01:56:33 | -7,200 | edadc52f16d779c709e21d8ef7cba769e8da29cc | fix small sizes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -83,7 +83,7 @@ export default class MjImage extends BodyComponent {\nconst contentWidth = min([\nparseInt(containerWidth, 10) - allPaddings,\n- width + allPaddings\n... | JavaScript | MIT License | mjmlio/mjml | fix small sizes |
424,171 | 27.04.2018 18:38:25 | -7,200 | 05049e11a24e84002105b3bbcd31f3601bbaab85 | dont include padding in width if set width | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -83,7 +83,7 @@ export default class MjImage extends BodyComponent {\nconst contentWidth = min([\nparseInt(containerWidth, 10) - allPaddings,\n- width + paddingLeft +... | JavaScript | MIT License | mjmlio/mjml | dont include padding in width if set width |
424,171 | 02.05.2018 18:21:58 | -7,200 | 4444a3c9ff59472b2441d60efd7c36ede2213f73 | fix border parsing | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -2,7 +2,7 @@ import { get, forEach, identity, reduce, kebabCase } from 'lodash'\nimport MJMLParser from 'mjml-parser-xml'\n-import shorthandParser ... | JavaScript | MIT License | mjmlio/mjml | fix border parsing |
424,171 | 04.05.2018 14:46:04 | -7,200 | fb8c6664277e724fc4ef31d8e9ede5d5e1a293cc | fix suffix css class | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/suffixCssClasses.js",
"new_path": "packages/mjml-core/src/helpers/suffixCssClasses.js",
"diff": "export default (classes, suffix) => {\nreturn classes\n- && classes.split(' ')\n+ ? classes\n+ .split(' ')\n.map(c => `${c}-${suffix... | JavaScript | MIT License | mjmlio/mjml | fix suffix css class |
424,171 | 04.05.2018 16:21:17 | -7,200 | 1783b23d2adfe065f937282e433d54bf34fc2864 | allow empty strings as attributes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "-import { get, forEach, identity, reduce, kebabCase } from 'lodash'\n+import { get, forEach, identity, reduce, kebabCase, isNil } from 'lodash'\nimpor... | JavaScript | MIT License | mjmlio/mjml | allow empty strings as attributes |
424,171 | 13.05.2018 03:03:14 | -7,200 | 115af24dd2a228dd162c2295eda1b9e36ac8985c | fix handle mj-raw in mj-head | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -195,7 +195,7 @@ export class HeadComponent extends Component {\nhandlerChildren() {\nconst childrens = this.props.children\n- forEach(childrens, c... | JavaScript | MIT License | mjmlio/mjml | fix #82 handle mj-raw in mj-head |
424,171 | 15.05.2018 11:51:53 | -7,200 | 8fe6f9bb3571ecb29415cbf67d798c041890a16b | fix, refacto and lint on migrate | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -199,9 +199,8 @@ export class HeadComponent extends Component {\n})\nif (!component) {\n- console.log( /* eslint-disable-line no-console */\n- `No ... | JavaScript | MIT License | mjmlio/mjml | fix, refacto and lint on migrate |
424,171 | 15.05.2018 12:26:07 | -7,200 | 1cc7b7e6b92f15017879cda4f1b6ca2adb11efe8 | change test syntax for old node | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/test/test.js",
"new_path": "packages/mjml-parser-xml/test/test.js",
"diff": "const MJMLParser = require('../lib/index.js')\nrequire('mjml')\n-const { components } = require('mjml-core')\n+const components = require('mjml-core').compone... | JavaScript | MIT License | mjmlio/mjml | change test syntax for old node |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.