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 | 15.05.2018 14:51:46 | -7,200 | e2887529c72fd5a8677e111cba0693fc4301f2ec | re-lint after merge | [
{
"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) => {\n- return classes\n+export default (classes, suffix) => (\n+ classes\n? classes\n.split(' ')\... | JavaScript | MIT License | mjmlio/mjml | re-lint after merge |
424,171 | 15.05.2018 16:00:05 | -7,200 | 3a077753ed4f1ee082993443bb0e723f4a53d432 | travis switch to yarn | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -15,10 +15,9 @@ node_js:\n- 8\n- 9\nscript:\n- - npm install\n- - npm run build\n- - npm run lint\n+ - yarn install\n+ - yarn build\n+ - yarn lint\n- cd packages/mjml-parser-xml\n- - npm rebuild\n- - npm ins... | JavaScript | MIT License | mjmlio/mjml | travis switch to yarn |
424,171 | 15.05.2018 16:22:22 | -7,200 | d06c244bb2657ea3bac70cce52bfef656139c408 | uniformize lodash version | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/package.json",
"new_path": "packages/mjml-core/package.json",
"diff": "\"html-minifier\": \"^3.5.3\",\n\"js-beautify\": \"^1.6.14\",\n\"juice\": \"^4.1.0\",\n- \"lodash\": \"^4.17.3\",\n+ \"lodash\": \"^4.17.2\",\n\"mjml-migrate\": \"^4.0.5\... | JavaScript | MIT License | mjmlio/mjml | uniformize lodash version |
424,198 | 15.05.2018 10:56:56 | 14,400 | 12f60853d2915419d332f734d02336676f3887e0 | Add rel attribute to mj-image | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -13,6 +13,7 @@ export default class MjImage extends BodyComponent {\nsrc: 'string',\nsrcset: 'string',\ntitle: 'string',\n+ rel: 'string',\nalign: 'enum(left,center,... | JavaScript | MIT License | mjmlio/mjml | Add rel attribute to mj-image |
424,171 | 15.05.2018 18:09:27 | -7,200 | 09f34df120a4f89960e15f638ea1fc512d0d65e3 | fix self closing parsing, add test case | [
{
"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 self closing parsing, add test case |
424,187 | 17.05.2018 08:59:26 | -7,200 | 3b5ca71a288e0cbc316a22a534e141f495fedc06 | Wrong font size
Use font-size="20px" instead of font-size="20" | [
{
"change_type": "MODIFY",
"old_path": "doc/basic.md",
"new_path": "doc/basic.md",
"diff": "@@ -52,7 +52,7 @@ First, we will implement the skeleton which are the sections. Here, our email is\n<mj-section background-color=\"#f0f0f0\">\n<mj-column>\n<mj-text font-style=\"italic\"\n- font-size=\"20\"\n... | JavaScript | MIT License | mjmlio/mjml | Wrong font size
Use font-size="20px" instead of font-size="20" |
424,171 | 17.05.2018 14:59:33 | -7,200 | 1d7c05ef90a1f2b2a60909ef08a8300198cf8608 | fix allow to merge multiple mj-attributes for one tag | [
{
"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'\n+import { find, get, identity, map, omit, reduce, isObject } from 'lodash'\nimport path from 'path'\nimp... | JavaScript | MIT License | mjmlio/mjml | fix #1194 allow to merge multiple mj-attributes for one tag |
424,171 | 17.05.2018 15:04:38 | -7,200 | 4f7cdf9851e131e9a9d146b14d60dcfcd67b9a55 | fix remove processConditionalComments | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -255,7 +255,6 @@ export default function mjml2html(mjml, options = {}) {\ncollapseWhitespace: true,\nminifyCSS: false,\nremoveEmptyAttributes: true,\n- processConditio... | JavaScript | MIT License | mjmlio/mjml | fix #1201 remove processConditionalComments |
424,171 | 17.05.2018 16:26:44 | -7,200 | b9a84aef36cc7c0a9f4baf56d670284feac330a6 | manually minify conditional comments | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "packages/mjml-core/src/helpers/minifyOutlookConditionnals.js",
"diff": "+export default content =>\n+ // find conditionnal comment blocks\n+ content.replace(/(<!--\\[if\\s[^\\]]+]>)([\\s\\S]*?)(<!\\[endif]-->)/gm, (match, prefix, content, suffix... | JavaScript | MIT License | mjmlio/mjml | manually minify conditional comments |
424,171 | 17.05.2018 18:06:37 | -7,200 | 86fc4c43d516008d81a733c47380cf583fb2183f | only minify body, prettier | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/minifyOutlookConditionnals.js",
"new_path": "packages/mjml-core/src/helpers/minifyOutlookConditionnals.js",
"diff": "export default content =>\n// find conditionnal comment blocks\n- content.replace(/(<!--\\[if\\s[^\\]]+]>)([\\s\... | JavaScript | MIT License | mjmlio/mjml | only minify body, prettier |
424,238 | 10.05.2018 15:28:25 | -10,800 | c2e1f77aefad97bc7cb96e17a83bfee79a794f3a | register mjmlconfig comps before parsing mjml | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"diff": "+import path from 'path'\n+import fs from 'fs'\n+\n+export default function readMjmlConfig(filePath = process.cwd()) {\n+ try {\n+ const mjmlConfigPath = path.basename(filePath) === '.mjmlc... | JavaScript | MIT License | mjmlio/mjml | register mjmlconfig comps before parsing mjml |
424,238 | 21.05.2018 13:35:58 | -10,800 | 43f5d86fc6262f7003b16290a9ef6009c91a670f | add configPath option for mjmlconfig path | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"new_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"diff": "import path from 'path'\nimport fs from 'fs'\n-export default function readMjmlConfig(filePath = process.cwd()) {\n+import { registerComponent }... | JavaScript | MIT License | mjmlio/mjml | add configPath option for mjmlconfig path |
424,238 | 21.05.2018 13:59:28 | -10,800 | b75b624d8e21b76f52784bf3bbb27b0f46bb0d0d | add cli configPath opt and documentation about specifying the configPath | [
{
"change_type": "MODIFY",
"old_path": "doc/community-components.md",
"new_path": "doc/community-components.md",
"diff": "@@ -10,7 +10,7 @@ To use a community component, proceed as follows:\n```\n{\n\"packages\": [\n- \"./node_modules/component-name/path-to-js-file\"\n+ \"component-name/path-to-js-f... | JavaScript | MIT License | mjmlio/mjml | add cli configPath opt and documentation about specifying the configPath |
424,238 | 21.05.2018 14:55:05 | -10,800 | dca79403936c3ae8446dd88b7d4b3c915272ae7f | handle multi-component objects and ambiguous package paths | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"new_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"diff": "@@ -3,15 +3,6 @@ import fs from 'fs'\nimport { registerComponent } from '../components'\n-export function resolveComponentPath(compPath, compone... | JavaScript | MIT License | mjmlio/mjml | handle multi-component objects and ambiguous package paths |
424,238 | 21.05.2018 16:30:37 | -10,800 | 8c1c22488114ca0d2c1265c462397a54ba8b8173 | fix resolveComponentPath to handle global & linked installs | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"new_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"diff": "@@ -34,10 +34,16 @@ export function resolveComponentPath(compPath, componentRootPath) {\nconsole.log('Error resolving custom component path : ',... | JavaScript | MIT License | mjmlio/mjml | fix resolveComponentPath to handle global & linked installs |
424,238 | 21.05.2018 17:05:11 | -10,800 | cbf1d5c0aa943f21ac56c67918270b48bb5336d6 | revert configPath cli opt in favor of config.configPath | [
{
"change_type": "MODIFY",
"old_path": "doc/install.md",
"new_path": "doc/install.md",
"diff": "@@ -57,7 +57,7 @@ argument | description | default value\n`mjml -w [input]` | Watches the changes made to [input] (file or folder) | NA\n`mjml [input] --config.beautify` | Beautifies the output (`true` or... | JavaScript | MIT License | mjmlio/mjml | revert configPath cli opt in favor of config.configPath |
424,171 | 21.05.2018 17:33:43 | -7,200 | 66092043f24e7a16913882b84a3b4c99bcf400aa | fix cdata regex | [
{
"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 cdata regex |
424,171 | 21.05.2018 17:53:01 | -7,200 | ebc6e1772198a869f7d86491d1a11f48ded58680 | type unit now accepts ',' and '.' , and 0 without unit + add attr name to error message | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/validTypes.js",
"new_path": "packages/mjml-validator/src/rules/validTypes.js",
"diff": "@@ -3,7 +3,7 @@ import { compact, map } from 'lodash'\nimport { initializeType } from '../types/type'\nimport ruleError from './ruleError'... | JavaScript | MIT License | mjmlio/mjml | type unit now accepts ',' and '.' , and 0 without unit + add attr name to error message |
424,171 | 21.05.2018 17:54:31 | -7,200 | e639b50f1357434db06ed9cfe2cc120c86904b14 | fix a few column types | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/README.md",
"new_path": "packages/mjml-column/README.md",
"diff": "@@ -42,7 +42,7 @@ border-bottom | string | css border format | n/a\nborder-left | string | css border format | n/a\nborder-right | string | css border format | n/a\nborder-... | JavaScript | MIT License | mjmlio/mjml | fix a few column types |
424,171 | 21.05.2018 20:25:35 | -7,200 | df92c6e724bddf414af69dadeaa06e89338ea257 | fix add text-align on mj-button | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -31,7 +31,8 @@ export default class MjButton extends BodyComponent {\ntarget: 'string',\n'text-decoration': 'string',\n'text-transform': 'string',\n- 'vertical-ali... | JavaScript | MIT License | mjmlio/mjml | fix #1188 add text-align on mj-button |
424,171 | 23.05.2018 16:54:40 | -7,200 | fc53c0b31924721f6ebae4bc225d6533438aecf7 | fix bg-repeat type | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-section/src/index.js",
"new_path": "packages/mjml-section/src/index.js",
"diff": "@@ -8,7 +8,7 @@ export default class MjSection extends BodyComponent {\nstatic allowedAttributes = {\n'background-color': 'color',\n'background-url': 'string',\n- '... | JavaScript | MIT License | mjmlio/mjml | fix bg-repeat type |
424,171 | 23.05.2018 16:57:08 | -7,200 | 177985ed3305505f1faac0a1c1393f583719886f | add integer type | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/types/index.js",
"new_path": "packages/mjml-validator/src/types/index.js",
"diff": "@@ -3,6 +3,7 @@ import Color, { matcher as colorMatcher } from './color'\nimport Enum, { matcher as enumMatcher } from './enum'\nimport Unit, { matc... | JavaScript | MIT License | mjmlio/mjml | add integer type |
424,171 | 24.05.2018 00:44:33 | -7,200 | bb87f0355acb5d79a56afb4fc2b6a902e02e7530 | mj-table handle width units | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-table/src/index.js",
"new_path": "packages/mjml-table/src/index.js",
"diff": "+import widthParser from 'mjml-core/lib/helpers/widthParser'\n+\nimport { BodyComponent } from 'mjml-core'\nimport { reduce } from 'lodash'\n@@ -22,7 +24,7 @@ export de... | JavaScript | MIT License | mjmlio/mjml | mj-table handle width units |
424,171 | 25.05.2018 16:00:43 | -7,200 | 88f190bf50a815168455c9ccda278df0eec05f0c | fix mj-button background | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -73,6 +73,8 @@ export default class MjButton extends BodyComponent {\nheight: this.getAttribute('height'),\npadding: this.getAttribute('inner-padding'),\n'text-ali... | JavaScript | MIT License | mjmlio/mjml | fix #605 mj-button background |
424,171 | 28.05.2018 17:16:05 | -7,200 | 35c766a141847785928c67716cc5ad32200b4921 | fix carousel width | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/CarouselImage.js",
"new_path": "packages/mjml-carousel/src/CarouselImage.js",
"diff": "@@ -25,7 +25,7 @@ export default class MjCarouselImage extends BodyComponent {\nimg: {\n'border-radius': this.getAttribute('border-radius'),\ndisp... | JavaScript | MIT License | mjmlio/mjml | fix carousel width |
424,193 | 28.05.2018 18:49:00 | -7,200 | e4e735083b98c4db435403e8401b3003b390cb30 | Remove duplicated target attribute for mj-social-element | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -100,4 +100,3 @@ padding-top | px | top offset |\npadding-bottom | px | bottom offset | n/a\npadding-left | px | left offset | n/a\npadding-right | px | right offset | n... | JavaScript | MIT License | mjmlio/mjml | Remove duplicated target attribute for mj-social-element |
424,171 | 30.05.2018 15:00:45 | -7,200 | 097d713c4f026166aa335f8eb267dbe525b904b7 | fix boolean type & switch fluid-on-mobile to boolean | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -22,7 +22,7 @@ export default class MjImage extends BodyComponent {\n'border-top': 'string',\n'border-radius': 'unit(px,%)',\n'container-background-color': 'string',... | JavaScript | MIT License | mjmlio/mjml | fix boolean type & switch fluid-on-mobile to boolean |
424,171 | 04.06.2018 19:42:28 | -7,200 | fbecdddb0878ccba4c6d8d642312e567a51c60ba | avoid using regex for endingTags | [
{
"change_type": "DELETE",
"old_path": "packages/mjml-parser-xml/src/helpers/addCDATASection.js",
"new_path": null,
"diff": "-import _ from 'lodash'\n-\n-const regexTag = tag =>\n- new RegExp(\n- `<${tag}((?: (?:(?:\"[^\"]*?\")*(?:'[^']*?')*[^/>'\"]*?)*?)|)>([^]*?)</${tag}>`,\n- 'gmi',\n- )\n-const ... | JavaScript | MIT License | mjmlio/mjml | avoid using regex for endingTags |
424,221 | 06.06.2018 11:18:19 | -7,200 | bda75f6a75af66c2bd346a109978be4c811a6fe8 | Fixed option type
Should be string instead of boolean | [
{
"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 | Fixed option type
Should be string instead of boolean |
424,171 | 06.06.2018 16:22:40 | -7,200 | b60670082d3eee491db13cfb6c645232f4927aeb | change ending tag parsing | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -46,7 +46,7 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\nlet cur = null\nlet inInclude = !!includedIn.length\nlet inEndingT... | JavaScript | MIT License | mjmlio/mjml | change ending tag parsing |
424,171 | 06.06.2018 16:49:09 | -7,200 | 9a0951260d7c9294171a732f066b9a1089bee991 | more explicit comparison | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -141,7 +141,7 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\nonopentag: (name, attrs) => {\nconst isAnEndingTag = endingTags.... | JavaScript | MIT License | mjmlio/mjml | more explicit comparison |
424,171 | 06.06.2018 18:37:10 | -7,200 | d220ec13c1c58fee9576e909be36de86879662e6 | add include test | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "packages/mjml-parser-xml/test/incl.mjml",
"diff": "+<mj-column>\n+ <mj-text font-size=\"22px\">\n+ COIN\n+ <a src=\"test\">aze</a>\n+ </mj-text>\n+ <mj-text font-size=\"22px\">\n+ COIN2\n+ <a src=\"test\">aze2</a>\n+ </mj-text>\n+</mj-column>\n"... | JavaScript | MIT License | mjmlio/mjml | add include test |
424,171 | 08.06.2018 15:02:34 | -7,200 | 255d96c2080476bb400faffd5b4f0b6b68de5d16 | ignore file path in parser test | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/test/test-values.js",
"new_path": "packages/mjml-parser-xml/test/test-values.js",
"diff": "@@ -458,25 +458,25 @@ module.exports = [\nincludedIn: [],\ntagName: 'mj-section',\nchildren:\n- [ { file: '/Users/kmcb/sites/mjml4/mjml/packages... | JavaScript | MIT License | mjmlio/mjml | ignore file path in parser test |
424,171 | 18.06.2018 15:41:50 | -7,200 | 5748f4548b65afb9def2b019417152d65882ba2f | refacto into helper | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -24,6 +24,11 @@ const indexesForNewLine = xml => {\nreturn indexes\n}\n+const isSelfClosing = (indexes, parser) => {\n+ return indexes.startIndex === parse... | JavaScript | MIT License | mjmlio/mjml | refacto into helper |
424,171 | 21.06.2018 16:49:42 | -7,200 | 7c3350fd0872f09b5e727b84d49ef9e088d22505 | fix refactor color shorthand hex codes | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "packages/mjml-parser-xml/src/helpers/convertColorShorthands.js",
"diff": "+import { reduce } from 'lodash'\n+\n+const shorthandRegex = /^#\\w{3}$/\n+const replaceInputRegex = /^#(\\w)(\\w)(\\w)$/\n+const replaceOutput = '#$1$1$2$2$3$3'\n+\n+expo... | JavaScript | MIT License | mjmlio/mjml | fix #969 refactor color shorthand hex codes |
424,171 | 21.06.2018 19:20:19 | -7,200 | f27ad3c93fa334e1cbf3f397dd81d98bd8649d39 | fix html char codes for navbar icon | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-navbar/src/Navbar.js",
"new_path": "packages/mjml-navbar/src/Navbar.js",
"diff": "@@ -31,8 +31,8 @@ export default class MjNavbar extends BodyComponent {\n'base-url': null,\nhamburger: null,\n'ico-align': 'center',\n- 'ico-open': '9776',\n- 'ico-... | JavaScript | MIT License | mjmlio/mjml | fix #1187 html char codes for navbar icon |
424,171 | 22.06.2018 16:05:30 | -7,200 | 6554915b67cc7dc9fd8c451595b4933e145f28c5 | use types to format attr values, only applied to color for now | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -12,6 +12,7 @@ import {\nimport MJMLParser from 'mjml-parser-xml'\nimport shorthandParser from './helpers/shorthandParser'\n+import formatAttribute... | JavaScript | MIT License | mjmlio/mjml | use types to format attr values, only applied to color for now |
424,171 | 25.06.2018 22:06:09 | -7,200 | 821d1b3eaea9f1f9b04799db3fc3534c6fcf5b71 | fix for head components | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/formatAttributes.js",
"new_path": "packages/mjml-core/src/helpers/formatAttributes.js",
"diff": "@@ -2,7 +2,7 @@ import { reduce } from 'lodash'\nimport { initializeType } from '../types/type'\nexport default (attributes, allowed... | JavaScript | MIT License | mjmlio/mjml | fix for head components |
424,171 | 27.06.2018 17:04:51 | -7,200 | 2f5fcd5045489dc470e85bb601d1fc8bfd704e1e | fix char codes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-navbar/src/Navbar.js",
"new_path": "packages/mjml-navbar/src/Navbar.js",
"diff": "@@ -31,8 +31,8 @@ export default class MjNavbar extends BodyComponent {\n'base-url': null,\nhamburger: null,\n'ico-align': 'center',\n- 'ico-open': '☰',\n- 'ic... | JavaScript | MIT License | mjmlio/mjml | fix char codes |
424,171 | 02.07.2018 19:51:20 | -7,200 | 05af2c4913637bbdc79daf6a1d79014981d076c6 | fix remove align on table | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -95,7 +95,6 @@ export default class MjButton extends BodyComponent {\nreturn `\n<table\n${this.htmlAttributes({\n- align: this.getAttribute('align'),\nborder: '0',... | JavaScript | MIT License | mjmlio/mjml | fix #1261 remove align on table |
424,171 | 04.07.2018 18:27:10 | -7,200 | 393d7a520208e81b0227591f0e9a6021e58e6549 | fix prevent mj-all from overriding attributes given by parent | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -33,6 +33,7 @@ class Component {\ncontent = '',\ncontext = {},\nprops = {},\n+ globalAttributes = {},\n} = initialDatas\nthis.props = {\n@@ -41,8 +... | JavaScript | MIT License | mjmlio/mjml | fix #1083 prevent mj-all from overriding attributes given by parent |
424,171 | 06.07.2018 14:24:59 | -7,200 | 590a42a602c0143ed1000c6582707b97c238818e | fix add target attr on social-element text | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -199,6 +199,7 @@ export default class MjSocialElement extends BodyComponent {\nhref,\nstyle: 'text',\nrel: this.getAttribute('rel'),\n+ target: thi... | JavaScript | MIT License | mjmlio/mjml | fix #1267 add target attr on social-element text |
424,171 | 30.07.2018 15:11:37 | -7,200 | 60a831193f46f9ea2857cd363d8027309d9c2770 | parser keeps attributes case | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -234,6 +234,7 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\nrecognizeCDATA: true,\ndecodeEntities: false,\nrecognizeSelfClos... | JavaScript | MIT License | mjmlio/mjml | parser keeps attributes case |
424,171 | 30.07.2018 16:10:20 | -7,200 | 00c09272e89b2f1159f3511665a831a57cec8530 | fix tolerate non-string in json input | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/types/type.js",
"new_path": "packages/mjml-validator/src/types/type.js",
"diff": "@@ -28,7 +28,7 @@ export default class Type {\n}\nisValid() {\n- return some(this.matchers, matcher => this.value.match(matcher))\n+ return some(this.... | JavaScript | MIT License | mjmlio/mjml | fix #1287 tolerate non-string in json input |
424,171 | 30.07.2018 19:05:51 | -7,200 | 0a00136fb0742a0dc92e70bb78b1d55a2e73305b | allow 0 value in styles | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -131,7 +131,7 @@ export class BodyComponent extends Component {\nreturn reduce(\nstylesObject,\n(output, value, name) => {\n- if (value) {\n+ if (!... | JavaScript | MIT License | mjmlio/mjml | allow 0 value in styles |
424,171 | 30.07.2018 19:07:25 | -7,200 | a1de417355d831e611ae389f3724a646ccf5fa35 | fix hero vml position top | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/src/index.js",
"new_path": "packages/mjml-hero/src/index.js",
"diff": "@@ -126,6 +126,7 @@ export default class MjHero extends BodyComponent {\nheight: this.getAttribute('background-height'),\n'mso-position-horizontal': 'center',\nposition: ... | JavaScript | MIT License | mjmlio/mjml | fix #1281 hero vml position top |
424,171 | 06.08.2018 15:30:30 | -7,200 | 65c6c7cc6c00e08282b598fd136932f1e7607edb | fix fix some validation values | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-table/src/index.js",
"new_path": "packages/mjml-table/src/index.js",
"diff": "@@ -21,7 +21,7 @@ export default class MjTable extends BodyComponent {\n'padding-right': 'unit(px,%)',\n'padding-top': 'unit(px,%)',\npadding: 'unit(px,%){1,4}',\n- 'ta... | JavaScript | MIT License | mjmlio/mjml | fix #1272 fix some validation values |
424,171 | 08.08.2018 17:51:41 | -7,200 | e145cb038ce9039ec7773c01fcad044e67d9da62 | removes process.exit that makes exit before stdout can finish writing | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -34,7 +34,7 @@ export default async () => {\nconsole.log('\\nCommand line error:') // eslint-disable-line no-console\nconsole.error(msg) // eslint-disable-line no-cons... | JavaScript | MIT License | mjmlio/mjml | removes process.exit that makes exit before stdout can finish writing |
424,171 | 08.08.2018 17:53:55 | -7,200 | b8943f7e2487ff287d372814a4777d890c889520 | makes handleMjmlConfig exportable and return results | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/index.js",
"new_path": "packages/mjml-core/src/index.js",
"diff": "@@ -6,7 +6,7 @@ import { html as htmlBeautify } from 'js-beautify'\nimport { minify as htmlMinify } from 'html-minifier'\nimport MJMLParser from 'mjml-parser-xml'\n-impor... | JavaScript | MIT License | mjmlio/mjml | makes handleMjmlConfig exportable and return results |
424,171 | 09.08.2018 13:48:30 | -7,200 | e6db1796e9b929c373de3c258aa2886af9cf9919 | restore process.exit when error | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -34,8 +34,7 @@ export default async () => {\nconsole.log('\\nCommand line error:') // eslint-disable-line no-console\nconsole.error(msg) // eslint-disable-line no-cons... | JavaScript | MIT License | mjmlio/mjml | restore process.exit when error |
424,171 | 09.08.2018 14:59:14 | -7,200 | aacb4a697ed57222b78f9fab6e81050efa1a024b | rollback fix made for another issue | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-section/src/index.js",
"new_path": "packages/mjml-section/src/index.js",
"diff": "@@ -294,7 +294,7 @@ export default class MjSection extends BodyComponent {\n${this.htmlAttributes({\nalign: 'center',\nclass: this.getAttribute('css-class'),\n- // ... | JavaScript | MIT License | mjmlio/mjml | rollback fix made for another issue |
424,171 | 09.08.2018 15:42:40 | -7,200 | e104e3df31f44d4fc6f51768331b864f5d6c5a58 | lint, add return values | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -218,7 +218,7 @@ export class HeadComponent extends Component {\nif (!component) {\n// eslint-disable-next-line no-console\nconsole.log(`No matchin... | JavaScript | MIT License | mjmlio/mjml | lint, add return values |
424,171 | 09.08.2018 16:36:27 | -7,200 | 8b14cd9367f653115513cad4a617bd0b1b553fac | move raw content at the end of the head | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/skeleton.js",
"new_path": "packages/mjml-core/src/helpers/skeleton.js",
"diff": "@@ -35,7 +35,6 @@ export default function skeleton(options) {\n<!--<![endif]-->\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-... | JavaScript | MIT License | mjmlio/mjml | move raw content at the end of the head |
424,171 | 13.08.2018 22:45:14 | -7,200 | 33d35b21a2406b56628352a1692cebdf94c873c5 | add unit in doc width | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/README.md",
"new_path": "packages/mjml-image/README.md",
"diff": "@@ -8,7 +8,7 @@ Note that if no width is provided, the image will use the parent column width.\n<mj-body>\n<mj-section>\n<mj-column>\n- <mj-image width=\"300\" src=\"http://w... | JavaScript | MIT License | mjmlio/mjml | add unit in doc width |
424,171 | 13.08.2018 22:53:00 | -7,200 | 447a37edfeb7672b686b59eedc68c9ba255ea9ce | handle border-direction | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -50,6 +50,10 @@ export default class MjImage extends BodyComponent {\nreturn {\nimg: {\nborder: this.getAttribute('border'),\n+ 'border-left': this.getAttribute('lef... | JavaScript | MIT License | mjmlio/mjml | handle border-direction |
424,171 | 13.08.2018 22:53:35 | -7,200 | a5937fc6a5907ed9734da8754221adaaa68ee874 | handle border in containerWidth | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/src/index.js",
"new_path": "packages/mjml-column/src/index.js",
"diff": "@@ -35,6 +35,12 @@ export default class MjColumn extends BodyComponent {\nthis.getShorthandAttrValue('padding', 'left') +\nthis.getShorthandAttrValue('padding', 'righ... | JavaScript | MIT License | mjmlio/mjml | handle border in containerWidth |
424,171 | 14.08.2018 20:16:08 | -7,200 | b2981f58a5ae4f9ca08f0b2d6bb3964fc8ef2818 | fix set mj-spacer default height | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-spacer/src/index.js",
"new_path": "packages/mjml-spacer/src/index.js",
"diff": "@@ -20,7 +20,9 @@ export default class MjSpacer extends BodyComponent {\nheight: 'unit(px,%)',\n}\n- static defaultAttributes = {}\n+ static defaultAttributes = {\n+ ... | JavaScript | MIT License | mjmlio/mjml | fix #1312 set mj-spacer default height |
424,171 | 16.08.2018 18:32:58 | -7,200 | 04aec44fc4657df8ee06cb21337799a7e6b5a397 | register dependencies when register component | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"new_path": "packages/mjml-core/src/helpers/mjmlconfig.js",
"diff": "import path from 'path'\nimport fs from 'fs'\n+import { registerDependencies } from 'mjml-validator'\nimport { registerComponent } from '../comp... | JavaScript | MIT License | mjmlio/mjml | register dependencies when register component |
424,171 | 16.08.2018 18:39:21 | -7,200 | 1184c27e3d08d17f4641c7b1da38f9404150c916 | validation skip mj-raw, lil refacto to pass options to 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'\nimport { mapKeys } from 'lodash'\n-import { components } from 'mjml-core'\nimport * as rules from './... | JavaScript | MIT License | mjmlio/mjml | validation skip mj-raw, lil refacto to pass options to rules |
424,171 | 20.08.2018 15:13:31 | -7,200 | 468ac3fb173866985fac064f992542f3b4902266 | use lodash for consistency | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/rules/validChildren.js",
"new_path": "packages/mjml-validator/src/rules/validChildren.js",
"diff": "@@ -22,7 +22,7 @@ export default function validChildren(element, { components, skipElements }) {\nif (\n!ChildComponent ||\n- skipEl... | JavaScript | MIT License | mjmlio/mjml | use lodash for consistency |
424,171 | 20.08.2018 18:36:58 | -7,200 | 1eaadb0ab963efc2874c2d8a7c4b65a31053fdbd | refacto border-box calculation into helper | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-column/src/index.js",
"new_path": "packages/mjml-column/src/index.js",
"diff": "@@ -28,18 +28,10 @@ export default class MjColumn extends BodyComponent {\ngetChildContext() {\nconst { containerWidth: parentWidth } = this.context\n-\nconst { nonRa... | JavaScript | MIT License | mjmlio/mjml | refacto border-box calculation into helper |
424,171 | 20.08.2018 18:55:41 | -7,200 | d2936bfaf42966f91d5974f9b8b891b6fbd84a5e | correct file name case | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/tests/jsonToXml-test.js",
"new_path": "packages/mjml-core/tests/jsonToXml-test.js",
"diff": "const chai = require('chai')\n-const jsonToXml = require('../lib/helpers/jsonToXml')\n+const jsonToXml = require('../lib/helpers/jsonToXML')\nconst ... | JavaScript | MIT License | mjmlio/mjml | correct file name case |
424,171 | 22.08.2018 12:32:16 | -7,200 | 01ee5322208618aac8641a17eda01539efff01da | fix add name on links | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -20,6 +20,7 @@ export default class MjButton extends BodyComponent {\n'font-weight': 'string',\nheight: 'unit(px,%)',\nhref: 'string',\n+ name: 'string',\n'inner-p... | JavaScript | MIT License | mjmlio/mjml | fix #1181 add name on links |
424,171 | 22.08.2018 12:39:00 | -7,200 | fcdd10d54f8c27b017acb14bbdff89f0b970051b | fix full clickable button | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-button/src/index.js",
"new_path": "packages/mjml-button/src/index.js",
"diff": "@@ -71,11 +71,12 @@ export default class MjButton extends BodyComponent {\ncursor: 'auto',\n'font-style': this.getAttribute('font-style'),\nheight: this.getAttribute(... | JavaScript | MIT License | mjmlio/mjml | fix #359 full clickable button |
424,171 | 22.08.2018 12:43:35 | -7,200 | 55899f4c8f617afa1bf8620ab8863239f388bb14 | add units on some readme | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/README.md",
"new_path": "packages/mjml-hero/README.md",
"diff": "@@ -26,7 +26,7 @@ Fixed height\ncolor=\"#ffffff\"\nfont-family=\"Helvetica\"\nalign=\"center\"\n- font-size=\"45\"\n+ font-size=\"45px\"\nline-height=\"45px\"\nfont-weight=\"90... | JavaScript | MIT License | mjmlio/mjml | add units on some readme |
424,171 | 23.08.2018 15:28:23 | -7,200 | 675e59ff8b7dddd7715356ca06b8155d9f1de58d | more social networks | [
{
"change_type": "MODIFY",
"old_path": "doc/basic.md",
"new_path": "doc/basic.md",
"diff": "@@ -182,19 +182,3 @@ For the text part, you are going to need two `<mj-text>`s like above. One with a\n</mj-section>\n```\nThis section is a 3-columns-based section. Please notice you can make the padding var... | JavaScript | MIT License | mjmlio/mjml | #1234 more social networks |
424,171 | 29.08.2018 12:59:38 | -7,200 | 9afb1fed47c08418f0af940fa8de7c68ec57f33e | fix alt attribute on social-element | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -100,6 +100,7 @@ align | string | left/right/center | cent\ncolor | color | text color | #333333\nname | string | `facebook google instagram pinterest linkedin twitter` ... | JavaScript | MIT License | mjmlio/mjml | fix #1334 alt attribute on social-element |
424,216 | 31.08.2018 13:44:54 | -7,200 | f42e82a6288ce68fab8f67ce46a75538afa53e61 | Remove illegal text-mode attribute | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -90,7 +90,6 @@ icon-height | percent/px | icon height, overrides icon-size | i\nline-height | percent/px | space between lines | 22px\nmode | string | vertical/horizonta... | JavaScript | MIT License | mjmlio/mjml | Remove illegal text-mode attribute |
424,171 | 06.09.2018 11:05:50 | -7,200 | b482c6b4097d771a67d513a350ead4367a12aab1 | update footer doc version | [
{
"change_type": "MODIFY",
"old_path": "doc/guide.md",
"new_path": "doc/guide.md",
"diff": "@@ -7,7 +7,7 @@ language_tabs:\ntoc_footers:\n- <a href='https://github.com/mjmlio/mjml'>Fork me on Github</a>\n- <a href='https://github.com/mjmlio/mjml/issues'>Submit an Issue</a>\n- - MJML v4.0.2\n+ - MJML... | JavaScript | MIT License | mjmlio/mjml | update footer doc version |
424,171 | 06.09.2018 14:01:11 | -7,200 | e40c4c78b7dcd384c286eff627cba0ae12ececea | update social doc for slate | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -106,11 +106,13 @@ Without a share url:\n- dribbble\nWhen using a network with share url, the `href` attribute will be inserted in the share url (i.e. `https://www.faceb... | JavaScript | MIT License | mjmlio/mjml | update social doc for slate |
424,171 | 13.09.2018 16:44:52 | -7,200 | 9e8685101b007a280efef21b6b1cce8a03d70f61 | fix cli --validate option | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -4,7 +4,7 @@ import { html as htmlBeautify } from 'js-beautify'\nimport { flow, pick, isNil, negate, pickBy } from 'lodash/fp'\nimport { isArray, isEmpty, map, get } f... | JavaScript | MIT License | mjmlio/mjml | fix cli --validate option |
424,171 | 13.09.2018 18:31:26 | -7,200 | 086f015cd97891097275bb174856caa6dabb2f5d | revert fix that prevents images from shrinking on mobile | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-image/src/index.js",
"new_path": "packages/mjml-image/src/index.js",
"diff": "@@ -61,7 +61,7 @@ export default class MjImage extends BodyComponent {\n'text-decoration': 'none',\nheight: this.getAttribute('height'),\n'min-width': fullWidth ? '100%... | JavaScript | MIT License | mjmlio/mjml | revert fix that prevents images from shrinking on mobile |
424,171 | 17.09.2018 14:17:42 | -7,200 | db76371dd8bae3679ac9765845cfcbd84f2ae75a | remove commas appearing near carousel radios | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-carousel/src/Carousel.js",
"new_path": "packages/mjml-carousel/src/Carousel.js",
"diff": "@@ -309,7 +309,7 @@ export default class MjCarousel extends BodyComponent {\n/>\n</label>\n`,\n- )}\n+ ).join('')}\n</div>\n</td>\n`\n"
}
] | JavaScript | MIT License | mjmlio/mjml | remove commas appearing near carousel radios |
424,171 | 17.09.2018 17:36:09 | -7,200 | cd075e483392286add1f9ffc69eaabe0e4f6f2f9 | update validator doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/README.md",
"new_path": "packages/mjml-validator/README.md",
"diff": "@@ -26,13 +26,13 @@ mjml --validate template.mjml\n## In Javascript\n-In Javascript, you can provide the level through the `options` parameters on `MJMLRenderer`. Ex:... | JavaScript | MIT License | mjmlio/mjml | update validator doc |
424,171 | 17.09.2018 17:53:24 | -7,200 | 163a4eab1f4f2e97224a5e06908e10647435e3c9 | remove mjmlconfig from validator doc | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/README.md",
"new_path": "packages/mjml-validator/README.md",
"diff": "@@ -33,22 +33,3 @@ In Javascript, you can provide the level through the `options` parameters on `mj\n* `getMessages` returns an array of `formattedMessage`.\nWhen usi... | JavaScript | MIT License | mjmlio/mjml | remove mjmlconfig from validator doc |
424,171 | 08.10.2018 16:31:33 | -7,200 | 27333e8dd75b2def42301e6d106bfec7c491d328 | fix hero children width shouldnt depend on siblings | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/src/index.js",
"new_path": "packages/mjml-hero/src/index.js",
"diff": "@@ -48,13 +48,12 @@ export default class MjHero extends BodyComponent {\ngetChildContext() {\n// Refactor -- removePaddingFor(width, ['padding', 'inner-padding'])\nconst ... | JavaScript | MIT License | mjmlio/mjml | fix #1357 hero children width shouldnt depend on siblings |
424,195 | 10.10.2018 14:19:06 | -7,200 | 777d09497a8fe810198b87fce2cbcb1371cfc7e5 | fix: removeContainerTag function
Fix for the removeContainerTag() function which was removing any first tag instead of only a mj-container one | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-migrate/src/migrate.js",
"new_path": "packages/mjml-migrate/src/migrate.js",
"diff": "@@ -7,9 +7,10 @@ import { components } from 'mjml-core'\nimport { unavailableTags, attributesWithUnit } from './config'\nfunction removeContainerTag(bodyTag) {\... | JavaScript | MIT License | mjmlio/mjml | fix: removeContainerTag function
Fix for the removeContainerTag() function which was removing any first tag instead of only a mj-container one |
424,241 | 16.10.2018 15:04:59 | -3,600 | 226e2cf69ccf2720bd1a3cbe120ad6b6b93d1bb5 | allow config.fonts to be set from CLI | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -90,7 +90,15 @@ export default async () => {\n.help()\n.version(`mjml-core: ${coreVersion}\\nmjml-cli: ${cliVersion}`).argv\n- const config = Object.assign(DEFAULT_OPT... | JavaScript | MIT License | mjmlio/mjml | allow config.fonts to be set from CLI |
424,171 | 17.10.2018 13:15:32 | -7,200 | f039f83a3c9b0cca3fd8fa95ecba66af6773b570 | fix console.logs into console.errors | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -31,7 +31,7 @@ export default async () => {\nlet KEEP_OPEN = false\nconst error = msg => {\n- console.log('\\nCommand line error:') // eslint-disable-line no-console\n... | JavaScript | MIT License | mjmlio/mjml | fix #1342 console.logs into console.errors |
424,171 | 23.10.2018 14:47:35 | -7,200 | c11958b6687f6b019b8a0819e7e14450cc387189 | rm references to width attr | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/src/index.js",
"new_path": "packages/mjml-hero/src/index.js",
"diff": "@@ -52,8 +52,7 @@ export default class MjHero extends BodyComponent {\nthis.getShorthandAttrValue('padding', 'left') +\nthis.getShorthandAttrValue('padding', 'right')\n- ... | JavaScript | MIT License | mjmlio/mjml | rm references to width attr |
424,171 | 23.10.2018 14:50:49 | -7,200 | 1456d67de5bc2c9a5cde2a66d092645e7fabf988 | rm width in hero example | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/README.md",
"new_path": "packages/mjml-hero/README.md",
"diff": "@@ -14,13 +14,11 @@ Fixed height\n<mj-hero\nmode=\"fixed-height\"\nheight=\"469px\"\n- width=\"100%\"\nbackground-width=\"600px\"\nbackground-height=\"469px\"\nbackground-url=\... | JavaScript | MIT License | mjmlio/mjml | rm width in hero example |
424,171 | 23.10.2018 14:56:56 | -7,200 | 189789e556acb5b515c74fa6eff8233bf56452af | fix rm other exports from mjml | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml/src/index.js",
"new_path": "packages/mjml/src/index.js",
"diff": "-import mjml2html, { registerComponent, handleMjmlConfig } from 'mjml-core'\n+import mjml2html, { registerComponent } from 'mjml-core'\nimport { registerDependencies } from 'mjml-v... | JavaScript | MIT License | mjmlio/mjml | fix #1387 rm other exports from mjml |
424,171 | 29.10.2018 22:31:06 | -3,600 | 960b6296e6eb4d3de4cca312569f7af862fc1188 | fix paddings on social icon and text | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -53,6 +53,8 @@ padding-bottom | px | bottom offset | n\npadding-left | px | left offset | n/a\npadding-right | px | right offset | n/a\npadding-top | px | top offset | n... | JavaScript | MIT License | mjmlio/mjml | fix #1384 paddings on social icon and text |
424,171 | 02.11.2018 18:30:39 | -3,600 | 6876b7d893bbdc091db1d09126c288497b373b37 | fix support font-weight on style on social | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/README.md",
"new_path": "packages/mjml-social/README.md",
"diff": "@@ -43,6 +43,8 @@ color | color | text color | #333\ncontainer-background-color | color | inner element background color | n/a\nfont-family | string | font name | Ubuntu, H... | JavaScript | MIT License | mjmlio/mjml | fix #1412 support font-weight on style on social |
424,229 | 05.11.2018 21:07:22 | 18,000 | 5cc9297e96557f640423c855defbd73370aca3a2 | Declare dependency on babel-runtime | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-head-attributes/package.json",
"new_path": "packages/mjml-head-attributes/package.json",
"diff": "\"build\": \"cross-env ../../node_modules/.bin/babel src --out-dir lib\"\n},\n\"dependencies\": {\n+ \"babel-runtime\": \"^6.26.0\",\n\"cross-env\":... | JavaScript | MIT License | mjmlio/mjml | Declare dependency on babel-runtime |
424,171 | 07.11.2018 13:04:56 | -3,600 | 94f781112916026cf3ca2c1e0ad339802d4b4219 | restablish inner-div width | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-hero/src/index.js",
"new_path": "packages/mjml-hero/src/index.js",
"diff": "@@ -144,6 +144,7 @@ export default class MjHero extends BodyComponent {\n'background-color': this.getAttribute('inner-background-color'),\nfloat: this.getAttribute('align... | JavaScript | MIT License | mjmlio/mjml | restablish inner-div width |
424,171 | 07.11.2018 15:30:12 | -3,600 | 28505c8adba059c602e0b038cde0ae9000b4cc07 | add beautify option to migrate | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/package.json",
"new_path": "packages/mjml-cli/package.json",
"diff": "\"chokidar\": \"^1.6.1\",\n\"cross-env\": \"^5.1.4\",\n\"glob\": \"^7.1.1\",\n- \"js-beautify\": \"^1.6.14\",\n\"lodash\": \"^4.17.4\",\n\"mjml-core\": \"^4.2.0\",\n\"mjml-... | JavaScript | MIT License | mjmlio/mjml | add beautify option to migrate |
424,171 | 07.11.2018 15:34:26 | -3,600 | 8dd4b95d488569ff2de0d88cd408c6b52cdf6e29 | revert some prettier changes | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/src/client.js",
"new_path": "packages/mjml-cli/src/client.js",
"diff": "@@ -227,8 +227,8 @@ export default async () => {\n}\ncase 's': {\nPromise.all(convertedStream.map(outputToConsole))\n- .then(() => (process.exitCode = EXIT_CODE)) // esli... | JavaScript | MIT License | mjmlio/mjml | revert some prettier changes |
424,171 | 09.11.2018 13:20:40 | -3,600 | a144898b0f25c474ed4c80ac22f373a157b17964 | fix expose minifyOptions | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-cli/README.md",
"new_path": "packages/mjml-cli/README.md",
"diff": "@@ -69,6 +69,14 @@ $> mjml input.mjml --config.beautify true --config.minify false\nThese are the default options.\n+### Change minify options\n+\n+```bash\n+$> mjml input.mjml -... | JavaScript | MIT License | mjmlio/mjml | fix #1405 expose minifyOptions |
424,171 | 12.11.2018 15:05:52 | -3,600 | 04820f1be92ec2b291c24029e0e1b8730a4b233c | console.log into console.error | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-core/src/createComponent.js",
"new_path": "packages/mjml-core/src/createComponent.js",
"diff": "@@ -245,7 +245,7 @@ export class HeadComponent extends Component {\nif (!component) {\n// eslint-disable-next-line no-console\n- console.log(`No match... | JavaScript | MIT License | mjmlio/mjml | console.log into console.error |
424,171 | 19.11.2018 15:04:21 | -3,600 | b97ec7ebc4134856faf105102c149352f29d45be | fix fix parsing when a single line endingTag contains an opening tag | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-parser-xml/src/index.js",
"new_path": "packages/mjml-parser-xml/src/index.js",
"diff": "@@ -197,8 +197,10 @@ export default function MJMLParser(xml, options = {}, includedIn = []) {\nif (!inEndingTag) { // we're getting out of endingTag\n// if se... | JavaScript | MIT License | mjmlio/mjml | fix #1358 fix parsing when a single line endingTag contains an opening tag |
424,171 | 21.11.2018 13:07:08 | -3,600 | cec465bd8a67f9e055a4c42877acd64055d4d865 | fix option name in doc | [
{
"change_type": "MODIFY",
"old_path": "doc/install.md",
"new_path": "doc/install.md",
"diff": "@@ -57,7 +57,7 @@ argument | description | default value\n`mjml -w [input]` | Watches the changes made to [input] (file or folder) | NA\n`mjml [input] --config.beautify` | Beautifies the output (`true` or... | JavaScript | MIT License | mjmlio/mjml | fix #1432 option name in doc |
424,171 | 26.11.2018 17:40:26 | -3,600 | 78a8a875ff4757a10aafd1c389da3517f3a55a5d | update mj-style documentation | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-head-style/README.md",
"new_path": "packages/mjml-head-style/README.md",
"diff": "This tag allows you to set CSS styles that will be applied to the <b>HTML</b> in your MJML document as well as the HTML outputted. The CSS styles will be added to t... | JavaScript | MIT License | mjmlio/mjml | update mj-style documentation |
424,171 | 04.12.2018 14:48:52 | -3,600 | 7b32112e7296037292c6b6ff3cccac2b5665c208 | add title on social img | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -113,6 +113,7 @@ export default class MjSocialElement extends BodyComponent {\n'text-padding': 'unit(px,%){1,4}',\nsrc: 'string',\nalt: 'string',\n... | JavaScript | MIT License | mjmlio/mjml | add title on social img |
424,171 | 04.12.2018 14:52:30 | -3,600 | f02cd470df79a277ae557493aa788d6f9ebf2b2f | allow to override skipElements with validator options | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/index.js",
"new_path": "packages/mjml-validator/src/index.js",
"diff": "@@ -20,8 +20,8 @@ export default function MJMLValidator(element, options = {}) {\nerrors,\n...values(rulesCollection)\n.map(rule => rule(element, {\n- ...option... | JavaScript | MIT License | mjmlio/mjml | allow to override skipElements with validator options |
424,171 | 04.12.2018 14:53:42 | -3,600 | eb2ddcb3b58f8098f1b46be00ff5ab140eae2bc8 | remove check on rules arguments number | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/MJMLRulesCollection.js",
"new_path": "packages/mjml-validator/src/MJMLRulesCollection.js",
"diff": "@@ -6,10 +6,10 @@ import * as rules from './rules'\nconst MJMLRulesCollection = {}\nexport function registerRule(rule, name) {\n- if... | JavaScript | MIT License | mjmlio/mjml | remove check on rules arguments number |
424,171 | 04.12.2018 15:47:49 | -3,600 | 34de00013109c6f39f0afa9aad8bc7943dfe436b | fix skipElements | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-validator/src/index.js",
"new_path": "packages/mjml-validator/src/index.js",
"diff": "@@ -14,13 +14,15 @@ export default function MJMLValidator(element, options = {}) {\nconst { children, tagName } = element\nlet errors\n- if (!includes(SKIP_ELEM... | JavaScript | MIT License | mjmlio/mjml | fix skipElements |
424,171 | 13.12.2018 16:11:07 | -3,600 | 1793ba8639e0f0ed30163d530017172579b7ced1 | fix try-it-live link | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-head-breakpoint/README.md",
"new_path": "packages/mjml-head-breakpoint/README.md",
"diff": "@@ -19,7 +19,7 @@ This tag allows you to control on which breakpoint the layout should go desktop/\n```\n<p align=\"center\">\n- <a href=\"https://mjml.io... | JavaScript | MIT License | mjmlio/mjml | fix try-it-live link |
424,171 | 13.12.2018 17:06:53 | -3,600 | 7501d38c2540056cef89cede8b6ec92173c4b649 | fix for ipad display block on social image | [
{
"change_type": "MODIFY",
"old_path": "packages/mjml-social/src/SocialElement.js",
"new_path": "packages/mjml-social/src/SocialElement.js",
"diff": "@@ -156,6 +156,7 @@ export default class MjSocialElement extends BodyComponent {\n},\nimg: {\n'border-radius': this.getAttribute('border-radius'),\n+ ... | JavaScript | MIT License | mjmlio/mjml | fix #1441 for ipad display block on social image |
424,233 | 14.12.2018 15:55:29 | -3,600 | fe2daa3c4eafefd750b0cf784ac6b7b0e1a6bd14 | fix link to "try it live" | [
{
"change_type": "MODIFY",
"old_path": "doc/guide.md",
"new_path": "doc/guide.md",
"diff": "@@ -42,7 +42,7 @@ MJML has been designed with responsiveness in mind. The abstraction it offers gu\n<br />\n<br />\n<br />\n- <a href=\"/try-it-live/intro\"><img width=\"100px\" src=\"https://mjml.io/assets/i... | JavaScript | MIT License | mjmlio/mjml | fix link to "try it live" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.