@atlaskit/editor-wikimarkup-transformer 9.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2299 -0
- package/LICENSE +13 -0
- package/build/tsconfig.json +17 -0
- package/char/package.json +7 -0
- package/dist/cjs/char.js +8 -0
- package/dist/cjs/encoder/emoji-unicode-mapping.js +1618 -0
- package/dist/cjs/encoder/index.js +76 -0
- package/dist/cjs/encoder/marks/__base.js +24 -0
- package/dist/cjs/encoder/marks/code.js +12 -0
- package/dist/cjs/encoder/marks/color.js +12 -0
- package/dist/cjs/encoder/marks/em.js +19 -0
- package/dist/cjs/encoder/marks/link.js +12 -0
- package/dist/cjs/encoder/marks/strike.js +14 -0
- package/dist/cjs/encoder/marks/strong.js +18 -0
- package/dist/cjs/encoder/marks/subsup.js +18 -0
- package/dist/cjs/encoder/marks/underline.js +14 -0
- package/dist/cjs/encoder/nodes/block-card.js +18 -0
- package/dist/cjs/encoder/nodes/blockquote.js +21 -0
- package/dist/cjs/encoder/nodes/bullet-list.js +21 -0
- package/dist/cjs/encoder/nodes/code-block.js +27 -0
- package/dist/cjs/encoder/nodes/date.js +21 -0
- package/dist/cjs/encoder/nodes/decisionItem.js +23 -0
- package/dist/cjs/encoder/nodes/decisionList.js +18 -0
- package/dist/cjs/encoder/nodes/doc.js +21 -0
- package/dist/cjs/encoder/nodes/embed-card.js +18 -0
- package/dist/cjs/encoder/nodes/emoji.js +26 -0
- package/dist/cjs/encoder/nodes/expand.js +22 -0
- package/dist/cjs/encoder/nodes/hard-break.js +12 -0
- package/dist/cjs/encoder/nodes/heading.js +18 -0
- package/dist/cjs/encoder/nodes/inline-card.js +26 -0
- package/dist/cjs/encoder/nodes/inlines.js +44 -0
- package/dist/cjs/encoder/nodes/listItem.js +77 -0
- package/dist/cjs/encoder/nodes/media-group.js +24 -0
- package/dist/cjs/encoder/nodes/media.js +66 -0
- package/dist/cjs/encoder/nodes/mention.js +27 -0
- package/dist/cjs/encoder/nodes/ordered-list.js +21 -0
- package/dist/cjs/encoder/nodes/panel.js +29 -0
- package/dist/cjs/encoder/nodes/paragraph.js +23 -0
- package/dist/cjs/encoder/nodes/rule.js +12 -0
- package/dist/cjs/encoder/nodes/status.js +43 -0
- package/dist/cjs/encoder/nodes/table.js +77 -0
- package/dist/cjs/encoder/nodes/taskItem.js +32 -0
- package/dist/cjs/encoder/nodes/taskList.js +27 -0
- package/dist/cjs/encoder/nodes/text.js +67 -0
- package/dist/cjs/encoder/nodes/unknown.js +17 -0
- package/dist/cjs/index.js +93 -0
- package/dist/cjs/interfaces.js +5 -0
- package/dist/cjs/parser/abstract-tree.js +44 -0
- package/dist/cjs/parser/builder/list-builder.js +350 -0
- package/dist/cjs/parser/builder/table-builder.js +156 -0
- package/dist/cjs/parser/color.js +13 -0
- package/dist/cjs/parser/error.js +22 -0
- package/dist/cjs/parser/nodes/mediaGroup.js +25 -0
- package/dist/cjs/parser/nodes/mediaSingle.js +107 -0
- package/dist/cjs/parser/nodes/paragraph.js +72 -0
- package/dist/cjs/parser/nodes/rule.js +27 -0
- package/dist/cjs/parser/nodes/text.js +15 -0
- package/dist/cjs/parser/text.js +165 -0
- package/dist/cjs/parser/tokenize/adf-macro.js +49 -0
- package/dist/cjs/parser/tokenize/anchor-macro.js +31 -0
- package/dist/cjs/parser/tokenize/blockquote.js +42 -0
- package/dist/cjs/parser/tokenize/citation.js +71 -0
- package/dist/cjs/parser/tokenize/code-macro.js +95 -0
- package/dist/cjs/parser/tokenize/color-macro.js +64 -0
- package/dist/cjs/parser/tokenize/common-formatter.js +230 -0
- package/dist/cjs/parser/tokenize/common-macro.js +62 -0
- package/dist/cjs/parser/tokenize/dash-token-creator.js +42 -0
- package/dist/cjs/parser/tokenize/deleted.js +66 -0
- package/dist/cjs/parser/tokenize/double-dash-symbol.js +30 -0
- package/dist/cjs/parser/tokenize/emoji.js +184 -0
- package/dist/cjs/parser/tokenize/emphasis.js +65 -0
- package/dist/cjs/parser/tokenize/file-link.js +36 -0
- package/dist/cjs/parser/tokenize/force-line-break.js +48 -0
- package/dist/cjs/parser/tokenize/hardbreak.js +33 -0
- package/dist/cjs/parser/tokenize/heading.js +70 -0
- package/dist/cjs/parser/tokenize/index.js +144 -0
- package/dist/cjs/parser/tokenize/inserted.js +65 -0
- package/dist/cjs/parser/tokenize/issue-key.js +107 -0
- package/dist/cjs/parser/tokenize/keyword.js +159 -0
- package/dist/cjs/parser/tokenize/link-text.js +77 -0
- package/dist/cjs/parser/tokenize/links/attachment-link.js +18 -0
- package/dist/cjs/parser/tokenize/links/issue-link.js +41 -0
- package/dist/cjs/parser/tokenize/links/link-format.js +65 -0
- package/dist/cjs/parser/tokenize/links/link-parser.js +224 -0
- package/dist/cjs/parser/tokenize/links/link-resolver.js +57 -0
- package/dist/cjs/parser/tokenize/links/mention-link.js +24 -0
- package/dist/cjs/parser/tokenize/links/url-link.js +64 -0
- package/dist/cjs/parser/tokenize/list.js +339 -0
- package/dist/cjs/parser/tokenize/media.js +51 -0
- package/dist/cjs/parser/tokenize/monospace.js +59 -0
- package/dist/cjs/parser/tokenize/noformat-macro.js +46 -0
- package/dist/cjs/parser/tokenize/panel-macro.js +106 -0
- package/dist/cjs/parser/tokenize/quadruple-dash-symbol.js +30 -0
- package/dist/cjs/parser/tokenize/quote-macro.js +166 -0
- package/dist/cjs/parser/tokenize/ruler.js +33 -0
- package/dist/cjs/parser/tokenize/strong.js +65 -0
- package/dist/cjs/parser/tokenize/subscript.js +67 -0
- package/dist/cjs/parser/tokenize/superscript.js +67 -0
- package/dist/cjs/parser/tokenize/table.js +353 -0
- package/dist/cjs/parser/tokenize/triple-dash-symbol.js +30 -0
- package/dist/cjs/parser/tokenize/whitespace.js +56 -0
- package/dist/cjs/parser/utils/attrs.js +33 -0
- package/dist/cjs/parser/utils/color-name-mapping.js +700 -0
- package/dist/cjs/parser/utils/escape.js +36 -0
- package/dist/cjs/parser/utils/normalize.js +209 -0
- package/dist/cjs/parser/utils/panel-type.js +120 -0
- package/dist/cjs/parser/utils/text.js +98 -0
- package/dist/cjs/parser/utils/title.js +17 -0
- package/dist/cjs/parser/utils/url.js +31 -0
- package/dist/cjs/version.json +5 -0
- package/dist/es2019/char.js +1 -0
- package/dist/es2019/encoder/emoji-unicode-mapping.js +1611 -0
- package/dist/es2019/encoder/index.js +51 -0
- package/dist/es2019/encoder/marks/__base.js +15 -0
- package/dist/es2019/encoder/marks/code.js +3 -0
- package/dist/es2019/encoder/marks/color.js +3 -0
- package/dist/es2019/encoder/marks/em.js +9 -0
- package/dist/es2019/encoder/marks/link.js +3 -0
- package/dist/es2019/encoder/marks/strike.js +4 -0
- package/dist/es2019/encoder/marks/strong.js +9 -0
- package/dist/es2019/encoder/marks/subsup.js +8 -0
- package/dist/es2019/encoder/marks/underline.js +4 -0
- package/dist/es2019/encoder/nodes/block-card.js +8 -0
- package/dist/es2019/encoder/nodes/blockquote.js +10 -0
- package/dist/es2019/encoder/nodes/bullet-list.js +10 -0
- package/dist/es2019/encoder/nodes/code-block.js +16 -0
- package/dist/es2019/encoder/nodes/date.js +12 -0
- package/dist/es2019/encoder/nodes/decisionItem.js +12 -0
- package/dist/es2019/encoder/nodes/decisionList.js +8 -0
- package/dist/es2019/encoder/nodes/doc.js +10 -0
- package/dist/es2019/encoder/nodes/embed-card.js +8 -0
- package/dist/es2019/encoder/nodes/emoji.js +15 -0
- package/dist/es2019/encoder/nodes/expand.js +11 -0
- package/dist/es2019/encoder/nodes/hard-break.js +3 -0
- package/dist/es2019/encoder/nodes/heading.js +8 -0
- package/dist/es2019/encoder/nodes/inline-card.js +15 -0
- package/dist/es2019/encoder/nodes/inlines.js +26 -0
- package/dist/es2019/encoder/nodes/listItem.js +63 -0
- package/dist/es2019/encoder/nodes/media-group.js +13 -0
- package/dist/es2019/encoder/nodes/media.js +54 -0
- package/dist/es2019/encoder/nodes/mention.js +16 -0
- package/dist/es2019/encoder/nodes/ordered-list.js +10 -0
- package/dist/es2019/encoder/nodes/panel.js +19 -0
- package/dist/es2019/encoder/nodes/paragraph.js +12 -0
- package/dist/es2019/encoder/nodes/rule.js +3 -0
- package/dist/es2019/encoder/nodes/status.js +23 -0
- package/dist/es2019/encoder/nodes/table.js +62 -0
- package/dist/es2019/encoder/nodes/taskItem.js +21 -0
- package/dist/es2019/encoder/nodes/taskList.js +17 -0
- package/dist/es2019/encoder/nodes/text.js +46 -0
- package/dist/es2019/encoder/nodes/unknown.js +8 -0
- package/dist/es2019/index.js +58 -0
- package/dist/es2019/interfaces.js +1 -0
- package/dist/es2019/parser/abstract-tree.js +23 -0
- package/dist/es2019/parser/builder/list-builder.js +294 -0
- package/dist/es2019/parser/builder/table-builder.js +135 -0
- package/dist/es2019/parser/color.js +5 -0
- package/dist/es2019/parser/error.js +15 -0
- package/dist/es2019/parser/nodes/mediaGroup.js +18 -0
- package/dist/es2019/parser/nodes/mediaSingle.js +95 -0
- package/dist/es2019/parser/nodes/paragraph.js +43 -0
- package/dist/es2019/parser/nodes/rule.js +21 -0
- package/dist/es2019/parser/nodes/text.js +8 -0
- package/dist/es2019/parser/text.js +145 -0
- package/dist/es2019/parser/tokenize/adf-macro.js +40 -0
- package/dist/es2019/parser/tokenize/anchor-macro.js +22 -0
- package/dist/es2019/parser/tokenize/blockquote.js +26 -0
- package/dist/es2019/parser/tokenize/citation.js +53 -0
- package/dist/es2019/parser/tokenize/code-macro.js +57 -0
- package/dist/es2019/parser/tokenize/color-macro.js +46 -0
- package/dist/es2019/parser/tokenize/common-formatter.js +215 -0
- package/dist/es2019/parser/tokenize/common-macro.js +48 -0
- package/dist/es2019/parser/tokenize/dash-token-creator.js +31 -0
- package/dist/es2019/parser/tokenize/deleted.js +49 -0
- package/dist/es2019/parser/tokenize/double-dash-symbol.js +11 -0
- package/dist/es2019/parser/tokenize/emoji.js +174 -0
- package/dist/es2019/parser/tokenize/emphasis.js +48 -0
- package/dist/es2019/parser/tokenize/file-link.js +25 -0
- package/dist/es2019/parser/tokenize/force-line-break.js +38 -0
- package/dist/es2019/parser/tokenize/hardbreak.js +24 -0
- package/dist/es2019/parser/tokenize/heading.js +58 -0
- package/dist/es2019/parser/tokenize/index.js +129 -0
- package/dist/es2019/parser/tokenize/inserted.js +48 -0
- package/dist/es2019/parser/tokenize/issue-key.js +81 -0
- package/dist/es2019/parser/tokenize/keyword.js +142 -0
- package/dist/es2019/parser/tokenize/link-text.js +65 -0
- package/dist/es2019/parser/tokenize/links/attachment-link.js +8 -0
- package/dist/es2019/parser/tokenize/links/issue-link.js +35 -0
- package/dist/es2019/parser/tokenize/links/link-format.js +52 -0
- package/dist/es2019/parser/tokenize/links/link-parser.js +208 -0
- package/dist/es2019/parser/tokenize/links/link-resolver.js +39 -0
- package/dist/es2019/parser/tokenize/links/mention-link.js +17 -0
- package/dist/es2019/parser/tokenize/links/url-link.js +49 -0
- package/dist/es2019/parser/tokenize/list.js +296 -0
- package/dist/es2019/parser/tokenize/media.js +30 -0
- package/dist/es2019/parser/tokenize/monospace.js +47 -0
- package/dist/es2019/parser/tokenize/noformat-macro.js +37 -0
- package/dist/es2019/parser/tokenize/panel-macro.js +63 -0
- package/dist/es2019/parser/tokenize/quadruple-dash-symbol.js +22 -0
- package/dist/es2019/parser/tokenize/quote-macro.js +129 -0
- package/dist/es2019/parser/tokenize/ruler.js +23 -0
- package/dist/es2019/parser/tokenize/strong.js +48 -0
- package/dist/es2019/parser/tokenize/subscript.js +50 -0
- package/dist/es2019/parser/tokenize/superscript.js +50 -0
- package/dist/es2019/parser/tokenize/table.js +333 -0
- package/dist/es2019/parser/tokenize/triple-dash-symbol.js +11 -0
- package/dist/es2019/parser/tokenize/whitespace.js +45 -0
- package/dist/es2019/parser/utils/attrs.js +17 -0
- package/dist/es2019/parser/utils/color-name-mapping.js +693 -0
- package/dist/es2019/parser/utils/escape.js +28 -0
- package/dist/es2019/parser/utils/normalize.js +161 -0
- package/dist/es2019/parser/utils/panel-type.js +109 -0
- package/dist/es2019/parser/utils/text.js +58 -0
- package/dist/es2019/parser/utils/title.js +10 -0
- package/dist/es2019/parser/utils/url.js +24 -0
- package/dist/es2019/version.json +5 -0
- package/dist/esm/char.js +1 -0
- package/dist/esm/encoder/emoji-unicode-mapping.js +1611 -0
- package/dist/esm/encoder/index.js +51 -0
- package/dist/esm/encoder/marks/__base.js +15 -0
- package/dist/esm/encoder/marks/code.js +3 -0
- package/dist/esm/encoder/marks/color.js +3 -0
- package/dist/esm/encoder/marks/em.js +9 -0
- package/dist/esm/encoder/marks/link.js +3 -0
- package/dist/esm/encoder/marks/strike.js +4 -0
- package/dist/esm/encoder/marks/strong.js +9 -0
- package/dist/esm/encoder/marks/subsup.js +8 -0
- package/dist/esm/encoder/marks/underline.js +4 -0
- package/dist/esm/encoder/nodes/block-card.js +8 -0
- package/dist/esm/encoder/nodes/blockquote.js +11 -0
- package/dist/esm/encoder/nodes/bullet-list.js +11 -0
- package/dist/esm/encoder/nodes/code-block.js +16 -0
- package/dist/esm/encoder/nodes/date.js +12 -0
- package/dist/esm/encoder/nodes/decisionItem.js +13 -0
- package/dist/esm/encoder/nodes/decisionList.js +8 -0
- package/dist/esm/encoder/nodes/doc.js +11 -0
- package/dist/esm/encoder/nodes/embed-card.js +8 -0
- package/dist/esm/encoder/nodes/emoji.js +15 -0
- package/dist/esm/encoder/nodes/expand.js +12 -0
- package/dist/esm/encoder/nodes/hard-break.js +3 -0
- package/dist/esm/encoder/nodes/heading.js +8 -0
- package/dist/esm/encoder/nodes/inline-card.js +15 -0
- package/dist/esm/encoder/nodes/inlines.js +26 -0
- package/dist/esm/encoder/nodes/listItem.js +63 -0
- package/dist/esm/encoder/nodes/media-group.js +14 -0
- package/dist/esm/encoder/nodes/media.js +57 -0
- package/dist/esm/encoder/nodes/mention.js +19 -0
- package/dist/esm/encoder/nodes/ordered-list.js +11 -0
- package/dist/esm/encoder/nodes/panel.js +18 -0
- package/dist/esm/encoder/nodes/paragraph.js +13 -0
- package/dist/esm/encoder/nodes/rule.js +3 -0
- package/dist/esm/encoder/nodes/status.js +29 -0
- package/dist/esm/encoder/nodes/table.js +66 -0
- package/dist/esm/encoder/nodes/taskItem.js +22 -0
- package/dist/esm/encoder/nodes/taskList.js +18 -0
- package/dist/esm/encoder/nodes/text.js +51 -0
- package/dist/esm/encoder/nodes/unknown.js +6 -0
- package/dist/esm/index.js +78 -0
- package/dist/esm/interfaces.js +1 -0
- package/dist/esm/parser/abstract-tree.js +34 -0
- package/dist/esm/parser/builder/list-builder.js +338 -0
- package/dist/esm/parser/builder/table-builder.js +150 -0
- package/dist/esm/parser/color.js +5 -0
- package/dist/esm/parser/error.js +15 -0
- package/dist/esm/parser/nodes/mediaGroup.js +18 -0
- package/dist/esm/parser/nodes/mediaSingle.js +97 -0
- package/dist/esm/parser/nodes/paragraph.js +61 -0
- package/dist/esm/parser/nodes/rule.js +18 -0
- package/dist/esm/parser/nodes/text.js +8 -0
- package/dist/esm/parser/text.js +149 -0
- package/dist/esm/parser/tokenize/adf-macro.js +39 -0
- package/dist/esm/parser/tokenize/anchor-macro.js +21 -0
- package/dist/esm/parser/tokenize/blockquote.js +28 -0
- package/dist/esm/parser/tokenize/citation.js +54 -0
- package/dist/esm/parser/tokenize/code-macro.js +80 -0
- package/dist/esm/parser/tokenize/color-macro.js +46 -0
- package/dist/esm/parser/tokenize/common-formatter.js +216 -0
- package/dist/esm/parser/tokenize/common-macro.js +52 -0
- package/dist/esm/parser/tokenize/dash-token-creator.js +33 -0
- package/dist/esm/parser/tokenize/deleted.js +50 -0
- package/dist/esm/parser/tokenize/double-dash-symbol.js +19 -0
- package/dist/esm/parser/tokenize/emoji.js +173 -0
- package/dist/esm/parser/tokenize/emphasis.js +49 -0
- package/dist/esm/parser/tokenize/file-link.js +25 -0
- package/dist/esm/parser/tokenize/force-line-break.js +38 -0
- package/dist/esm/parser/tokenize/hardbreak.js +23 -0
- package/dist/esm/parser/tokenize/heading.js +58 -0
- package/dist/esm/parser/tokenize/index.js +102 -0
- package/dist/esm/parser/tokenize/inserted.js +49 -0
- package/dist/esm/parser/tokenize/issue-key.js +89 -0
- package/dist/esm/parser/tokenize/keyword.js +142 -0
- package/dist/esm/parser/tokenize/link-text.js +64 -0
- package/dist/esm/parser/tokenize/links/attachment-link.js +8 -0
- package/dist/esm/parser/tokenize/links/issue-link.js +33 -0
- package/dist/esm/parser/tokenize/links/link-format.js +51 -0
- package/dist/esm/parser/tokenize/links/link-parser.js +213 -0
- package/dist/esm/parser/tokenize/links/link-resolver.js +55 -0
- package/dist/esm/parser/tokenize/links/mention-link.js +17 -0
- package/dist/esm/parser/tokenize/links/url-link.js +50 -0
- package/dist/esm/parser/tokenize/list.js +318 -0
- package/dist/esm/parser/tokenize/media.js +36 -0
- package/dist/esm/parser/tokenize/monospace.js +47 -0
- package/dist/esm/parser/tokenize/noformat-macro.js +34 -0
- package/dist/esm/parser/tokenize/panel-macro.js +88 -0
- package/dist/esm/parser/tokenize/quadruple-dash-symbol.js +21 -0
- package/dist/esm/parser/tokenize/quote-macro.js +148 -0
- package/dist/esm/parser/tokenize/ruler.js +22 -0
- package/dist/esm/parser/tokenize/strong.js +49 -0
- package/dist/esm/parser/tokenize/subscript.js +51 -0
- package/dist/esm/parser/tokenize/superscript.js +51 -0
- package/dist/esm/parser/tokenize/table.js +336 -0
- package/dist/esm/parser/tokenize/triple-dash-symbol.js +19 -0
- package/dist/esm/parser/tokenize/whitespace.js +45 -0
- package/dist/esm/parser/utils/attrs.js +23 -0
- package/dist/esm/parser/utils/color-name-mapping.js +693 -0
- package/dist/esm/parser/utils/escape.js +28 -0
- package/dist/esm/parser/utils/normalize.js +195 -0
- package/dist/esm/parser/utils/panel-type.js +109 -0
- package/dist/esm/parser/utils/text.js +81 -0
- package/dist/esm/parser/utils/title.js +10 -0
- package/dist/esm/parser/utils/url.js +24 -0
- package/dist/esm/version.json +5 -0
- package/dist/types/char.d.ts +1 -0
- package/dist/types/encoder/emoji-unicode-mapping.d.ts +3 -0
- package/dist/types/encoder/index.d.ts +9 -0
- package/dist/types/encoder/marks/__base.d.ts +5 -0
- package/dist/types/encoder/marks/code.d.ts +2 -0
- package/dist/types/encoder/marks/color.d.ts +2 -0
- package/dist/types/encoder/marks/em.d.ts +2 -0
- package/dist/types/encoder/marks/link.d.ts +2 -0
- package/dist/types/encoder/marks/strike.d.ts +2 -0
- package/dist/types/encoder/marks/strong.d.ts +6 -0
- package/dist/types/encoder/marks/subsup.d.ts +2 -0
- package/dist/types/encoder/marks/underline.d.ts +2 -0
- package/dist/types/encoder/nodes/block-card.d.ts +2 -0
- package/dist/types/encoder/nodes/blockquote.d.ts +2 -0
- package/dist/types/encoder/nodes/bullet-list.d.ts +2 -0
- package/dist/types/encoder/nodes/code-block.d.ts +2 -0
- package/dist/types/encoder/nodes/date.d.ts +2 -0
- package/dist/types/encoder/nodes/decisionItem.d.ts +3 -0
- package/dist/types/encoder/nodes/decisionList.d.ts +2 -0
- package/dist/types/encoder/nodes/doc.d.ts +2 -0
- package/dist/types/encoder/nodes/embed-card.d.ts +2 -0
- package/dist/types/encoder/nodes/emoji.d.ts +2 -0
- package/dist/types/encoder/nodes/expand.d.ts +2 -0
- package/dist/types/encoder/nodes/hard-break.d.ts +2 -0
- package/dist/types/encoder/nodes/heading.d.ts +2 -0
- package/dist/types/encoder/nodes/inline-card.d.ts +2 -0
- package/dist/types/encoder/nodes/inlines.d.ts +2 -0
- package/dist/types/encoder/nodes/listItem.d.ts +3 -0
- package/dist/types/encoder/nodes/media-group.d.ts +2 -0
- package/dist/types/encoder/nodes/media.d.ts +2 -0
- package/dist/types/encoder/nodes/mention.d.ts +2 -0
- package/dist/types/encoder/nodes/ordered-list.d.ts +2 -0
- package/dist/types/encoder/nodes/panel.d.ts +2 -0
- package/dist/types/encoder/nodes/paragraph.d.ts +2 -0
- package/dist/types/encoder/nodes/rule.d.ts +2 -0
- package/dist/types/encoder/nodes/status.d.ts +2 -0
- package/dist/types/encoder/nodes/table.d.ts +2 -0
- package/dist/types/encoder/nodes/taskItem.d.ts +3 -0
- package/dist/types/encoder/nodes/taskList.d.ts +2 -0
- package/dist/types/encoder/nodes/text.d.ts +2 -0
- package/dist/types/encoder/nodes/unknown.d.ts +2 -0
- package/dist/types/index.d.ts +15 -0
- package/dist/types/interfaces.d.ts +68 -0
- package/dist/types/parser/abstract-tree.d.ts +11 -0
- package/dist/types/parser/builder/list-builder.d.ts +66 -0
- package/dist/types/parser/builder/table-builder.d.ts +45 -0
- package/dist/types/parser/color.d.ts +3 -0
- package/dist/types/parser/error.d.ts +1 -0
- package/dist/types/parser/nodes/mediaGroup.d.ts +3 -0
- package/dist/types/parser/nodes/mediaSingle.d.ts +5 -0
- package/dist/types/parser/nodes/paragraph.d.ts +7 -0
- package/dist/types/parser/nodes/rule.d.ts +3 -0
- package/dist/types/parser/nodes/text.d.ts +2 -0
- package/dist/types/parser/text.d.ts +10 -0
- package/dist/types/parser/tokenize/adf-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/anchor-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/blockquote.d.ts +2 -0
- package/dist/types/parser/tokenize/citation.d.ts +2 -0
- package/dist/types/parser/tokenize/code-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/color-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/common-formatter.d.ts +10 -0
- package/dist/types/parser/tokenize/common-macro.d.ts +10 -0
- package/dist/types/parser/tokenize/dash-token-creator.d.ts +2 -0
- package/dist/types/parser/tokenize/deleted.d.ts +2 -0
- package/dist/types/parser/tokenize/double-dash-symbol.d.ts +1 -0
- package/dist/types/parser/tokenize/emoji.d.ts +15 -0
- package/dist/types/parser/tokenize/emphasis.d.ts +2 -0
- package/dist/types/parser/tokenize/file-link.d.ts +3 -0
- package/dist/types/parser/tokenize/force-line-break.d.ts +2 -0
- package/dist/types/parser/tokenize/hardbreak.d.ts +2 -0
- package/dist/types/parser/tokenize/heading.d.ts +2 -0
- package/dist/types/parser/tokenize/index.d.ts +55 -0
- package/dist/types/parser/tokenize/inserted.d.ts +2 -0
- package/dist/types/parser/tokenize/issue-key.d.ts +20 -0
- package/dist/types/parser/tokenize/keyword.d.ts +13 -0
- package/dist/types/parser/tokenize/link-text.d.ts +3 -0
- package/dist/types/parser/tokenize/links/attachment-link.d.ts +4 -0
- package/dist/types/parser/tokenize/links/issue-link.d.ts +4 -0
- package/dist/types/parser/tokenize/links/link-format.d.ts +2 -0
- package/dist/types/parser/tokenize/links/link-parser.d.ts +17 -0
- package/dist/types/parser/tokenize/links/link-resolver.d.ts +5 -0
- package/dist/types/parser/tokenize/links/mention-link.d.ts +4 -0
- package/dist/types/parser/tokenize/links/url-link.d.ts +4 -0
- package/dist/types/parser/tokenize/list.d.ts +3 -0
- package/dist/types/parser/tokenize/media.d.ts +2 -0
- package/dist/types/parser/tokenize/monospace.d.ts +2 -0
- package/dist/types/parser/tokenize/noformat-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/panel-macro.d.ts +2 -0
- package/dist/types/parser/tokenize/quadruple-dash-symbol.d.ts +2 -0
- package/dist/types/parser/tokenize/quote-macro.d.ts +5 -0
- package/dist/types/parser/tokenize/ruler.d.ts +2 -0
- package/dist/types/parser/tokenize/strong.d.ts +2 -0
- package/dist/types/parser/tokenize/subscript.d.ts +2 -0
- package/dist/types/parser/tokenize/superscript.d.ts +2 -0
- package/dist/types/parser/tokenize/table.d.ts +2 -0
- package/dist/types/parser/tokenize/triple-dash-symbol.d.ts +1 -0
- package/dist/types/parser/tokenize/whitespace.d.ts +3 -0
- package/dist/types/parser/utils/attrs.d.ts +3 -0
- package/dist/types/parser/utils/color-name-mapping.d.ts +10 -0
- package/dist/types/parser/utils/escape.d.ts +2 -0
- package/dist/types/parser/utils/normalize.d.ts +4 -0
- package/dist/types/parser/utils/panel-type.d.ts +3 -0
- package/dist/types/parser/utils/text.d.ts +21 -0
- package/dist/types/parser/utils/title.d.ts +7 -0
- package/dist/types/parser/utils/url.d.ts +8 -0
- package/docs/0-intro.tsx +24 -0
- package/interfaces/package.json +7 -0
- package/package.json +53 -0
- package/tsconfig.json +12 -0
- package/typings/json.d.ts +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2299 @@
|
|
|
1
|
+
# @atlaskit/editor-wikimarkup-transformer
|
|
2
|
+
|
|
3
|
+
## 9.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.5.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`aa6f29f8c3d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa6f29f8c3d) - Setting up empty string value for alt attribute (images) by default
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
16
|
+
## 9.5.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [`cdfde784f56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cdfde784f56) - [ux] When converting from wikimarkup to ADF, if there is a parse error in an adf macro, put it in a code block with an error message instead of crashing (ADFS-719)
|
|
21
|
+
|
|
22
|
+
## 9.5.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- [`d3945f52eeb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3945f52eeb) - Remove nulls when parsing and encoding wiki
|
|
27
|
+
|
|
28
|
+
## 9.4.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- [`99ad5d22649`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99ad5d22649) - Scope control characters inside of invalid links
|
|
33
|
+
|
|
34
|
+
## 9.3.3
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- [`7cb32dce7eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7cb32dce7eb) - ADFS-700 trailing whitespaces don't open a new table cell
|
|
39
|
+
|
|
40
|
+
## 9.3.2
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- [`b7375e1a3fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7375e1a3fc) - ADFS-670 Performance improvement by replacing string buffer with array buffer
|
|
45
|
+
|
|
46
|
+
## 9.3.1
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- Updated dependencies
|
|
51
|
+
|
|
52
|
+
## 9.3.0
|
|
53
|
+
|
|
54
|
+
### Minor Changes
|
|
55
|
+
|
|
56
|
+
- [`2fd50f55028`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fd50f55028) - Updating documentation to inform users that soon picker popup will no longer be available and also getting rid of picker popup references in examples and all the associated dependencies
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies
|
|
61
|
+
|
|
62
|
+
## 9.2.4
|
|
63
|
+
|
|
64
|
+
### Patch Changes
|
|
65
|
+
|
|
66
|
+
- Updated dependencies
|
|
67
|
+
|
|
68
|
+
## 9.2.3
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- [`2c8bafbcca0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c8bafbcca0) - ADFS-453 wiki transformer - Nested lists have size limit
|
|
73
|
+
|
|
74
|
+
## 9.2.2
|
|
75
|
+
|
|
76
|
+
### Patch Changes
|
|
77
|
+
|
|
78
|
+
- [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) - Renamed @atlaskit/editor-test-helpers/schema-builder to @atlaskit/editor-test-helpers/doc-builder
|
|
79
|
+
- Updated dependencies
|
|
80
|
+
|
|
81
|
+
## 9.2.1
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- Updated dependencies
|
|
86
|
+
|
|
87
|
+
## 9.2.0
|
|
88
|
+
|
|
89
|
+
### Minor Changes
|
|
90
|
+
|
|
91
|
+
- [`e00e0159214`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e00e0159214) - ADFS-456: Add support for image links in wikimarkup converter
|
|
92
|
+
|
|
93
|
+
## 9.1.0
|
|
94
|
+
|
|
95
|
+
### Minor Changes
|
|
96
|
+
|
|
97
|
+
- [`a882576542d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a882576542d) - Adjust status node colors - ADFS-40
|
|
98
|
+
|
|
99
|
+
## 9.0.1
|
|
100
|
+
|
|
101
|
+
### Patch Changes
|
|
102
|
+
|
|
103
|
+
- Updated dependencies
|
|
104
|
+
|
|
105
|
+
## 9.0.0
|
|
106
|
+
|
|
107
|
+
### Major Changes
|
|
108
|
+
|
|
109
|
+
- [`9242f60d20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9242f60d20) - Support anchor link starting with #
|
|
110
|
+
|
|
111
|
+
### Patch Changes
|
|
112
|
+
|
|
113
|
+
- Updated dependencies
|
|
114
|
+
|
|
115
|
+
## 8.4.0
|
|
116
|
+
|
|
117
|
+
### Minor Changes
|
|
118
|
+
|
|
119
|
+
- [`21de2f736a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21de2f736a) - fix: normalizeHexColor behaves normally when passed 'default'
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- Updated dependencies
|
|
124
|
+
|
|
125
|
+
## 8.3.5
|
|
126
|
+
|
|
127
|
+
### Patch Changes
|
|
128
|
+
|
|
129
|
+
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
130
|
+
|
|
131
|
+
## 8.3.4
|
|
132
|
+
|
|
133
|
+
### Patch Changes
|
|
134
|
+
|
|
135
|
+
- [`0175a00afc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0175a00afc) - [ED-10670] Update prosemirror-model type to use posAtIndex methods
|
|
136
|
+
- Updated dependencies
|
|
137
|
+
|
|
138
|
+
## 8.3.3
|
|
139
|
+
|
|
140
|
+
### Patch Changes
|
|
141
|
+
|
|
142
|
+
- [`703752d487`](https://bitbucket.org/atlassian/atlassian-frontend/commits/703752d487) - ED-10647 Remove caret from prosemirror-model, prosemirror-keymap, prosemirror-state, prosemirror-transform to lock them down to an explicit version
|
|
143
|
+
- Updated dependencies
|
|
144
|
+
|
|
145
|
+
## 8.3.2
|
|
146
|
+
|
|
147
|
+
### Patch Changes
|
|
148
|
+
|
|
149
|
+
- [`cc8bfdf7a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc8bfdf7a7) - ADFS-255 bugfix: wiki transformer correctly passes through context object
|
|
150
|
+
|
|
151
|
+
## 8.3.1
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
156
|
+
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
157
|
+
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
158
|
+
|
|
159
|
+
## 8.3.0
|
|
160
|
+
|
|
161
|
+
### Minor Changes
|
|
162
|
+
|
|
163
|
+
- [`9a39500244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a39500244) - Bump ProseMirror packages
|
|
164
|
+
|
|
165
|
+
Read more: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1671956531/2020-08
|
|
166
|
+
|
|
167
|
+
### Patch Changes
|
|
168
|
+
|
|
169
|
+
- Updated dependencies
|
|
170
|
+
|
|
171
|
+
## 8.2.0
|
|
172
|
+
|
|
173
|
+
### Minor Changes
|
|
174
|
+
|
|
175
|
+
- [`183473232a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/183473232a) - CS-3136 bugfix: media single after media group no longer disappears
|
|
176
|
+
|
|
177
|
+
## 8.1.0
|
|
178
|
+
|
|
179
|
+
### Minor Changes
|
|
180
|
+
|
|
181
|
+
- [`e6001d9b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6001d9b35) - CS-3139 Rewrote query string parser to not escape sensitive characters (querystring parser was used previously)
|
|
182
|
+
|
|
183
|
+
## 8.0.0
|
|
184
|
+
|
|
185
|
+
### Major Changes
|
|
186
|
+
|
|
187
|
+
- [`b809a4501a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b809a4501a) - CS-3128 context object for wiki media files is extended with `embed` property to properly round trip non-embeddable media
|
|
188
|
+
|
|
189
|
+
## 7.2.0
|
|
190
|
+
|
|
191
|
+
### Minor Changes
|
|
192
|
+
|
|
193
|
+
- [`cd32d3a1f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd32d3a1f4) - CS-3048 Embed cards now round trip in wiki<->adf conversions
|
|
194
|
+
|
|
195
|
+
## 7.1.1
|
|
196
|
+
|
|
197
|
+
### Patch Changes
|
|
198
|
+
|
|
199
|
+
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
200
|
+
|
|
201
|
+
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
202
|
+
to prevent duplicates of tslib being bundled.
|
|
203
|
+
|
|
204
|
+
## 7.1.0
|
|
205
|
+
|
|
206
|
+
### Minor Changes
|
|
207
|
+
|
|
208
|
+
- [`5b4f43d395`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b4f43d395) - CS-2987 basic emojis now behave the same way as in wiki renderer
|
|
209
|
+
|
|
210
|
+
## 7.0.0
|
|
211
|
+
|
|
212
|
+
### Major Changes
|
|
213
|
+
|
|
214
|
+
- [`35ca66b0ac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35ca66b0ac) - CS-2956 Limit lists to max nesting level
|
|
215
|
+
|
|
216
|
+
## 6.0.0
|
|
217
|
+
|
|
218
|
+
### Major Changes
|
|
219
|
+
|
|
220
|
+
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
221
|
+
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
222
|
+
|
|
223
|
+
### Patch Changes
|
|
224
|
+
|
|
225
|
+
- Updated dependencies
|
|
226
|
+
|
|
227
|
+
## 5.7.1
|
|
228
|
+
|
|
229
|
+
### Patch Changes
|
|
230
|
+
|
|
231
|
+
- Updated dependencies
|
|
232
|
+
|
|
233
|
+
## 5.7.0
|
|
234
|
+
|
|
235
|
+
### Minor Changes
|
|
236
|
+
|
|
237
|
+
- [`4feba15469`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4feba15469) - CS-2801 querystring replaced with querystring-es3 for browser compatibility
|
|
238
|
+
|
|
239
|
+
## 5.6.0
|
|
240
|
+
|
|
241
|
+
### Minor Changes
|
|
242
|
+
|
|
243
|
+
- [`41efaca0e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41efaca0e1) - Allow setting of individual cellstyles in wikimarkup
|
|
244
|
+
|
|
245
|
+
## 5.5.0
|
|
246
|
+
|
|
247
|
+
### Minor Changes
|
|
248
|
+
|
|
249
|
+
- [`6aa26e54a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6aa26e54a5) - CS-2800 mediaGroup and mediaSingle next to each other now works
|
|
250
|
+
- [`a050c2ff0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a050c2ff0c) - CS-2200 wiki transformer doesn't break table with empty new line
|
|
251
|
+
|
|
252
|
+
## 5.4.1
|
|
253
|
+
|
|
254
|
+
### Patch Changes
|
|
255
|
+
|
|
256
|
+
- Updated dependencies
|
|
257
|
+
|
|
258
|
+
## 5.4.0
|
|
259
|
+
|
|
260
|
+
### Minor Changes
|
|
261
|
+
|
|
262
|
+
- [`d0051d49a6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0051d49a6) - Conversion mapping has been made case insensitive
|
|
263
|
+
|
|
264
|
+
### Patch Changes
|
|
265
|
+
|
|
266
|
+
- Updated dependencies
|
|
267
|
+
|
|
268
|
+
## 5.3.2
|
|
269
|
+
|
|
270
|
+
### Patch Changes
|
|
271
|
+
|
|
272
|
+
- Updated dependencies [7e4d4a7ed4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e4d4a7ed4):
|
|
273
|
+
- Updated dependencies [999fbf849e](https://bitbucket.org/atlassian/atlassian-frontend/commits/999fbf849e):
|
|
274
|
+
- Updated dependencies [b202858f6c](https://bitbucket.org/atlassian/atlassian-frontend/commits/b202858f6c):
|
|
275
|
+
- Updated dependencies [9cee2b03e8](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cee2b03e8):
|
|
276
|
+
- Updated dependencies [26de083801](https://bitbucket.org/atlassian/atlassian-frontend/commits/26de083801):
|
|
277
|
+
- Updated dependencies [d3cc97a424](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3cc97a424):
|
|
278
|
+
- Updated dependencies [00f64f4eb8](https://bitbucket.org/atlassian/atlassian-frontend/commits/00f64f4eb8):
|
|
279
|
+
- Updated dependencies [4f70380793](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f70380793):
|
|
280
|
+
- Updated dependencies [92d04b5c28](https://bitbucket.org/atlassian/atlassian-frontend/commits/92d04b5c28):
|
|
281
|
+
- Updated dependencies [5b301bcdf6](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b301bcdf6):
|
|
282
|
+
- Updated dependencies [729a4e4960](https://bitbucket.org/atlassian/atlassian-frontend/commits/729a4e4960):
|
|
283
|
+
- Updated dependencies [22704db5a3](https://bitbucket.org/atlassian/atlassian-frontend/commits/22704db5a3):
|
|
284
|
+
- Updated dependencies [5f075c4fd2](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f075c4fd2):
|
|
285
|
+
- Updated dependencies [c8d0ce5b94](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8d0ce5b94):
|
|
286
|
+
- Updated dependencies [384791fb2b](https://bitbucket.org/atlassian/atlassian-frontend/commits/384791fb2b):
|
|
287
|
+
- Updated dependencies [c6b145978b](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6b145978b):
|
|
288
|
+
- Updated dependencies [736507f8e0](https://bitbucket.org/atlassian/atlassian-frontend/commits/736507f8e0):
|
|
289
|
+
- Updated dependencies [cf41823165](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf41823165):
|
|
290
|
+
- Updated dependencies [9e3646b59e](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e3646b59e):
|
|
291
|
+
- Updated dependencies [aec7fbadcc](https://bitbucket.org/atlassian/atlassian-frontend/commits/aec7fbadcc):
|
|
292
|
+
- Updated dependencies [e477132440](https://bitbucket.org/atlassian/atlassian-frontend/commits/e477132440):
|
|
293
|
+
- @atlaskit/editor-core@122.0.0
|
|
294
|
+
- @atlaskit/editor-common@45.1.0
|
|
295
|
+
- @atlaskit/adf-schema@9.0.1
|
|
296
|
+
- @atlaskit/renderer@58.0.0
|
|
297
|
+
- @atlaskit/editor-json-transformer@7.0.11
|
|
298
|
+
- @atlaskit/editor-test-helpers@11.1.1
|
|
299
|
+
|
|
300
|
+
## 5.3.1
|
|
301
|
+
|
|
302
|
+
### Patch Changes
|
|
303
|
+
|
|
304
|
+
- [patch][a681101c2b](https://bitbucket.org/atlassian/atlassian-frontend/commits/a681101c2b):
|
|
305
|
+
|
|
306
|
+
CS-2084 Media width clamps between 0-100%- Updated dependencies [2a87a3bbc5](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a87a3bbc5):
|
|
307
|
+
|
|
308
|
+
- Updated dependencies [04e54bf405](https://bitbucket.org/atlassian/atlassian-frontend/commits/04e54bf405):
|
|
309
|
+
- Updated dependencies [cf7a2d7506](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf7a2d7506):
|
|
310
|
+
- Updated dependencies [759f0a5ca7](https://bitbucket.org/atlassian/atlassian-frontend/commits/759f0a5ca7):
|
|
311
|
+
- Updated dependencies [9f43b9f0ca](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f43b9f0ca):
|
|
312
|
+
- Updated dependencies [c74cc954d8](https://bitbucket.org/atlassian/atlassian-frontend/commits/c74cc954d8):
|
|
313
|
+
- Updated dependencies [b4326a7eba](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4326a7eba):
|
|
314
|
+
- Updated dependencies [e4076915c8](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4076915c8):
|
|
315
|
+
- Updated dependencies [168b5f90e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/168b5f90e5):
|
|
316
|
+
- Updated dependencies [bdb4da1fc0](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdb4da1fc0):
|
|
317
|
+
- Updated dependencies [c51f0b4c70](https://bitbucket.org/atlassian/atlassian-frontend/commits/c51f0b4c70):
|
|
318
|
+
- Updated dependencies [16c193eb3e](https://bitbucket.org/atlassian/atlassian-frontend/commits/16c193eb3e):
|
|
319
|
+
- Updated dependencies [7ec160c0e2](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ec160c0e2):
|
|
320
|
+
- Updated dependencies [5d430f7d37](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d430f7d37):
|
|
321
|
+
- Updated dependencies [7e26fba915](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e26fba915):
|
|
322
|
+
- Updated dependencies [5167f09a83](https://bitbucket.org/atlassian/atlassian-frontend/commits/5167f09a83):
|
|
323
|
+
- Updated dependencies [0c270847cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c270847cb):
|
|
324
|
+
- Updated dependencies [91ff8d36f0](https://bitbucket.org/atlassian/atlassian-frontend/commits/91ff8d36f0):
|
|
325
|
+
- Updated dependencies [05539b052e](https://bitbucket.org/atlassian/atlassian-frontend/commits/05539b052e):
|
|
326
|
+
- Updated dependencies [a1ee397cbc](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1ee397cbc):
|
|
327
|
+
- Updated dependencies [dc84dfa3bc](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc84dfa3bc):
|
|
328
|
+
- Updated dependencies [318a1a0f2f](https://bitbucket.org/atlassian/atlassian-frontend/commits/318a1a0f2f):
|
|
329
|
+
- Updated dependencies [550c4b5018](https://bitbucket.org/atlassian/atlassian-frontend/commits/550c4b5018):
|
|
330
|
+
- Updated dependencies [03a83cb954](https://bitbucket.org/atlassian/atlassian-frontend/commits/03a83cb954):
|
|
331
|
+
- Updated dependencies [e21800fd1c](https://bitbucket.org/atlassian/atlassian-frontend/commits/e21800fd1c):
|
|
332
|
+
- Updated dependencies [258a36b51f](https://bitbucket.org/atlassian/atlassian-frontend/commits/258a36b51f):
|
|
333
|
+
- Updated dependencies [109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
|
|
334
|
+
- Updated dependencies [205b05851a](https://bitbucket.org/atlassian/atlassian-frontend/commits/205b05851a):
|
|
335
|
+
- Updated dependencies [1a48183584](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a48183584):
|
|
336
|
+
- Updated dependencies [b9903e773a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9903e773a):
|
|
337
|
+
- Updated dependencies [823d80f31c](https://bitbucket.org/atlassian/atlassian-frontend/commits/823d80f31c):
|
|
338
|
+
- Updated dependencies [41917f4c16](https://bitbucket.org/atlassian/atlassian-frontend/commits/41917f4c16):
|
|
339
|
+
- Updated dependencies [de6548dae5](https://bitbucket.org/atlassian/atlassian-frontend/commits/de6548dae5):
|
|
340
|
+
- Updated dependencies [9dd4b9088b](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dd4b9088b):
|
|
341
|
+
- Updated dependencies [0b22d3b9ea](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b22d3b9ea):
|
|
342
|
+
- Updated dependencies [91304da441](https://bitbucket.org/atlassian/atlassian-frontend/commits/91304da441):
|
|
343
|
+
- Updated dependencies [b4ef7fe214](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4ef7fe214):
|
|
344
|
+
- Updated dependencies [3644fc1afe](https://bitbucket.org/atlassian/atlassian-frontend/commits/3644fc1afe):
|
|
345
|
+
- Updated dependencies [971df84f45](https://bitbucket.org/atlassian/atlassian-frontend/commits/971df84f45):
|
|
346
|
+
- Updated dependencies [17a46dd016](https://bitbucket.org/atlassian/atlassian-frontend/commits/17a46dd016):
|
|
347
|
+
- Updated dependencies [0ab75c545b](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ab75c545b):
|
|
348
|
+
- Updated dependencies [62f1f218d9](https://bitbucket.org/atlassian/atlassian-frontend/commits/62f1f218d9):
|
|
349
|
+
- Updated dependencies [67bc25bc3f](https://bitbucket.org/atlassian/atlassian-frontend/commits/67bc25bc3f):
|
|
350
|
+
- Updated dependencies [6eb8c0799f](https://bitbucket.org/atlassian/atlassian-frontend/commits/6eb8c0799f):
|
|
351
|
+
- Updated dependencies [5f75dd27c9](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f75dd27c9):
|
|
352
|
+
- Updated dependencies [f3587bae11](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3587bae11):
|
|
353
|
+
- Updated dependencies [287be84065](https://bitbucket.org/atlassian/atlassian-frontend/commits/287be84065):
|
|
354
|
+
- Updated dependencies [fb8725beac](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb8725beac):
|
|
355
|
+
- @atlaskit/editor-core@121.0.0
|
|
356
|
+
- @atlaskit/adf-schema@9.0.0
|
|
357
|
+
- @atlaskit/editor-common@45.0.0
|
|
358
|
+
- @atlaskit/renderer@57.0.0
|
|
359
|
+
- @atlaskit/docs@8.5.1
|
|
360
|
+
- @atlaskit/editor-test-helpers@11.1.0
|
|
361
|
+
- @atlaskit/theme@9.5.3
|
|
362
|
+
- @atlaskit/editor-json-transformer@7.0.10
|
|
363
|
+
|
|
364
|
+
## 5.3.0
|
|
365
|
+
|
|
366
|
+
### Minor Changes
|
|
367
|
+
|
|
368
|
+
- [minor][b84165f140](https://bitbucket.org/atlassian/atlassian-frontend/commits/b84165f140):
|
|
369
|
+
|
|
370
|
+
Degrade status node from adf to wiki- [minor][2441d47f61](https://bitbucket.org/atlassian/atlassian-frontend/commits/2441d47f61):
|
|
371
|
+
|
|
372
|
+
CS-1878 Wiki media with in percent is now accepted- [minor][eb17c8c9c8](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb17c8c9c8):
|
|
373
|
+
|
|
374
|
+
CS-1881 adf-wiki degrade custom emojis- [minor][06f238c8ff](https://bitbucket.org/atlassian/atlassian-frontend/commits/06f238c8ff):
|
|
375
|
+
|
|
376
|
+
CS-1879 Wiki converter preserves alt text- [minor][61521009b2](https://bitbucket.org/atlassian/atlassian-frontend/commits/61521009b2):
|
|
377
|
+
|
|
378
|
+
CS-1876 adf-wiki conversion drops adf-only table formatting- [minor][f4e4cfe635](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4e4cfe635):
|
|
379
|
+
|
|
380
|
+
CS-1800-degrade-decision-task-node- [minor][ef15388b82](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef15388b82):
|
|
381
|
+
|
|
382
|
+
CS-1882-degrade-date-node- [minor][e9a39ce39d](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9a39ce39d):
|
|
383
|
+
|
|
384
|
+
CS-1883 Wiki convertor - degrade native expand
|
|
385
|
+
|
|
386
|
+
### Patch Changes
|
|
387
|
+
|
|
388
|
+
- Updated dependencies [9fd8ba7707](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fd8ba7707):
|
|
389
|
+
- Updated dependencies [bc29fbc030](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc29fbc030):
|
|
390
|
+
- Updated dependencies [7d80e44c09](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d80e44c09):
|
|
391
|
+
- Updated dependencies [4c691c3b5f](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c691c3b5f):
|
|
392
|
+
- Updated dependencies [d63513575b](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63513575b):
|
|
393
|
+
- Updated dependencies [1386afaecc](https://bitbucket.org/atlassian/atlassian-frontend/commits/1386afaecc):
|
|
394
|
+
- Updated dependencies [48f0ecf23e](https://bitbucket.org/atlassian/atlassian-frontend/commits/48f0ecf23e):
|
|
395
|
+
- Updated dependencies [130b83ccba](https://bitbucket.org/atlassian/atlassian-frontend/commits/130b83ccba):
|
|
396
|
+
- Updated dependencies [5180a51c0d](https://bitbucket.org/atlassian/atlassian-frontend/commits/5180a51c0d):
|
|
397
|
+
- Updated dependencies [584279e2ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/584279e2ae):
|
|
398
|
+
- Updated dependencies [067febb0a7](https://bitbucket.org/atlassian/atlassian-frontend/commits/067febb0a7):
|
|
399
|
+
- Updated dependencies [66cf61863f](https://bitbucket.org/atlassian/atlassian-frontend/commits/66cf61863f):
|
|
400
|
+
- Updated dependencies [f83b67a761](https://bitbucket.org/atlassian/atlassian-frontend/commits/f83b67a761):
|
|
401
|
+
- Updated dependencies [22d9c96ed2](https://bitbucket.org/atlassian/atlassian-frontend/commits/22d9c96ed2):
|
|
402
|
+
- Updated dependencies [a9e9604c8e](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9e9604c8e):
|
|
403
|
+
- Updated dependencies [8126e7648c](https://bitbucket.org/atlassian/atlassian-frontend/commits/8126e7648c):
|
|
404
|
+
- Updated dependencies [b41beace3f](https://bitbucket.org/atlassian/atlassian-frontend/commits/b41beace3f):
|
|
405
|
+
- Updated dependencies [02425bf2d7](https://bitbucket.org/atlassian/atlassian-frontend/commits/02425bf2d7):
|
|
406
|
+
- Updated dependencies [6b4fe5d0e0](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b4fe5d0e0):
|
|
407
|
+
- Updated dependencies [953cfadbe3](https://bitbucket.org/atlassian/atlassian-frontend/commits/953cfadbe3):
|
|
408
|
+
- Updated dependencies [29b0315dcb](https://bitbucket.org/atlassian/atlassian-frontend/commits/29b0315dcb):
|
|
409
|
+
- Updated dependencies [53ebcdb974](https://bitbucket.org/atlassian/atlassian-frontend/commits/53ebcdb974):
|
|
410
|
+
- Updated dependencies [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
|
|
411
|
+
- Updated dependencies [aa4dc7f5d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa4dc7f5d6):
|
|
412
|
+
- Updated dependencies [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
|
|
413
|
+
- Updated dependencies [13a0e50f38](https://bitbucket.org/atlassian/atlassian-frontend/commits/13a0e50f38):
|
|
414
|
+
- Updated dependencies [0a0a54cb47](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a0a54cb47):
|
|
415
|
+
- Updated dependencies [6dcad31e41](https://bitbucket.org/atlassian/atlassian-frontend/commits/6dcad31e41):
|
|
416
|
+
- Updated dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
|
|
417
|
+
- Updated dependencies [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
|
|
418
|
+
- Updated dependencies [6242ec17a2](https://bitbucket.org/atlassian/atlassian-frontend/commits/6242ec17a2):
|
|
419
|
+
- Updated dependencies [6b65ae4f04](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b65ae4f04):
|
|
420
|
+
- Updated dependencies [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
|
|
421
|
+
- Updated dependencies [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
|
|
422
|
+
- Updated dependencies [715572f9e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/715572f9e5):
|
|
423
|
+
- Updated dependencies [cc54ca2490](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc54ca2490):
|
|
424
|
+
- @atlaskit/editor-core@120.0.0
|
|
425
|
+
- @atlaskit/adf-schema@8.0.0
|
|
426
|
+
- @atlaskit/editor-common@44.1.0
|
|
427
|
+
- @atlaskit/renderer@56.0.0
|
|
428
|
+
- @atlaskit/mention@18.18.0
|
|
429
|
+
- @atlaskit/editor-test-helpers@11.0.0
|
|
430
|
+
- @atlaskit/docs@8.5.0
|
|
431
|
+
- @atlaskit/editor-json-transformer@7.0.9
|
|
432
|
+
|
|
433
|
+
## 5.2.3
|
|
434
|
+
|
|
435
|
+
### Patch Changes
|
|
436
|
+
|
|
437
|
+
- [patch][43d0b6fede](https://bitbucket.org/atlassian/atlassian-frontend/commits/43d0b6fede):
|
|
438
|
+
|
|
439
|
+
CS-1911-fix-issue-in-exclaimation-mark- Updated dependencies [bc380c30ce](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc380c30ce):
|
|
440
|
+
|
|
441
|
+
- Updated dependencies [cc0d9f6ede](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc0d9f6ede):
|
|
442
|
+
- Updated dependencies [6384746272](https://bitbucket.org/atlassian/atlassian-frontend/commits/6384746272):
|
|
443
|
+
- Updated dependencies [7602615cd4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7602615cd4):
|
|
444
|
+
- Updated dependencies [956a70b918](https://bitbucket.org/atlassian/atlassian-frontend/commits/956a70b918):
|
|
445
|
+
- Updated dependencies [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
|
|
446
|
+
- Updated dependencies [3494940acd](https://bitbucket.org/atlassian/atlassian-frontend/commits/3494940acd):
|
|
447
|
+
- Updated dependencies [5bb23adac3](https://bitbucket.org/atlassian/atlassian-frontend/commits/5bb23adac3):
|
|
448
|
+
- Updated dependencies [ebee5c7429](https://bitbucket.org/atlassian/atlassian-frontend/commits/ebee5c7429):
|
|
449
|
+
- Updated dependencies [680a61dc5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/680a61dc5a):
|
|
450
|
+
- Updated dependencies [57096fc043](https://bitbucket.org/atlassian/atlassian-frontend/commits/57096fc043):
|
|
451
|
+
- Updated dependencies [b17120e768](https://bitbucket.org/atlassian/atlassian-frontend/commits/b17120e768):
|
|
452
|
+
- Updated dependencies [92e0b393f5](https://bitbucket.org/atlassian/atlassian-frontend/commits/92e0b393f5):
|
|
453
|
+
- Updated dependencies [ac8639dfd8](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac8639dfd8):
|
|
454
|
+
- Updated dependencies [2f0df19890](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f0df19890):
|
|
455
|
+
- Updated dependencies [2475d1c9d8](https://bitbucket.org/atlassian/atlassian-frontend/commits/2475d1c9d8):
|
|
456
|
+
- Updated dependencies [0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
|
|
457
|
+
- Updated dependencies [113d075684](https://bitbucket.org/atlassian/atlassian-frontend/commits/113d075684):
|
|
458
|
+
- Updated dependencies [af8a3763dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/af8a3763dd):
|
|
459
|
+
- Updated dependencies [21a1faf014](https://bitbucket.org/atlassian/atlassian-frontend/commits/21a1faf014):
|
|
460
|
+
- Updated dependencies [c171660346](https://bitbucket.org/atlassian/atlassian-frontend/commits/c171660346):
|
|
461
|
+
- Updated dependencies [94116c6018](https://bitbucket.org/atlassian/atlassian-frontend/commits/94116c6018):
|
|
462
|
+
- Updated dependencies [9fadef064b](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fadef064b):
|
|
463
|
+
- Updated dependencies [27fde59914](https://bitbucket.org/atlassian/atlassian-frontend/commits/27fde59914):
|
|
464
|
+
- Updated dependencies [f8ffc8320f](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8ffc8320f):
|
|
465
|
+
- Updated dependencies [b18fc8a1b6](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18fc8a1b6):
|
|
466
|
+
- Updated dependencies [469e9a2302](https://bitbucket.org/atlassian/atlassian-frontend/commits/469e9a2302):
|
|
467
|
+
- Updated dependencies [9957801602](https://bitbucket.org/atlassian/atlassian-frontend/commits/9957801602):
|
|
468
|
+
- Updated dependencies [a41d2345eb](https://bitbucket.org/atlassian/atlassian-frontend/commits/a41d2345eb):
|
|
469
|
+
- Updated dependencies [4ef23b6a15](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ef23b6a15):
|
|
470
|
+
- Updated dependencies [7baff84f38](https://bitbucket.org/atlassian/atlassian-frontend/commits/7baff84f38):
|
|
471
|
+
- Updated dependencies [8cc5cc0603](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc5cc0603):
|
|
472
|
+
- Updated dependencies [5d8a0d4f5f](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d8a0d4f5f):
|
|
473
|
+
- Updated dependencies [faa96cee2a](https://bitbucket.org/atlassian/atlassian-frontend/commits/faa96cee2a):
|
|
474
|
+
- Updated dependencies [535286e8c4](https://bitbucket.org/atlassian/atlassian-frontend/commits/535286e8c4):
|
|
475
|
+
- Updated dependencies [c7b205c83f](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7b205c83f):
|
|
476
|
+
- Updated dependencies [703b72cdba](https://bitbucket.org/atlassian/atlassian-frontend/commits/703b72cdba):
|
|
477
|
+
- Updated dependencies [025842de1a](https://bitbucket.org/atlassian/atlassian-frontend/commits/025842de1a):
|
|
478
|
+
- Updated dependencies [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
|
|
479
|
+
- Updated dependencies [cd662c7e4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd662c7e4c):
|
|
480
|
+
- Updated dependencies [de64f9373c](https://bitbucket.org/atlassian/atlassian-frontend/commits/de64f9373c):
|
|
481
|
+
- Updated dependencies [93ac94a762](https://bitbucket.org/atlassian/atlassian-frontend/commits/93ac94a762):
|
|
482
|
+
- Updated dependencies [172a864d19](https://bitbucket.org/atlassian/atlassian-frontend/commits/172a864d19):
|
|
483
|
+
- Updated dependencies [a5d0019a5e](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5d0019a5e):
|
|
484
|
+
- Updated dependencies [6a417f2e52](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a417f2e52):
|
|
485
|
+
- Updated dependencies [e981669ba5](https://bitbucket.org/atlassian/atlassian-frontend/commits/e981669ba5):
|
|
486
|
+
- Updated dependencies [5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
|
|
487
|
+
- Updated dependencies [fdf6c939e8](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdf6c939e8):
|
|
488
|
+
- Updated dependencies [395739b5ef](https://bitbucket.org/atlassian/atlassian-frontend/commits/395739b5ef):
|
|
489
|
+
- @atlaskit/editor-common@44.0.2
|
|
490
|
+
- @atlaskit/editor-core@119.0.0
|
|
491
|
+
- @atlaskit/adf-schema@7.0.0
|
|
492
|
+
- @atlaskit/docs@8.4.0
|
|
493
|
+
- @atlaskit/renderer@55.0.0
|
|
494
|
+
- @atlaskit/mention@18.17.0
|
|
495
|
+
- @atlaskit/util-data-test@13.1.2
|
|
496
|
+
- @atlaskit/profilecard@12.4.0
|
|
497
|
+
- @atlaskit/editor-test-helpers@10.6.1
|
|
498
|
+
- @atlaskit/editor-json-transformer@7.0.8
|
|
499
|
+
|
|
500
|
+
## 5.2.2
|
|
501
|
+
|
|
502
|
+
### Patch Changes
|
|
503
|
+
|
|
504
|
+
- [patch][8183f7c8da](https://bitbucket.org/atlassian/atlassian-frontend/commits/8183f7c8da):
|
|
505
|
+
|
|
506
|
+
Remove Karma tests - based on AFP-960- Updated dependencies [6403a54812](https://bitbucket.org/atlassian/atlassian-frontend/commits/6403a54812):
|
|
507
|
+
|
|
508
|
+
- Updated dependencies [9e90cb4336](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e90cb4336):
|
|
509
|
+
- Updated dependencies [e8a31c2714](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8a31c2714):
|
|
510
|
+
- Updated dependencies [f46330c0ab](https://bitbucket.org/atlassian/atlassian-frontend/commits/f46330c0ab):
|
|
511
|
+
- Updated dependencies [d6f207a598](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f207a598):
|
|
512
|
+
- Updated dependencies [40359da294](https://bitbucket.org/atlassian/atlassian-frontend/commits/40359da294):
|
|
513
|
+
- Updated dependencies [151240fce9](https://bitbucket.org/atlassian/atlassian-frontend/commits/151240fce9):
|
|
514
|
+
- Updated dependencies [8d09cd0408](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d09cd0408):
|
|
515
|
+
- Updated dependencies [088f4f7d1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/088f4f7d1e):
|
|
516
|
+
- Updated dependencies [9d6b02c04f](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d6b02c04f):
|
|
517
|
+
- Updated dependencies [8183f7c8da](https://bitbucket.org/atlassian/atlassian-frontend/commits/8183f7c8da):
|
|
518
|
+
- Updated dependencies [7aad7888b4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7aad7888b4):
|
|
519
|
+
- Updated dependencies [a1bc1e6637](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1bc1e6637):
|
|
520
|
+
- Updated dependencies [a5c3717d0b](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c3717d0b):
|
|
521
|
+
- Updated dependencies [b924951169](https://bitbucket.org/atlassian/atlassian-frontend/commits/b924951169):
|
|
522
|
+
- Updated dependencies [37a79cb1bc](https://bitbucket.org/atlassian/atlassian-frontend/commits/37a79cb1bc):
|
|
523
|
+
- Updated dependencies [47d7b34f75](https://bitbucket.org/atlassian/atlassian-frontend/commits/47d7b34f75):
|
|
524
|
+
- Updated dependencies [79cabaee0c](https://bitbucket.org/atlassian/atlassian-frontend/commits/79cabaee0c):
|
|
525
|
+
- Updated dependencies [5a0167db78](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a0167db78):
|
|
526
|
+
- Updated dependencies [ded54f7b9f](https://bitbucket.org/atlassian/atlassian-frontend/commits/ded54f7b9f):
|
|
527
|
+
- Updated dependencies [b3b2f413c1](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3b2f413c1):
|
|
528
|
+
- Updated dependencies [8f41931365](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f41931365):
|
|
529
|
+
- Updated dependencies [a4ddcbf7e2](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4ddcbf7e2):
|
|
530
|
+
- Updated dependencies [d59113061a](https://bitbucket.org/atlassian/atlassian-frontend/commits/d59113061a):
|
|
531
|
+
- Updated dependencies [cedfb7766c](https://bitbucket.org/atlassian/atlassian-frontend/commits/cedfb7766c):
|
|
532
|
+
- Updated dependencies [2361b8d044](https://bitbucket.org/atlassian/atlassian-frontend/commits/2361b8d044):
|
|
533
|
+
- Updated dependencies [1028ab4db3](https://bitbucket.org/atlassian/atlassian-frontend/commits/1028ab4db3):
|
|
534
|
+
- Updated dependencies [57ea6ea77a](https://bitbucket.org/atlassian/atlassian-frontend/commits/57ea6ea77a):
|
|
535
|
+
- Updated dependencies [ff6e928368](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff6e928368):
|
|
536
|
+
- Updated dependencies [4b3ced1d9f](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b3ced1d9f):
|
|
537
|
+
- Updated dependencies [fdc0861682](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdc0861682):
|
|
538
|
+
- Updated dependencies [00ddcd52df](https://bitbucket.org/atlassian/atlassian-frontend/commits/00ddcd52df):
|
|
539
|
+
- Updated dependencies [e3a8052151](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3a8052151):
|
|
540
|
+
- Updated dependencies [198639cd06](https://bitbucket.org/atlassian/atlassian-frontend/commits/198639cd06):
|
|
541
|
+
- Updated dependencies [13f0bbc125](https://bitbucket.org/atlassian/atlassian-frontend/commits/13f0bbc125):
|
|
542
|
+
- Updated dependencies [d7749cb6ab](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7749cb6ab):
|
|
543
|
+
- Updated dependencies [c9842c9ada](https://bitbucket.org/atlassian/atlassian-frontend/commits/c9842c9ada):
|
|
544
|
+
- Updated dependencies [02b2a2079c](https://bitbucket.org/atlassian/atlassian-frontend/commits/02b2a2079c):
|
|
545
|
+
- @atlaskit/editor-core@118.0.0
|
|
546
|
+
- @atlaskit/editor-common@44.0.0
|
|
547
|
+
- @atlaskit/adf-schema@6.2.0
|
|
548
|
+
- @atlaskit/renderer@54.0.0
|
|
549
|
+
- @atlaskit/editor-test-helpers@10.6.0
|
|
550
|
+
- @atlaskit/editor-json-transformer@7.0.7
|
|
551
|
+
|
|
552
|
+
## 5.2.1
|
|
553
|
+
|
|
554
|
+
### Patch Changes
|
|
555
|
+
|
|
556
|
+
- [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
557
|
+
|
|
558
|
+
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
559
|
+
|
|
560
|
+
- @atlaskit/docs@8.3.2
|
|
561
|
+
- @atlaskit/theme@9.5.1
|
|
562
|
+
- @atlaskit/adf-schema@6.1.1
|
|
563
|
+
- @atlaskit/editor-common@43.4.1
|
|
564
|
+
- @atlaskit/editor-core@117.0.2
|
|
565
|
+
- @atlaskit/editor-json-transformer@7.0.6
|
|
566
|
+
- @atlaskit/editor-test-helpers@10.5.1
|
|
567
|
+
- @atlaskit/renderer@53.2.7
|
|
568
|
+
- @atlaskit/mention@18.16.2
|
|
569
|
+
- @atlaskit/util-data-test@13.1.1
|
|
570
|
+
- @atlaskit/profilecard@12.3.7
|
|
571
|
+
|
|
572
|
+
## 5.2.0
|
|
573
|
+
|
|
574
|
+
### Minor Changes
|
|
575
|
+
|
|
576
|
+
- [minor][29b795981f](https://bitbucket.org/atlassian/atlassian-frontend/commits/29b795981f):
|
|
577
|
+
|
|
578
|
+
CS-1901 macros in monospace convert into valid ADF
|
|
579
|
+
|
|
580
|
+
### Patch Changes
|
|
581
|
+
|
|
582
|
+
- [patch][f0a2a22ddb](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0a2a22ddb):
|
|
583
|
+
|
|
584
|
+
CS-1896 - Empty mentions in wikimarkup should be converted to plaintext instead of empty adf mention nodes- Updated dependencies [06cd97123e](https://bitbucket.org/atlassian/atlassian-frontend/commits/06cd97123e):
|
|
585
|
+
|
|
586
|
+
- Updated dependencies [07b5311cb9](https://bitbucket.org/atlassian/atlassian-frontend/commits/07b5311cb9):
|
|
587
|
+
- Updated dependencies [a4ded5368c](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4ded5368c):
|
|
588
|
+
- Updated dependencies [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
|
|
589
|
+
- Updated dependencies [6f16f46632](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f16f46632):
|
|
590
|
+
- Updated dependencies [a1f50e6a54](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1f50e6a54):
|
|
591
|
+
- Updated dependencies [31558e1872](https://bitbucket.org/atlassian/atlassian-frontend/commits/31558e1872):
|
|
592
|
+
- Updated dependencies [6ca6aaa1d7](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ca6aaa1d7):
|
|
593
|
+
- Updated dependencies [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
|
|
594
|
+
- Updated dependencies [43e03f1c58](https://bitbucket.org/atlassian/atlassian-frontend/commits/43e03f1c58):
|
|
595
|
+
- Updated dependencies [63fe41d5c2](https://bitbucket.org/atlassian/atlassian-frontend/commits/63fe41d5c2):
|
|
596
|
+
- Updated dependencies [b01fc0ceef](https://bitbucket.org/atlassian/atlassian-frontend/commits/b01fc0ceef):
|
|
597
|
+
- Updated dependencies [d085ab4419](https://bitbucket.org/atlassian/atlassian-frontend/commits/d085ab4419):
|
|
598
|
+
- Updated dependencies [64752f2827](https://bitbucket.org/atlassian/atlassian-frontend/commits/64752f2827):
|
|
599
|
+
- Updated dependencies [f67dc5ae22](https://bitbucket.org/atlassian/atlassian-frontend/commits/f67dc5ae22):
|
|
600
|
+
- Updated dependencies [e40acffdfc](https://bitbucket.org/atlassian/atlassian-frontend/commits/e40acffdfc):
|
|
601
|
+
- Updated dependencies [0709d95a8a](https://bitbucket.org/atlassian/atlassian-frontend/commits/0709d95a8a):
|
|
602
|
+
- Updated dependencies [28dcebde63](https://bitbucket.org/atlassian/atlassian-frontend/commits/28dcebde63):
|
|
603
|
+
- Updated dependencies [710897f340](https://bitbucket.org/atlassian/atlassian-frontend/commits/710897f340):
|
|
604
|
+
- Updated dependencies [b8da779506](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8da779506):
|
|
605
|
+
- Updated dependencies [bbbe360b71](https://bitbucket.org/atlassian/atlassian-frontend/commits/bbbe360b71):
|
|
606
|
+
- Updated dependencies [3b37ec4c28](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b37ec4c28):
|
|
607
|
+
- Updated dependencies [655599414e](https://bitbucket.org/atlassian/atlassian-frontend/commits/655599414e):
|
|
608
|
+
- @atlaskit/editor-core@117.0.0
|
|
609
|
+
- @atlaskit/editor-test-helpers@10.5.0
|
|
610
|
+
- @atlaskit/editor-common@43.4.0
|
|
611
|
+
- @atlaskit/adf-schema@6.1.0
|
|
612
|
+
- @atlaskit/renderer@53.2.6
|
|
613
|
+
- @atlaskit/editor-json-transformer@7.0.5
|
|
614
|
+
- @atlaskit/docs@8.3.1
|
|
615
|
+
- @atlaskit/mention@18.16.1
|
|
616
|
+
- @atlaskit/profilecard@12.3.6
|
|
617
|
+
|
|
618
|
+
## 5.1.1
|
|
619
|
+
|
|
620
|
+
### Patch Changes
|
|
621
|
+
|
|
622
|
+
- Updated dependencies [06f4f74d88](https://bitbucket.org/atlassian/atlassian-frontend/commits/06f4f74d88):
|
|
623
|
+
- Updated dependencies [80c1eaa275](https://bitbucket.org/atlassian/atlassian-frontend/commits/80c1eaa275):
|
|
624
|
+
- Updated dependencies [2b4ebaf2ed](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b4ebaf2ed):
|
|
625
|
+
- Updated dependencies [c64c471564](https://bitbucket.org/atlassian/atlassian-frontend/commits/c64c471564):
|
|
626
|
+
- Updated dependencies [5b8daf1843](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b8daf1843):
|
|
627
|
+
- Updated dependencies [c55f8e0284](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55f8e0284):
|
|
628
|
+
- Updated dependencies [b4ad0a502a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4ad0a502a):
|
|
629
|
+
- Updated dependencies [7d2c702223](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2c702223):
|
|
630
|
+
- Updated dependencies [6421a97672](https://bitbucket.org/atlassian/atlassian-frontend/commits/6421a97672):
|
|
631
|
+
- Updated dependencies [0eb8c5ff5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/0eb8c5ff5a):
|
|
632
|
+
- Updated dependencies [3e87f5596a](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e87f5596a):
|
|
633
|
+
- Updated dependencies [3160e15523](https://bitbucket.org/atlassian/atlassian-frontend/commits/3160e15523):
|
|
634
|
+
- Updated dependencies [3f1d129a79](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f1d129a79):
|
|
635
|
+
- Updated dependencies [baa887053d](https://bitbucket.org/atlassian/atlassian-frontend/commits/baa887053d):
|
|
636
|
+
- Updated dependencies [2108ee74db](https://bitbucket.org/atlassian/atlassian-frontend/commits/2108ee74db):
|
|
637
|
+
- Updated dependencies [f3727d3830](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3727d3830):
|
|
638
|
+
- Updated dependencies [d2b8166208](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2b8166208):
|
|
639
|
+
- Updated dependencies [dc48763970](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc48763970):
|
|
640
|
+
- Updated dependencies [909676b9de](https://bitbucket.org/atlassian/atlassian-frontend/commits/909676b9de):
|
|
641
|
+
- Updated dependencies [312feb4a6a](https://bitbucket.org/atlassian/atlassian-frontend/commits/312feb4a6a):
|
|
642
|
+
- Updated dependencies [cf9858fa09](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf9858fa09):
|
|
643
|
+
- Updated dependencies [26dbe7be6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/26dbe7be6d):
|
|
644
|
+
- Updated dependencies [cfcd27b2e4](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfcd27b2e4):
|
|
645
|
+
- Updated dependencies [ec929ab10e](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec929ab10e):
|
|
646
|
+
- @atlaskit/editor-core@116.2.0
|
|
647
|
+
- @atlaskit/adf-schema@6.0.0
|
|
648
|
+
- @atlaskit/editor-common@43.3.1
|
|
649
|
+
- @atlaskit/renderer@53.2.5
|
|
650
|
+
- @atlaskit/docs@8.3.0
|
|
651
|
+
- @atlaskit/editor-test-helpers@10.4.3
|
|
652
|
+
- @atlaskit/editor-json-transformer@7.0.4
|
|
653
|
+
|
|
654
|
+
## 5.1.0
|
|
655
|
+
|
|
656
|
+
### Minor Changes
|
|
657
|
+
|
|
658
|
+
- [minor][3cfee30115](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cfee30115):
|
|
659
|
+
|
|
660
|
+
CS-1830 mentions are now prefixed with accountid:- [minor][dc94f578e9](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc94f578e9):
|
|
661
|
+
|
|
662
|
+
CS-1798 Table newlines now accept CRLF (Windows) format as well
|
|
663
|
+
|
|
664
|
+
### Patch Changes
|
|
665
|
+
|
|
666
|
+
- [patch][7527bd9054](https://bitbucket.org/atlassian/atlassian-frontend/commits/7527bd9054):
|
|
667
|
+
|
|
668
|
+
fixed a bug where formatted pipes would incorrectly be converted to tables when going from wiki to adf- Updated dependencies [761dcd6d19](https://bitbucket.org/atlassian/atlassian-frontend/commits/761dcd6d19):
|
|
669
|
+
|
|
670
|
+
- Updated dependencies [5816cb91e0](https://bitbucket.org/atlassian/atlassian-frontend/commits/5816cb91e0):
|
|
671
|
+
- Updated dependencies [faccb537d0](https://bitbucket.org/atlassian/atlassian-frontend/commits/faccb537d0):
|
|
672
|
+
- Updated dependencies [642b2f93ea](https://bitbucket.org/atlassian/atlassian-frontend/commits/642b2f93ea):
|
|
673
|
+
- Updated dependencies [4898d64f46](https://bitbucket.org/atlassian/atlassian-frontend/commits/4898d64f46):
|
|
674
|
+
- Updated dependencies [8cf20f37ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cf20f37ae):
|
|
675
|
+
- Updated dependencies [a23aa4e4a8](https://bitbucket.org/atlassian/atlassian-frontend/commits/a23aa4e4a8):
|
|
676
|
+
- Updated dependencies [a753b0d6da](https://bitbucket.org/atlassian/atlassian-frontend/commits/a753b0d6da):
|
|
677
|
+
- Updated dependencies [b1ce12dffb](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1ce12dffb):
|
|
678
|
+
- Updated dependencies [4c4ae93de7](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c4ae93de7):
|
|
679
|
+
- Updated dependencies [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
|
|
680
|
+
- Updated dependencies [e4f0ab434f](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4f0ab434f):
|
|
681
|
+
- Updated dependencies [3da54e6146](https://bitbucket.org/atlassian/atlassian-frontend/commits/3da54e6146):
|
|
682
|
+
- Updated dependencies [94ea01d1d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/94ea01d1d6):
|
|
683
|
+
- Updated dependencies [01dc5ed14b](https://bitbucket.org/atlassian/atlassian-frontend/commits/01dc5ed14b):
|
|
684
|
+
- Updated dependencies [fdaac966f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdaac966f4):
|
|
685
|
+
- Updated dependencies [54a499fb7b](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a499fb7b):
|
|
686
|
+
- @atlaskit/adf-schema@5.0.0
|
|
687
|
+
- @atlaskit/editor-core@116.1.0
|
|
688
|
+
- @atlaskit/editor-common@43.3.0
|
|
689
|
+
- @atlaskit/editor-test-helpers@10.4.1
|
|
690
|
+
- @atlaskit/editor-json-transformer@7.0.3
|
|
691
|
+
- @atlaskit/renderer@53.2.4
|
|
692
|
+
|
|
693
|
+
## 5.0.0
|
|
694
|
+
|
|
695
|
+
### Major Changes
|
|
696
|
+
|
|
697
|
+
- [major][97441f6abf](https://bitbucket.org/atlassian/atlassian-frontend/commits/97441f6abf):
|
|
698
|
+
|
|
699
|
+
break down context object into hydration and conversion
|
|
700
|
+
|
|
701
|
+
### Minor Changes
|
|
702
|
+
|
|
703
|
+
- [minor][c58df17d72](https://bitbucket.org/atlassian/atlassian-frontend/commits/c58df17d72):
|
|
704
|
+
|
|
705
|
+
EX-870 wiki transformer now accepts context for mapping media and mentions
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- Updated dependencies [6042417190](https://bitbucket.org/atlassian/atlassian-frontend/commits/6042417190):
|
|
710
|
+
- Updated dependencies [26942487d1](https://bitbucket.org/atlassian/atlassian-frontend/commits/26942487d1):
|
|
711
|
+
- Updated dependencies [d1055e0e50](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1055e0e50):
|
|
712
|
+
- Updated dependencies [8db35852ab](https://bitbucket.org/atlassian/atlassian-frontend/commits/8db35852ab):
|
|
713
|
+
- Updated dependencies [98a904dd02](https://bitbucket.org/atlassian/atlassian-frontend/commits/98a904dd02):
|
|
714
|
+
- Updated dependencies [2ffdeb5a48](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ffdeb5a48):
|
|
715
|
+
- Updated dependencies [97d1245875](https://bitbucket.org/atlassian/atlassian-frontend/commits/97d1245875):
|
|
716
|
+
- Updated dependencies [4eefd368a8](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eefd368a8):
|
|
717
|
+
- Updated dependencies [9219b332cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/9219b332cb):
|
|
718
|
+
- Updated dependencies [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
|
|
719
|
+
- Updated dependencies [29643d4593](https://bitbucket.org/atlassian/atlassian-frontend/commits/29643d4593):
|
|
720
|
+
- Updated dependencies [99fc6250f9](https://bitbucket.org/atlassian/atlassian-frontend/commits/99fc6250f9):
|
|
721
|
+
- Updated dependencies [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
|
|
722
|
+
- Updated dependencies [4cd37dd052](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cd37dd052):
|
|
723
|
+
- Updated dependencies [1f84cf7583](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f84cf7583):
|
|
724
|
+
- Updated dependencies [218fe01736](https://bitbucket.org/atlassian/atlassian-frontend/commits/218fe01736):
|
|
725
|
+
- Updated dependencies [dfb3b76a4b](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfb3b76a4b):
|
|
726
|
+
- Updated dependencies [985db883ac](https://bitbucket.org/atlassian/atlassian-frontend/commits/985db883ac):
|
|
727
|
+
- Updated dependencies [bed9c11960](https://bitbucket.org/atlassian/atlassian-frontend/commits/bed9c11960):
|
|
728
|
+
- Updated dependencies [a30fe6c66e](https://bitbucket.org/atlassian/atlassian-frontend/commits/a30fe6c66e):
|
|
729
|
+
- Updated dependencies [fdf30da2db](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdf30da2db):
|
|
730
|
+
- Updated dependencies [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
|
|
731
|
+
- Updated dependencies [d1c470507c](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1c470507c):
|
|
732
|
+
- Updated dependencies [fc1678c70d](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc1678c70d):
|
|
733
|
+
- Updated dependencies [2edd170a68](https://bitbucket.org/atlassian/atlassian-frontend/commits/2edd170a68):
|
|
734
|
+
- Updated dependencies [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
|
|
735
|
+
- Updated dependencies [5abcab3f7e](https://bitbucket.org/atlassian/atlassian-frontend/commits/5abcab3f7e):
|
|
736
|
+
- Updated dependencies [5d13d33a60](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d13d33a60):
|
|
737
|
+
- Updated dependencies [81897eb2e6](https://bitbucket.org/atlassian/atlassian-frontend/commits/81897eb2e6):
|
|
738
|
+
- Updated dependencies [1d421446bc](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d421446bc):
|
|
739
|
+
- @atlaskit/editor-core@116.0.0
|
|
740
|
+
- @atlaskit/editor-common@43.2.0
|
|
741
|
+
- @atlaskit/renderer@53.2.3
|
|
742
|
+
- @atlaskit/adf-schema@4.4.0
|
|
743
|
+
- @atlaskit/theme@9.5.0
|
|
744
|
+
- @atlaskit/editor-test-helpers@10.4.0
|
|
745
|
+
- @atlaskit/util-data-test@13.1.0
|
|
746
|
+
- @atlaskit/editor-json-transformer@7.0.2
|
|
747
|
+
|
|
748
|
+
## 4.6.4
|
|
749
|
+
|
|
750
|
+
### Patch Changes
|
|
751
|
+
|
|
752
|
+
- [patch][004a2ac22c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/004a2ac22c):
|
|
753
|
+
|
|
754
|
+
Fix linebreak on non-empty cell contents closing cell
|
|
755
|
+
|
|
756
|
+
- Updated dependencies [271945fd08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/271945fd08):
|
|
757
|
+
- Updated dependencies [a6663b9325](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a6663b9325):
|
|
758
|
+
- Updated dependencies [5e4d1feec3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5e4d1feec3):
|
|
759
|
+
- Updated dependencies [0f8d5df4cf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0f8d5df4cf):
|
|
760
|
+
- Updated dependencies [161a30be16](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/161a30be16):
|
|
761
|
+
- Updated dependencies [ecfbe83dfb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecfbe83dfb):
|
|
762
|
+
- Updated dependencies [ea0e619cc7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ea0e619cc7):
|
|
763
|
+
- Updated dependencies [93b445dcdc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/93b445dcdc):
|
|
764
|
+
- Updated dependencies [49fbe3d3bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49fbe3d3bf):
|
|
765
|
+
- Updated dependencies [ded174361e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ded174361e):
|
|
766
|
+
- Updated dependencies [80eb127904](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80eb127904):
|
|
767
|
+
- Updated dependencies [ef2ba36d5c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ef2ba36d5c):
|
|
768
|
+
- Updated dependencies [8c84ed470e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8c84ed470e):
|
|
769
|
+
- Updated dependencies [6e4b678428](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e4b678428):
|
|
770
|
+
- Updated dependencies [bb164fbd1e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bb164fbd1e):
|
|
771
|
+
- Updated dependencies [3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
|
|
772
|
+
- Updated dependencies [b3fd0964f2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b3fd0964f2):
|
|
773
|
+
- Updated dependencies [40bec82851](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/40bec82851):
|
|
774
|
+
- Updated dependencies [8b652147a5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b652147a5):
|
|
775
|
+
- Updated dependencies [b4fda095ef](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b4fda095ef):
|
|
776
|
+
- Updated dependencies [0603c2fbf7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0603c2fbf7):
|
|
777
|
+
- Updated dependencies [72d4c3298d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/72d4c3298d):
|
|
778
|
+
- Updated dependencies [10425b84b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/10425b84b4):
|
|
779
|
+
- Updated dependencies [5ef337766c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ef337766c):
|
|
780
|
+
- Updated dependencies [dc0999afc2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc0999afc2):
|
|
781
|
+
- Updated dependencies [6764e83801](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6764e83801):
|
|
782
|
+
- Updated dependencies [553915553f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/553915553f):
|
|
783
|
+
- Updated dependencies [4700477bbe](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4700477bbe):
|
|
784
|
+
- Updated dependencies [7f8de51c36](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7f8de51c36):
|
|
785
|
+
- Updated dependencies [f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
|
|
786
|
+
- Updated dependencies [9a261337b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9a261337b5):
|
|
787
|
+
- Updated dependencies [3a7c0bfa32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3a7c0bfa32):
|
|
788
|
+
- Updated dependencies [5455e35bc0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5455e35bc0):
|
|
789
|
+
- Updated dependencies [cc1b89d310](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc1b89d310):
|
|
790
|
+
- Updated dependencies [2bb3af2382](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2bb3af2382):
|
|
791
|
+
- Updated dependencies [611dbe68ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/611dbe68ff):
|
|
792
|
+
- Updated dependencies [0ea0587ac5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0ea0587ac5):
|
|
793
|
+
- Updated dependencies [938f1c2902](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/938f1c2902):
|
|
794
|
+
- Updated dependencies [926798632e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926798632e):
|
|
795
|
+
- @atlaskit/editor-common@43.0.0
|
|
796
|
+
- @atlaskit/editor-core@115.0.0
|
|
797
|
+
- @atlaskit/adf-schema@4.3.1
|
|
798
|
+
- @atlaskit/mention@18.16.0
|
|
799
|
+
- @atlaskit/renderer@53.2.0
|
|
800
|
+
- @atlaskit/theme@9.3.0
|
|
801
|
+
- @atlaskit/editor-test-helpers@10.3.0
|
|
802
|
+
- @atlaskit/profilecard@12.3.5
|
|
803
|
+
- @atlaskit/editor-json-transformer@7.0.1
|
|
804
|
+
|
|
805
|
+
## 4.6.3
|
|
806
|
+
|
|
807
|
+
### Patch Changes
|
|
808
|
+
|
|
809
|
+
- [patch][0ec8f5f9ce](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0ec8f5f9ce):
|
|
810
|
+
|
|
811
|
+
wikimarkup auto-linkify text should include tilde, hat and exclamation marks
|
|
812
|
+
|
|
813
|
+
## 4.6.2
|
|
814
|
+
|
|
815
|
+
### Patch Changes
|
|
816
|
+
|
|
817
|
+
- [patch][d396ae22c2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d396ae22c2):
|
|
818
|
+
|
|
819
|
+
Rename wiki representation of blockCard from block-link to smart-card
|
|
820
|
+
|
|
821
|
+
## 4.6.1
|
|
822
|
+
|
|
823
|
+
### Patch Changes
|
|
824
|
+
|
|
825
|
+
- [patch][4aac2fe2d5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4aac2fe2d5):
|
|
826
|
+
|
|
827
|
+
fix up the url encoding/decoding of commas in text links
|
|
828
|
+
|
|
829
|
+
## 4.6.0
|
|
830
|
+
|
|
831
|
+
### Minor Changes
|
|
832
|
+
|
|
833
|
+
- [minor][f7a20e9f3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f7a20e9f3a):
|
|
834
|
+
|
|
835
|
+
Add transformation of adf blockcard to wikimarkup compatible smart-link
|
|
836
|
+
Add logic for converting inlinecard to blockcard when it is on its own line
|
|
837
|
+
|
|
838
|
+
## 4.5.9
|
|
839
|
+
|
|
840
|
+
- Updated dependencies [6d9c8a9073](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6d9c8a9073):
|
|
841
|
+
- Updated dependencies [70e1055b8f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70e1055b8f):
|
|
842
|
+
- @atlaskit/adf-schema@4.3.0
|
|
843
|
+
- @atlaskit/editor-common@42.0.0
|
|
844
|
+
- @atlaskit/editor-core@114.1.0
|
|
845
|
+
- @atlaskit/renderer@53.1.0
|
|
846
|
+
- @atlaskit/editor-json-transformer@7.0.0
|
|
847
|
+
- @atlaskit/editor-test-helpers@10.2.0
|
|
848
|
+
|
|
849
|
+
## 4.5.8
|
|
850
|
+
|
|
851
|
+
- Updated dependencies [f28c191f4a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f28c191f4a):
|
|
852
|
+
- Updated dependencies [24b8ea2667](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24b8ea2667):
|
|
853
|
+
- @atlaskit/editor-json-transformer@6.3.5
|
|
854
|
+
- @atlaskit/editor-test-helpers@10.1.3
|
|
855
|
+
- @atlaskit/editor-core@114.0.0
|
|
856
|
+
- @atlaskit/renderer@53.0.0
|
|
857
|
+
- @atlaskit/editor-common@41.2.1
|
|
858
|
+
|
|
859
|
+
## 4.5.7
|
|
860
|
+
|
|
861
|
+
### Patch Changes
|
|
862
|
+
|
|
863
|
+
- [patch][650b9bd18d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/650b9bd18d):
|
|
864
|
+
|
|
865
|
+
fix up issue in wikimarkup parser where a url with url-encoded values are double encoded when converted into ADF
|
|
866
|
+
|
|
867
|
+
## 4.5.6
|
|
868
|
+
|
|
869
|
+
### Patch Changes
|
|
870
|
+
|
|
871
|
+
- [patch][24165e116f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24165e116f):
|
|
872
|
+
|
|
873
|
+
fix bug where bullet points and rulers inside monospace causes parse error
|
|
874
|
+
|
|
875
|
+
## 4.5.5
|
|
876
|
+
|
|
877
|
+
### Patch Changes
|
|
878
|
+
|
|
879
|
+
- [patch][ca7488595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ca7488595c):
|
|
880
|
+
|
|
881
|
+
fix bug in the mediaGroup normalization logic where mediaGroup nodes are not merged together properly when there are more than one newline
|
|
882
|
+
|
|
883
|
+
## 4.5.4
|
|
884
|
+
|
|
885
|
+
### Patch Changes
|
|
886
|
+
|
|
887
|
+
- [patch][0a67332a0f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a67332a0f):
|
|
888
|
+
|
|
889
|
+
Fix bug where monospace wikimarkup fails to convert to ADF when it contains an attachment link
|
|
890
|
+
|
|
891
|
+
## 4.5.3
|
|
892
|
+
|
|
893
|
+
### Patch Changes
|
|
894
|
+
|
|
895
|
+
- [patch][cc28419139](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc28419139):
|
|
896
|
+
|
|
897
|
+
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.- [patch][ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
|
|
898
|
+
|
|
899
|
+
**FABDODGEM-13 Editor Damask Release** - [Internal post](http://go.atlassian.com/damask-release)
|
|
900
|
+
|
|
901
|
+
**BREAKING CHANGES**
|
|
902
|
+
|
|
903
|
+
- **Media:** Removed deprecated "context" property from media components in favor of "mediaClientConfig". This affects all public media UI components.
|
|
904
|
+
- https://product-fabric.atlassian.net/browse/MS-2038
|
|
905
|
+
- **Tasks & Decisions:** Removed containerAri for task-decisions components.
|
|
906
|
+
- https://product-fabric.atlassian.net/browse/ED-7631
|
|
907
|
+
- **Renderer:** Adapts to task-decision changes.
|
|
908
|
+
- **Editor Mobile Bridge:** Adapts to task-decision changes.
|
|
909
|
+
- **Util Data Test:** Adapts to task-decision changes.
|
|
910
|
+
|
|
911
|
+
---
|
|
912
|
+
|
|
913
|
+
**Affected Editor Components:**
|
|
914
|
+
|
|
915
|
+
tables, media, mobile, emoji, tasks & decisions, analytics
|
|
916
|
+
|
|
917
|
+
**Editor**
|
|
918
|
+
|
|
919
|
+
- Support nested actions in stage-0 schema; Change DOM representation of actions
|
|
920
|
+
- https://product-fabric.atlassian.net/browse/ED-7674
|
|
921
|
+
- Updated i18n translations
|
|
922
|
+
- https://product-fabric.atlassian.net/browse/ED-7750
|
|
923
|
+
- Improved analytics & crash reporting (via a new error boundary)
|
|
924
|
+
- https://product-fabric.atlassian.net/browse/ED-7766
|
|
925
|
+
- https://product-fabric.atlassian.net/browse/ED-7806
|
|
926
|
+
- Improvements to heading anchor links.
|
|
927
|
+
- https://product-fabric.atlassian.net/browse/ED-7849
|
|
928
|
+
- https://product-fabric.atlassian.net/browse/ED-7860
|
|
929
|
+
- Copy/Paste improvements
|
|
930
|
+
- https://product-fabric.atlassian.net/browse/ED-7840
|
|
931
|
+
- https://product-fabric.atlassian.net/browse/ED-7849
|
|
932
|
+
- Fixes for the selection state of Smart links.
|
|
933
|
+
- https://product-fabric.atlassian.net/browse/ED-7602?src=confmacro
|
|
934
|
+
- Improvements for table resizing & column creation.
|
|
935
|
+
- https://product-fabric.atlassian.net/browse/ED-7698
|
|
936
|
+
- https://product-fabric.atlassian.net/browse/ED-7319
|
|
937
|
+
- https://product-fabric.atlassian.net/browse/ED-7799
|
|
938
|
+
|
|
939
|
+
**Mobile**
|
|
940
|
+
|
|
941
|
+
- GASv3 Analytics Events are now relayed from the web to the native context, ready for dispatching.
|
|
942
|
+
- https://product-fabric.atlassian.net/browse/FM-2502
|
|
943
|
+
- Hybrid Renderer Recycler view now handles invalid ADF nodes gracefully.
|
|
944
|
+
- https://product-fabric.atlassian.net/browse/FM-2370
|
|
945
|
+
|
|
946
|
+
**Media**
|
|
947
|
+
|
|
948
|
+
- Improved analytics
|
|
949
|
+
- https://product-fabric.atlassian.net/browse/MS-2036
|
|
950
|
+
- https://product-fabric.atlassian.net/browse/MS-2145
|
|
951
|
+
- https://product-fabric.atlassian.net/browse/MS-2416
|
|
952
|
+
- https://product-fabric.atlassian.net/browse/MS-2487
|
|
953
|
+
- Added shouldOpenMediaViewer property to renderer
|
|
954
|
+
- https://product-fabric.atlassian.net/browse/MS-2393
|
|
955
|
+
- Implemented analytics for file copy
|
|
956
|
+
- https://product-fabric.atlassian.net/browse/MS-2036
|
|
957
|
+
- New `media-viewed` event dispatched when media is interacted with via the media card or viewer.
|
|
958
|
+
- https://product-fabric.atlassian.net/browse/MS-2284
|
|
959
|
+
- Support for `alt` text attribute on media image elements.
|
|
960
|
+
- https://product-fabric.atlassian.net/browse/ED-7776
|
|
961
|
+
|
|
962
|
+
**i18n-tools**
|
|
963
|
+
|
|
964
|
+
Bumped dependencies.
|
|
965
|
+
|
|
966
|
+
- [patch][c64e893ef8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c64e893ef8):
|
|
967
|
+
|
|
968
|
+
merge multiple media groups with single child media node into one media group with multiple children media nodes
|
|
969
|
+
|
|
970
|
+
- Updated dependencies [4585681e3d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4585681e3d):
|
|
971
|
+
- Updated dependencies [bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
|
|
972
|
+
- @atlaskit/renderer@52.0.0
|
|
973
|
+
- @atlaskit/editor-core@113.2.0
|
|
974
|
+
- @atlaskit/editor-common@41.2.0
|
|
975
|
+
- @atlaskit/editor-json-transformer@6.3.4
|
|
976
|
+
- @atlaskit/profilecard@12.3.3
|
|
977
|
+
- @atlaskit/util-data-test@13.0.0
|
|
978
|
+
|
|
979
|
+
## 4.5.2
|
|
980
|
+
|
|
981
|
+
### Patch Changes
|
|
982
|
+
|
|
983
|
+
- [patch][e95f75250d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e95f75250d):
|
|
984
|
+
|
|
985
|
+
a bug where a | character at the start of a monospace would cause the parser to crash was fixed, but adding table token type to the ignorelist of the monospace parser.
|
|
986
|
+
|
|
987
|
+
## 4.5.1
|
|
988
|
+
|
|
989
|
+
- Updated dependencies [1194ad5eb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1194ad5eb3):
|
|
990
|
+
- Updated dependencies [166eb02474](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/166eb02474):
|
|
991
|
+
- Updated dependencies [40ead387ef](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/40ead387ef):
|
|
992
|
+
- Updated dependencies [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
|
|
993
|
+
- @atlaskit/editor-common@41.0.0
|
|
994
|
+
- @atlaskit/editor-core@113.0.0
|
|
995
|
+
- @atlaskit/editor-json-transformer@6.3.3
|
|
996
|
+
- @atlaskit/editor-test-helpers@10.0.0
|
|
997
|
+
- @atlaskit/renderer@51.0.0
|
|
998
|
+
- @atlaskit/adf-schema@4.0.0
|
|
999
|
+
|
|
1000
|
+
## 4.5.0
|
|
1001
|
+
|
|
1002
|
+
### Minor Changes
|
|
1003
|
+
|
|
1004
|
+
- [minor][7b58498bbf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7b58498bbf):
|
|
1005
|
+
|
|
1006
|
+
CS-916 ADF->wiki conversion renders empty cells
|
|
1007
|
+
|
|
1008
|
+
## 4.4.9
|
|
1009
|
+
|
|
1010
|
+
- Updated dependencies [08ec269915](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08ec269915):
|
|
1011
|
+
- @atlaskit/editor-core@112.44.2
|
|
1012
|
+
- @atlaskit/editor-json-transformer@6.3.2
|
|
1013
|
+
- @atlaskit/editor-test-helpers@9.11.13
|
|
1014
|
+
- @atlaskit/editor-common@40.0.0
|
|
1015
|
+
- @atlaskit/renderer@50.0.0
|
|
1016
|
+
|
|
1017
|
+
## 4.4.8
|
|
1018
|
+
|
|
1019
|
+
### Patch Changes
|
|
1020
|
+
|
|
1021
|
+
- [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
|
1022
|
+
|
|
1023
|
+
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
|
|
1024
|
+
|
|
1025
|
+
## 4.4.7
|
|
1026
|
+
|
|
1027
|
+
- Updated dependencies [6164bc2629](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6164bc2629):
|
|
1028
|
+
- @atlaskit/editor-core@112.39.5
|
|
1029
|
+
- @atlaskit/editor-json-transformer@6.2.3
|
|
1030
|
+
- @atlaskit/editor-test-helpers@9.11.3
|
|
1031
|
+
- @atlaskit/adf-schema@3.0.0
|
|
1032
|
+
- @atlaskit/editor-common@39.17.0
|
|
1033
|
+
- @atlaskit/renderer@49.7.5
|
|
1034
|
+
|
|
1035
|
+
## 4.4.6
|
|
1036
|
+
|
|
1037
|
+
### Patch Changes
|
|
1038
|
+
|
|
1039
|
+
- [patch][d77e23ae9b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d77e23ae9b):
|
|
1040
|
+
|
|
1041
|
+
Respect empty column
|
|
1042
|
+
|
|
1043
|
+
## 4.4.5
|
|
1044
|
+
|
|
1045
|
+
### Patch Changes
|
|
1046
|
+
|
|
1047
|
+
- [patch][5d9be88694](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5d9be88694):
|
|
1048
|
+
|
|
1049
|
+
fix the issuer where color macro is broken down to multiple paragraph
|
|
1050
|
+
|
|
1051
|
+
## 4.4.4
|
|
1052
|
+
|
|
1053
|
+
### Patch Changes
|
|
1054
|
+
|
|
1055
|
+
- [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
|
|
1056
|
+
|
|
1057
|
+
Fixes bug, missing version.json file
|
|
1058
|
+
|
|
1059
|
+
## 4.4.3
|
|
1060
|
+
|
|
1061
|
+
### Patch Changes
|
|
1062
|
+
|
|
1063
|
+
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
1064
|
+
|
|
1065
|
+
In this PR, we are:
|
|
1066
|
+
|
|
1067
|
+
- Re-introducing dist build folders
|
|
1068
|
+
- Adding back cjs
|
|
1069
|
+
- Replacing es5 by cjs and es2015 by esm
|
|
1070
|
+
- Creating folders at the root for entry-points
|
|
1071
|
+
- Removing the generation of the entry-points at the root
|
|
1072
|
+
Please see this [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points) for further details
|
|
1073
|
+
|
|
1074
|
+
## 4.4.2
|
|
1075
|
+
|
|
1076
|
+
### Patch Changes
|
|
1077
|
+
|
|
1078
|
+
- [patch][f7921c3d54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f7921c3d54):
|
|
1079
|
+
|
|
1080
|
+
Specail case for hanlding emoji in table
|
|
1081
|
+
|
|
1082
|
+
## 4.4.1
|
|
1083
|
+
|
|
1084
|
+
- Updated dependencies [2b333a4c6d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b333a4c6d):
|
|
1085
|
+
- @atlaskit/editor-common@39.8.7
|
|
1086
|
+
- @atlaskit/renderer@49.1.2
|
|
1087
|
+
- @atlaskit/profilecard@12.0.0
|
|
1088
|
+
|
|
1089
|
+
## 4.4.0
|
|
1090
|
+
|
|
1091
|
+
### Minor Changes
|
|
1092
|
+
|
|
1093
|
+
- [minor][10b8678029](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/10b8678029):
|
|
1094
|
+
|
|
1095
|
+
Fix es5 build
|
|
1096
|
+
|
|
1097
|
+
## 4.3.0
|
|
1098
|
+
|
|
1099
|
+
### Minor Changes
|
|
1100
|
+
|
|
1101
|
+
- [minor][f05bb0df52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f05bb0df52):
|
|
1102
|
+
|
|
1103
|
+
Improve emoji parsing
|
|
1104
|
+
|
|
1105
|
+
## 4.2.5
|
|
1106
|
+
|
|
1107
|
+
- Updated dependencies [ff85c1c706](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ff85c1c706):
|
|
1108
|
+
- @atlaskit/editor-core@112.13.9
|
|
1109
|
+
- @atlaskit/renderer@49.0.0
|
|
1110
|
+
|
|
1111
|
+
## 4.2.4
|
|
1112
|
+
|
|
1113
|
+
- Updated dependencies [a40f54404e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a40f54404e):
|
|
1114
|
+
- @atlaskit/editor-common@39.8.2
|
|
1115
|
+
- @atlaskit/renderer@48.8.2
|
|
1116
|
+
- @atlaskit/profilecard@11.0.0
|
|
1117
|
+
|
|
1118
|
+
## 4.2.3
|
|
1119
|
+
|
|
1120
|
+
- [patch][e794ba2c53](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e794ba2c53):
|
|
1121
|
+
|
|
1122
|
+
- Release for es5
|
|
1123
|
+
|
|
1124
|
+
## 4.2.2
|
|
1125
|
+
|
|
1126
|
+
- [patch][3e9995b40d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3e9995b40d):
|
|
1127
|
+
|
|
1128
|
+
- remove unnessary dependencies and bring back es5 to wikimarkup
|
|
1129
|
+
|
|
1130
|
+
## 4.2.1
|
|
1131
|
+
|
|
1132
|
+
- [patch][78f6d092be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/78f6d092be):
|
|
1133
|
+
|
|
1134
|
+
- Allow issue links to be surrounded by ()
|
|
1135
|
+
|
|
1136
|
+
## 4.2.0
|
|
1137
|
+
|
|
1138
|
+
- [minor][79f0ef0601](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/79f0ef0601):
|
|
1139
|
+
|
|
1140
|
+
- Use strict tsconfig to compile editor packages
|
|
1141
|
+
|
|
1142
|
+
## 4.1.2
|
|
1143
|
+
|
|
1144
|
+
- Updated dependencies [5e4ff01e4c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5e4ff01e4c):
|
|
1145
|
+
- @atlaskit/editor-json-transformer@6.0.2
|
|
1146
|
+
- @atlaskit/editor-test-helpers@9.1.4
|
|
1147
|
+
- @atlaskit/editor-core@112.0.0
|
|
1148
|
+
|
|
1149
|
+
## 4.1.1
|
|
1150
|
+
|
|
1151
|
+
- Updated dependencies [154372926b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/154372926b):
|
|
1152
|
+
- @atlaskit/editor-json-transformer@6.0.1
|
|
1153
|
+
- @atlaskit/editor-test-helpers@9.1.2
|
|
1154
|
+
- @atlaskit/editor-core@111.0.0
|
|
1155
|
+
|
|
1156
|
+
## 4.1.0
|
|
1157
|
+
|
|
1158
|
+
- [minor][5a49043dac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5a49043dac):
|
|
1159
|
+
|
|
1160
|
+
- Enable strictPropertyInitialization in tsconfig.base
|
|
1161
|
+
|
|
1162
|
+
## 4.0.9
|
|
1163
|
+
|
|
1164
|
+
- Updated dependencies [7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1165
|
+
- @atlaskit/adf-schema@2.5.5
|
|
1166
|
+
- @atlaskit/editor-common@39.0.0
|
|
1167
|
+
- @atlaskit/editor-core@110.0.0
|
|
1168
|
+
- @atlaskit/renderer@48.0.0
|
|
1169
|
+
- @atlaskit/docs@8.0.0
|
|
1170
|
+
- @atlaskit/theme@9.0.0
|
|
1171
|
+
- @atlaskit/editor-json-transformer@6.0.0
|
|
1172
|
+
- @atlaskit/editor-test-helpers@9.0.0
|
|
1173
|
+
- @atlaskit/util-data-test@12.0.0
|
|
1174
|
+
- @atlaskit/profilecard@10.0.0
|
|
1175
|
+
|
|
1176
|
+
## 4.0.8
|
|
1177
|
+
|
|
1178
|
+
- Updated dependencies [a1192ef860](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a1192ef860):
|
|
1179
|
+
- @atlaskit/editor-common@38.0.0
|
|
1180
|
+
- @atlaskit/editor-core@109.0.0
|
|
1181
|
+
- @atlaskit/renderer@47.0.0
|
|
1182
|
+
- @atlaskit/editor-json-transformer@5.0.4
|
|
1183
|
+
- @atlaskit/editor-test-helpers@8.0.8
|
|
1184
|
+
- @atlaskit/util-data-test@11.1.9
|
|
1185
|
+
|
|
1186
|
+
## 4.0.7
|
|
1187
|
+
|
|
1188
|
+
- Updated dependencies [e7292ab444](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7292ab444):
|
|
1189
|
+
- @atlaskit/editor-common@37.0.0
|
|
1190
|
+
- @atlaskit/editor-core@108.0.0
|
|
1191
|
+
- @atlaskit/renderer@46.0.0
|
|
1192
|
+
- @atlaskit/editor-json-transformer@5.0.3
|
|
1193
|
+
- @atlaskit/editor-test-helpers@8.0.7
|
|
1194
|
+
- @atlaskit/util-data-test@11.1.8
|
|
1195
|
+
|
|
1196
|
+
## 4.0.6
|
|
1197
|
+
|
|
1198
|
+
- Updated dependencies [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
|
|
1199
|
+
- @atlaskit/docs@7.0.3
|
|
1200
|
+
- @atlaskit/editor-common@36.1.12
|
|
1201
|
+
- @atlaskit/editor-core@107.13.4
|
|
1202
|
+
- @atlaskit/renderer@45.6.1
|
|
1203
|
+
- @atlaskit/profilecard@9.0.2
|
|
1204
|
+
- @atlaskit/theme@8.1.7
|
|
1205
|
+
|
|
1206
|
+
## 4.0.5
|
|
1207
|
+
|
|
1208
|
+
- [patch][97e555c168](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97e555c168):
|
|
1209
|
+
|
|
1210
|
+
- Revert "[ED-5259 - ED-6200] adds defaultMarks on tableNode (pull request #5259)"
|
|
1211
|
+
|
|
1212
|
+
## 4.0.4
|
|
1213
|
+
|
|
1214
|
+
- [patch][b425ea772b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b425ea772b):
|
|
1215
|
+
|
|
1216
|
+
- Revert "ED-5505 add strong as default mark to table header (pull request #5291)"
|
|
1217
|
+
|
|
1218
|
+
## 4.0.3
|
|
1219
|
+
|
|
1220
|
+
- Updated dependencies [bfca144ea5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bfca144ea5):
|
|
1221
|
+
- @atlaskit/editor-common@36.1.1
|
|
1222
|
+
- @atlaskit/renderer@45.2.2
|
|
1223
|
+
- @atlaskit/profilecard@9.0.0
|
|
1224
|
+
|
|
1225
|
+
## 4.0.2
|
|
1226
|
+
|
|
1227
|
+
- Updated dependencies [c2c36de22b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c2c36de22b):
|
|
1228
|
+
- @atlaskit/editor-common@36.0.0
|
|
1229
|
+
- @atlaskit/editor-core@107.0.0
|
|
1230
|
+
- @atlaskit/renderer@45.0.0
|
|
1231
|
+
- @atlaskit/editor-json-transformer@5.0.2
|
|
1232
|
+
- @atlaskit/editor-test-helpers@8.0.3
|
|
1233
|
+
- @atlaskit/util-data-test@11.1.5
|
|
1234
|
+
|
|
1235
|
+
## 4.0.1
|
|
1236
|
+
|
|
1237
|
+
- [patch][1bcaa1b991](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1bcaa1b991):
|
|
1238
|
+
|
|
1239
|
+
- Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
|
|
1240
|
+
|
|
1241
|
+
## 4.0.0
|
|
1242
|
+
|
|
1243
|
+
- [major][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
|
|
1244
|
+
|
|
1245
|
+
- Dropped ES5 distributables from the typescript packages
|
|
1246
|
+
|
|
1247
|
+
## 3.5.6
|
|
1248
|
+
|
|
1249
|
+
- Updated dependencies [7ab3e93996](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ab3e93996):
|
|
1250
|
+
- @atlaskit/editor-common@34.0.0
|
|
1251
|
+
- @atlaskit/editor-core@105.0.0
|
|
1252
|
+
- @atlaskit/editor-test-helpers@7.0.6
|
|
1253
|
+
- @atlaskit/renderer@43.0.0
|
|
1254
|
+
- @atlaskit/editor-json-transformer@4.3.5
|
|
1255
|
+
- @atlaskit/util-data-test@10.2.5
|
|
1256
|
+
|
|
1257
|
+
## 3.5.5
|
|
1258
|
+
|
|
1259
|
+
- Updated dependencies [4d17df92f8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4d17df92f8):
|
|
1260
|
+
- @atlaskit/editor-json-transformer@4.3.4
|
|
1261
|
+
- @atlaskit/editor-test-helpers@7.0.5
|
|
1262
|
+
- @atlaskit/editor-core@104.0.0
|
|
1263
|
+
- @atlaskit/renderer@42.0.0
|
|
1264
|
+
|
|
1265
|
+
## 3.5.4
|
|
1266
|
+
|
|
1267
|
+
- Updated dependencies [dbff4fdcf9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbff4fdcf9):
|
|
1268
|
+
- @atlaskit/editor-common@33.0.4
|
|
1269
|
+
- @atlaskit/renderer@41.3.1
|
|
1270
|
+
- @atlaskit/profilecard@8.0.0
|
|
1271
|
+
|
|
1272
|
+
## 3.5.3
|
|
1273
|
+
|
|
1274
|
+
- Updated dependencies [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1275
|
+
- @atlaskit/editor-core@103.0.3
|
|
1276
|
+
- @atlaskit/editor-json-transformer@4.3.3
|
|
1277
|
+
- @atlaskit/renderer@41.2.1
|
|
1278
|
+
- @atlaskit/util-data-test@10.2.3
|
|
1279
|
+
- @atlaskit/editor-common@33.0.3
|
|
1280
|
+
- @atlaskit/docs@7.0.0
|
|
1281
|
+
- @atlaskit/theme@8.0.0
|
|
1282
|
+
- @atlaskit/profilecard@7.0.0
|
|
1283
|
+
|
|
1284
|
+
## 3.5.2
|
|
1285
|
+
|
|
1286
|
+
- Updated dependencies [60f0ad9a7e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/60f0ad9a7e):
|
|
1287
|
+
- @atlaskit/editor-json-transformer@4.3.2
|
|
1288
|
+
- @atlaskit/editor-core@103.0.0
|
|
1289
|
+
- @atlaskit/editor-test-helpers@7.0.4
|
|
1290
|
+
|
|
1291
|
+
## 3.5.1
|
|
1292
|
+
|
|
1293
|
+
- Updated dependencies [4aee5f3cec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4aee5f3cec):
|
|
1294
|
+
- @atlaskit/editor-common@33.0.0
|
|
1295
|
+
- @atlaskit/editor-core@102.0.0
|
|
1296
|
+
- @atlaskit/renderer@41.0.0
|
|
1297
|
+
- @atlaskit/editor-json-transformer@4.3.1
|
|
1298
|
+
- @atlaskit/editor-test-helpers@7.0.2
|
|
1299
|
+
- @atlaskit/util-data-test@10.2.2
|
|
1300
|
+
|
|
1301
|
+
## 3.5.0
|
|
1302
|
+
|
|
1303
|
+
- [minor][9bb0ecb48a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bb0ecb48a):
|
|
1304
|
+
|
|
1305
|
+
- Support wiki to smart link
|
|
1306
|
+
|
|
1307
|
+
## 3.4.0
|
|
1308
|
+
|
|
1309
|
+
- [minor][1eb20bca95](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1eb20bca95):
|
|
1310
|
+
|
|
1311
|
+
- ED-6368: No implicit any for editor-\*-transformer packages
|
|
1312
|
+
|
|
1313
|
+
## 3.3.0
|
|
1314
|
+
|
|
1315
|
+
- [minor][6b23c22b7d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6b23c22b7d):
|
|
1316
|
+
|
|
1317
|
+
- Advanced table fallback
|
|
1318
|
+
|
|
1319
|
+
## 3.2.0
|
|
1320
|
+
|
|
1321
|
+
- [minor][06532fe23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06532fe23e):
|
|
1322
|
+
|
|
1323
|
+
- Adds mediaSingle support for list
|
|
1324
|
+
|
|
1325
|
+
## 3.1.0
|
|
1326
|
+
|
|
1327
|
+
- [minor][8709be280f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8709be280f):
|
|
1328
|
+
|
|
1329
|
+
- Add issue key token to convert into inline cards (Jira Smart Cards)
|
|
1330
|
+
|
|
1331
|
+
## 3.0.3
|
|
1332
|
+
|
|
1333
|
+
- Updated dependencies [4a84fc40e0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4a84fc40e0):
|
|
1334
|
+
- @atlaskit/editor-json-transformer@4.1.12
|
|
1335
|
+
- @atlaskit/editor-test-helpers@7.0.1
|
|
1336
|
+
- @atlaskit/editor-core@101.0.0
|
|
1337
|
+
- @atlaskit/renderer@40.0.0
|
|
1338
|
+
|
|
1339
|
+
## 3.0.2
|
|
1340
|
+
|
|
1341
|
+
- Updated dependencies [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
|
|
1342
|
+
- @atlaskit/editor-json-transformer@4.1.11
|
|
1343
|
+
- @atlaskit/adf-schema@1.5.4
|
|
1344
|
+
- @atlaskit/editor-common@32.0.2
|
|
1345
|
+
- @atlaskit/renderer@39.0.2
|
|
1346
|
+
- @atlaskit/editor-core@100.0.0
|
|
1347
|
+
- @atlaskit/editor-test-helpers@7.0.0
|
|
1348
|
+
|
|
1349
|
+
## 3.0.1
|
|
1350
|
+
|
|
1351
|
+
- Updated dependencies [fc6164c8c2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fc6164c8c2):
|
|
1352
|
+
- @atlaskit/editor-common@32.0.0
|
|
1353
|
+
- @atlaskit/editor-core@99.0.0
|
|
1354
|
+
- @atlaskit/renderer@39.0.0
|
|
1355
|
+
- @atlaskit/editor-json-transformer@4.1.10
|
|
1356
|
+
- @atlaskit/editor-test-helpers@6.3.22
|
|
1357
|
+
- @atlaskit/util-data-test@10.2.1
|
|
1358
|
+
|
|
1359
|
+
## 3.0.0
|
|
1360
|
+
|
|
1361
|
+
- [major][be24d8040f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/be24d8040f):
|
|
1362
|
+
|
|
1363
|
+
- Change parse function to accept context parameter
|
|
1364
|
+
|
|
1365
|
+
## 2.10.3
|
|
1366
|
+
|
|
1367
|
+
- [patch][279b08b325](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/279b08b325):
|
|
1368
|
+
|
|
1369
|
+
- Refactor internal TokenParser interface to receive an object and add immutable shared Context internally
|
|
1370
|
+
|
|
1371
|
+
## 2.10.2
|
|
1372
|
+
|
|
1373
|
+
- [patch][557a2b5734](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/557a2b5734):
|
|
1374
|
+
|
|
1375
|
+
- ED-5788: bump prosemirror-view and prosemirror-model
|
|
1376
|
+
|
|
1377
|
+
## 2.10.1
|
|
1378
|
+
|
|
1379
|
+
- Updated dependencies [69c8d0c19c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/69c8d0c19c):
|
|
1380
|
+
- @atlaskit/editor-common@31.0.0
|
|
1381
|
+
- @atlaskit/editor-core@98.0.0
|
|
1382
|
+
- @atlaskit/editor-test-helpers@6.3.17
|
|
1383
|
+
- @atlaskit/renderer@38.0.0
|
|
1384
|
+
- @atlaskit/editor-json-transformer@4.1.8
|
|
1385
|
+
- @atlaskit/util-data-test@10.0.36
|
|
1386
|
+
|
|
1387
|
+
## 2.10.0
|
|
1388
|
+
|
|
1389
|
+
- [minor][f56a86f8ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f56a86f8ff):
|
|
1390
|
+
|
|
1391
|
+
- Adds in smart card conversion
|
|
1392
|
+
|
|
1393
|
+
## 2.9.11
|
|
1394
|
+
|
|
1395
|
+
- Updated dependencies [85d5d168fd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/85d5d168fd):
|
|
1396
|
+
- @atlaskit/editor-common@30.0.0
|
|
1397
|
+
- @atlaskit/editor-core@97.0.0
|
|
1398
|
+
- @atlaskit/renderer@37.0.0
|
|
1399
|
+
- @atlaskit/editor-json-transformer@4.1.7
|
|
1400
|
+
- @atlaskit/editor-test-helpers@6.3.12
|
|
1401
|
+
- @atlaskit/util-data-test@10.0.34
|
|
1402
|
+
|
|
1403
|
+
## 2.9.10
|
|
1404
|
+
|
|
1405
|
+
- Updated dependencies [dadef80](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dadef80):
|
|
1406
|
+
- @atlaskit/editor-common@29.0.0
|
|
1407
|
+
- @atlaskit/editor-core@96.0.0
|
|
1408
|
+
- @atlaskit/renderer@36.0.0
|
|
1409
|
+
- @atlaskit/editor-json-transformer@4.1.6
|
|
1410
|
+
- @atlaskit/editor-test-helpers@6.3.11
|
|
1411
|
+
- @atlaskit/util-data-test@10.0.33
|
|
1412
|
+
|
|
1413
|
+
## 2.9.9
|
|
1414
|
+
|
|
1415
|
+
- Updated dependencies [0c116d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0c116d6):
|
|
1416
|
+
- @atlaskit/editor-json-transformer@4.1.5
|
|
1417
|
+
- @atlaskit/editor-test-helpers@6.3.8
|
|
1418
|
+
- @atlaskit/editor-common@28.0.2
|
|
1419
|
+
- @atlaskit/renderer@35.0.1
|
|
1420
|
+
- @atlaskit/util-data-test@10.0.32
|
|
1421
|
+
- @atlaskit/editor-core@95.0.0
|
|
1422
|
+
|
|
1423
|
+
## 2.9.8
|
|
1424
|
+
|
|
1425
|
+
- [patch][74bf476](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/74bf476):
|
|
1426
|
+
|
|
1427
|
+
- support codeblock in list
|
|
1428
|
+
|
|
1429
|
+
## 2.9.7
|
|
1430
|
+
|
|
1431
|
+
- Updated dependencies [cbb8cb5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cbb8cb5):
|
|
1432
|
+
- @atlaskit/editor-common@28.0.0
|
|
1433
|
+
- @atlaskit/editor-core@94.0.0
|
|
1434
|
+
- @atlaskit/editor-test-helpers@6.3.7
|
|
1435
|
+
- @atlaskit/renderer@35.0.0
|
|
1436
|
+
- @atlaskit/editor-json-transformer@4.1.4
|
|
1437
|
+
- @atlaskit/util-data-test@10.0.31
|
|
1438
|
+
|
|
1439
|
+
## 2.9.6
|
|
1440
|
+
|
|
1441
|
+
- Updated dependencies [72d37fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/72d37fb):
|
|
1442
|
+
- @atlaskit/editor-common@27.0.0
|
|
1443
|
+
- @atlaskit/editor-core@93.0.0
|
|
1444
|
+
- @atlaskit/editor-test-helpers@6.3.6
|
|
1445
|
+
- @atlaskit/renderer@34.0.0
|
|
1446
|
+
- @atlaskit/editor-json-transformer@4.1.3
|
|
1447
|
+
- @atlaskit/util-data-test@10.0.30
|
|
1448
|
+
|
|
1449
|
+
## 2.9.5
|
|
1450
|
+
|
|
1451
|
+
- Updated dependencies [e858305](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e858305):
|
|
1452
|
+
- @atlaskit/editor-json-transformer@4.1.2
|
|
1453
|
+
- @atlaskit/editor-test-helpers@6.3.5
|
|
1454
|
+
- @atlaskit/renderer@33.0.4
|
|
1455
|
+
- @atlaskit/editor-common@26.0.0
|
|
1456
|
+
- @atlaskit/editor-core@92.0.19
|
|
1457
|
+
|
|
1458
|
+
## 2.9.4
|
|
1459
|
+
|
|
1460
|
+
- [patch][aca2425](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/aca2425):
|
|
1461
|
+
|
|
1462
|
+
- Escaping in common formatter
|
|
1463
|
+
|
|
1464
|
+
## 2.9.3
|
|
1465
|
+
|
|
1466
|
+
- [patch][df74239](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df74239):
|
|
1467
|
+
|
|
1468
|
+
- Parse mailto text
|
|
1469
|
+
|
|
1470
|
+
## 2.9.2
|
|
1471
|
+
|
|
1472
|
+
- [patch][1d9228c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1d9228c):
|
|
1473
|
+
|
|
1474
|
+
- trim escape in link href
|
|
1475
|
+
|
|
1476
|
+
## 2.9.1
|
|
1477
|
+
|
|
1478
|
+
- [patch][75046da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/75046da):
|
|
1479
|
+
|
|
1480
|
+
- macros keyword can be case insensitive
|
|
1481
|
+
|
|
1482
|
+
## 2.9.0
|
|
1483
|
+
|
|
1484
|
+
- [minor][a4b49b2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4b49b2):
|
|
1485
|
+
|
|
1486
|
+
- Parse macros inside table cells
|
|
1487
|
+
|
|
1488
|
+
## 2.8.2
|
|
1489
|
+
|
|
1490
|
+
- Updated dependencies [b3738ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b3738ea):
|
|
1491
|
+
- @atlaskit/editor-common@25.0.0
|
|
1492
|
+
- @atlaskit/editor-core@92.0.0
|
|
1493
|
+
- @atlaskit/renderer@33.0.0
|
|
1494
|
+
- @atlaskit/editor-json-transformer@4.1.1
|
|
1495
|
+
- @atlaskit/editor-test-helpers@6.3.4
|
|
1496
|
+
- @atlaskit/util-data-test@10.0.28
|
|
1497
|
+
|
|
1498
|
+
## 2.8.1
|
|
1499
|
+
|
|
1500
|
+
- [patch][0a28c41](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a28c41):
|
|
1501
|
+
|
|
1502
|
+
- bq. doesn't need a following space
|
|
1503
|
+
|
|
1504
|
+
## 2.8.0
|
|
1505
|
+
|
|
1506
|
+
- [minor][1205725](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1205725):
|
|
1507
|
+
|
|
1508
|
+
- Move schema to its own package
|
|
1509
|
+
|
|
1510
|
+
## 2.7.6
|
|
1511
|
+
|
|
1512
|
+
- Updated dependencies [80f765b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80f765b):
|
|
1513
|
+
- @atlaskit/editor-common@23.0.0
|
|
1514
|
+
- @atlaskit/editor-core@91.0.0
|
|
1515
|
+
- @atlaskit/renderer@32.0.0
|
|
1516
|
+
- @atlaskit/editor-json-transformer@4.0.25
|
|
1517
|
+
- @atlaskit/editor-test-helpers@6.3.2
|
|
1518
|
+
- @atlaskit/util-data-test@10.0.26
|
|
1519
|
+
|
|
1520
|
+
## 2.7.5
|
|
1521
|
+
|
|
1522
|
+
- Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
|
|
1523
|
+
- @atlaskit/theme@7.0.1
|
|
1524
|
+
- @atlaskit/editor-core@90.3.15
|
|
1525
|
+
- @atlaskit/editor-json-transformer@4.0.24
|
|
1526
|
+
- @atlaskit/renderer@31.1.3
|
|
1527
|
+
- @atlaskit/util-data-test@10.0.25
|
|
1528
|
+
- @atlaskit/profilecard@6.1.2
|
|
1529
|
+
- @atlaskit/docs@6.0.0
|
|
1530
|
+
|
|
1531
|
+
## 2.7.4
|
|
1532
|
+
|
|
1533
|
+
- [patch][77df0db](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/77df0db):
|
|
1534
|
+
|
|
1535
|
+
- use em dash for citation
|
|
1536
|
+
|
|
1537
|
+
## 2.7.3
|
|
1538
|
+
|
|
1539
|
+
- Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
|
|
1540
|
+
- @atlaskit/docs@5.2.3
|
|
1541
|
+
- @atlaskit/editor-common@22.2.3
|
|
1542
|
+
- @atlaskit/editor-core@90.2.1
|
|
1543
|
+
- @atlaskit/renderer@31.0.7
|
|
1544
|
+
- @atlaskit/profilecard@6.1.1
|
|
1545
|
+
- @atlaskit/theme@7.0.0
|
|
1546
|
+
|
|
1547
|
+
## 2.7.2
|
|
1548
|
+
|
|
1549
|
+
- Updated dependencies [3a7224a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3a7224a):
|
|
1550
|
+
- @atlaskit/editor-json-transformer@4.0.23
|
|
1551
|
+
- @atlaskit/editor-test-helpers@6.2.23
|
|
1552
|
+
- @atlaskit/editor-core@90.0.0
|
|
1553
|
+
|
|
1554
|
+
## 2.7.1
|
|
1555
|
+
|
|
1556
|
+
- Updated dependencies [7e8b4b9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e8b4b9):
|
|
1557
|
+
- @atlaskit/editor-common@22.0.0
|
|
1558
|
+
- @atlaskit/editor-core@89.0.0
|
|
1559
|
+
- @atlaskit/renderer@31.0.0
|
|
1560
|
+
- @atlaskit/editor-json-transformer@4.0.22
|
|
1561
|
+
- @atlaskit/editor-test-helpers@6.2.19
|
|
1562
|
+
- @atlaskit/util-data-test@10.0.21
|
|
1563
|
+
|
|
1564
|
+
## 2.7.0
|
|
1565
|
+
|
|
1566
|
+
- [minor][37eaced](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/37eaced):
|
|
1567
|
+
|
|
1568
|
+
- Fix media items inside table cells
|
|
1569
|
+
|
|
1570
|
+
## 2.6.2
|
|
1571
|
+
|
|
1572
|
+
- [patch][352fbc9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/352fbc9):
|
|
1573
|
+
|
|
1574
|
+
- Should not ignore double and triple dashes in list item
|
|
1575
|
+
|
|
1576
|
+
## 2.6.1
|
|
1577
|
+
|
|
1578
|
+
- [patch][f11c6e2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f11c6e2):
|
|
1579
|
+
|
|
1580
|
+
- Escape properly
|
|
1581
|
+
|
|
1582
|
+
## 2.6.0
|
|
1583
|
+
|
|
1584
|
+
- [minor][8451c11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8451c11):
|
|
1585
|
+
|
|
1586
|
+
- Fly over links inside table cells
|
|
1587
|
+
|
|
1588
|
+
## 2.5.2
|
|
1589
|
+
|
|
1590
|
+
- [patch][c93eb36](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c93eb36):
|
|
1591
|
+
|
|
1592
|
+
- Do not jump over the link if invalid
|
|
1593
|
+
|
|
1594
|
+
## 2.5.1
|
|
1595
|
+
|
|
1596
|
+
- [patch][fce377d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fce377d):
|
|
1597
|
+
|
|
1598
|
+
- fix issue with mentions in list
|
|
1599
|
+
|
|
1600
|
+
## 2.5.0
|
|
1601
|
+
|
|
1602
|
+
- [minor][6fb9918](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6fb9918):
|
|
1603
|
+
|
|
1604
|
+
- Fix strong bug when ending line finishes with two strong symbols
|
|
1605
|
+
|
|
1606
|
+
## 2.4.6
|
|
1607
|
+
|
|
1608
|
+
- Updated dependencies [9c0844d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0844d):
|
|
1609
|
+
- @atlaskit/editor-common@21.2.2
|
|
1610
|
+
- @atlaskit/renderer@30.2.1
|
|
1611
|
+
- @atlaskit/profilecard@6.0.0
|
|
1612
|
+
|
|
1613
|
+
## 2.4.5
|
|
1614
|
+
|
|
1615
|
+
- [patch][3148c95](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3148c95):
|
|
1616
|
+
|
|
1617
|
+
- add error and success color
|
|
1618
|
+
|
|
1619
|
+
## 2.4.4
|
|
1620
|
+
|
|
1621
|
+
- [patch][01a92e1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/01a92e1):
|
|
1622
|
+
|
|
1623
|
+
- Title for panel and noformat changes
|
|
1624
|
+
|
|
1625
|
+
## 2.4.3
|
|
1626
|
+
|
|
1627
|
+
- [patch][131e012](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/131e012):
|
|
1628
|
+
|
|
1629
|
+
- Port from Jira regex for dashes
|
|
1630
|
+
|
|
1631
|
+
## 2.4.2
|
|
1632
|
+
|
|
1633
|
+
- [patch][171443f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/171443f):
|
|
1634
|
+
|
|
1635
|
+
- Re-wrtie table parser
|
|
1636
|
+
|
|
1637
|
+
## 2.4.1
|
|
1638
|
+
|
|
1639
|
+
- [patch][930ca26](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/930ca26):
|
|
1640
|
+
|
|
1641
|
+
- Fixed issue with library importing from a path within the editor common package
|
|
1642
|
+
|
|
1643
|
+
## 2.4.0
|
|
1644
|
+
|
|
1645
|
+
- [minor][8681fc0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8681fc0):
|
|
1646
|
+
|
|
1647
|
+
- Improve wikimarkup link handling with formatting and titles
|
|
1648
|
+
|
|
1649
|
+
## 2.3.6
|
|
1650
|
+
|
|
1651
|
+
- [patch][56007b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/56007b3):
|
|
1652
|
+
|
|
1653
|
+
- Allow {color} in formatter
|
|
1654
|
+
|
|
1655
|
+
## 2.3.5
|
|
1656
|
+
|
|
1657
|
+
- [patch][d76aa5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d76aa5a):
|
|
1658
|
+
|
|
1659
|
+
- Adds in support for multiple -
|
|
1660
|
+
|
|
1661
|
+
## 2.3.4
|
|
1662
|
+
|
|
1663
|
+
- [patch][7b8efea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7b8efea):
|
|
1664
|
+
|
|
1665
|
+
- Heading doesn't need a following space
|
|
1666
|
+
|
|
1667
|
+
## 2.3.3
|
|
1668
|
+
|
|
1669
|
+
- [patch][5f2efe0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5f2efe0):
|
|
1670
|
+
|
|
1671
|
+
- Change triple dash symbol and update parser rules
|
|
1672
|
+
|
|
1673
|
+
## 2.3.2
|
|
1674
|
+
|
|
1675
|
+
- [patch][904b74c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/904b74c):
|
|
1676
|
+
|
|
1677
|
+
- Fix the behaivor of \\ for line break
|
|
1678
|
+
|
|
1679
|
+
## 2.3.1
|
|
1680
|
+
|
|
1681
|
+
- [patch][5b4474f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b4474f):
|
|
1682
|
+
|
|
1683
|
+
- Improve handling of 'rules' in lists and at end of content
|
|
1684
|
+
|
|
1685
|
+
## 2.3.0
|
|
1686
|
+
|
|
1687
|
+
- [minor][640e01f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/640e01f):
|
|
1688
|
+
|
|
1689
|
+
- Ignore double dash symbol when sticked with alphanumerical, unicode without space, or parenthesis
|
|
1690
|
+
|
|
1691
|
+
## 2.2.0
|
|
1692
|
+
|
|
1693
|
+
- [minor][fd35bec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fd35bec):
|
|
1694
|
+
|
|
1695
|
+
- Refactor tokenizer to accpt the whole input and its position
|
|
1696
|
+
|
|
1697
|
+
## 2.1.27
|
|
1698
|
+
|
|
1699
|
+
- [patch][fd0ed3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fd0ed3a):
|
|
1700
|
+
|
|
1701
|
+
- Changed parser to only start a list if it is led with a single dash
|
|
1702
|
+
|
|
1703
|
+
## 2.1.26
|
|
1704
|
+
|
|
1705
|
+
- Updated dependencies [2c21466](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2c21466):
|
|
1706
|
+
- @atlaskit/editor-common@21.0.0
|
|
1707
|
+
- @atlaskit/editor-core@88.0.0
|
|
1708
|
+
- @atlaskit/renderer@30.0.0
|
|
1709
|
+
- @atlaskit/editor-json-transformer@4.0.21
|
|
1710
|
+
- @atlaskit/editor-test-helpers@6.2.16
|
|
1711
|
+
- @atlaskit/util-data-test@10.0.20
|
|
1712
|
+
|
|
1713
|
+
## 2.1.25
|
|
1714
|
+
|
|
1715
|
+
- [patch][b64fc55](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b64fc55):
|
|
1716
|
+
|
|
1717
|
+
- Adds roundtrip for external image
|
|
1718
|
+
|
|
1719
|
+
## 2.1.24
|
|
1720
|
+
|
|
1721
|
+
- Updated dependencies [a6dd6e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a6dd6e3):
|
|
1722
|
+
- @atlaskit/editor-common@20.3.1
|
|
1723
|
+
- @atlaskit/renderer@29.3.1
|
|
1724
|
+
- @atlaskit/profilecard@5.0.0
|
|
1725
|
+
|
|
1726
|
+
## 2.1.23
|
|
1727
|
+
|
|
1728
|
+
- [patch][7ca5551](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ca5551):
|
|
1729
|
+
|
|
1730
|
+
- allow list to jump over empty lines in macro successfully
|
|
1731
|
+
|
|
1732
|
+
## 2.1.22
|
|
1733
|
+
|
|
1734
|
+
- [patch][674b3d9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/674b3d9):
|
|
1735
|
+
|
|
1736
|
+
- convert unknow macros to plain text
|
|
1737
|
+
|
|
1738
|
+
## 2.1.21
|
|
1739
|
+
|
|
1740
|
+
- [patch][c6763e2" d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6763e2"
|
|
1741
|
+
d):
|
|
1742
|
+
|
|
1743
|
+
- new pattern for mention
|
|
1744
|
+
|
|
1745
|
+
## 2.1.20
|
|
1746
|
+
|
|
1747
|
+
- [patch] Make common-formatter more generic for citation and monospace [c727890](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c727890)
|
|
1748
|
+
|
|
1749
|
+
## 2.1.19
|
|
1750
|
+
|
|
1751
|
+
- [patch] Fix link format with | in url [d4a84b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d4a84b3)
|
|
1752
|
+
|
|
1753
|
+
## 2.1.18
|
|
1754
|
+
|
|
1755
|
+
- [patch] space in list item content doesn't matter [d56abbd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d56abbd)
|
|
1756
|
+
|
|
1757
|
+
## 2.1.17
|
|
1758
|
+
|
|
1759
|
+
- [patch] List item symbol followed by line break is not valid [df6c74a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df6c74a)
|
|
1760
|
+
|
|
1761
|
+
## 2.1.16
|
|
1762
|
+
|
|
1763
|
+
- [patch] Fix common-formater ending symbol behavior and use external media for links in media [b1926a8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1926a8)
|
|
1764
|
+
|
|
1765
|
+
## 2.1.15
|
|
1766
|
+
|
|
1767
|
+
- [patch] Updated dependencies [052ce89](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/052ce89)
|
|
1768
|
+
- @atlaskit/editor-json-transformer@4.0.19
|
|
1769
|
+
- @atlaskit/editor-test-helpers@6.2.8
|
|
1770
|
+
- @atlaskit/editor-core@87.0.0
|
|
1771
|
+
- @atlaskit/editor-common@20.1.2
|
|
1772
|
+
|
|
1773
|
+
## 2.1.14
|
|
1774
|
+
|
|
1775
|
+
- [patch] Ignore heading text when fails [d2ac796](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d2ac796)
|
|
1776
|
+
|
|
1777
|
+
## 2.1.13
|
|
1778
|
+
|
|
1779
|
+
- [patch] common formater can be valid if surrounded by non alphanumeric characters [5576cc2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5576cc2)
|
|
1780
|
+
|
|
1781
|
+
## 2.1.12
|
|
1782
|
+
|
|
1783
|
+
- [patch] list items should allow leading spaces [2aad896](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2aad896)
|
|
1784
|
+
|
|
1785
|
+
## 2.1.11
|
|
1786
|
+
|
|
1787
|
+
- [patch] Adds escape for macro, mention and media [8a89d20](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a89d20)
|
|
1788
|
+
|
|
1789
|
+
## 2.1.10
|
|
1790
|
+
|
|
1791
|
+
- [patch] Updated dependencies [b1ce691](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1ce691)
|
|
1792
|
+
- @atlaskit/editor-common@20.0.0
|
|
1793
|
+
- @atlaskit/editor-core@86.0.0
|
|
1794
|
+
- @atlaskit/renderer@29.0.0
|
|
1795
|
+
- @atlaskit/editor-json-transformer@4.0.18
|
|
1796
|
+
- @atlaskit/editor-test-helpers@6.2.7
|
|
1797
|
+
- @atlaskit/util-data-test@10.0.16
|
|
1798
|
+
|
|
1799
|
+
## 2.1.9
|
|
1800
|
+
|
|
1801
|
+
- [patch] Updated dependencies [6e510d8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e510d8)
|
|
1802
|
+
- @atlaskit/editor-core@85.5.1
|
|
1803
|
+
- @atlaskit/editor-common@19.3.2
|
|
1804
|
+
- @atlaskit/renderer@28.0.0
|
|
1805
|
+
|
|
1806
|
+
## 2.1.8
|
|
1807
|
+
|
|
1808
|
+
- [patch] Updated dependencies [2afa60d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2afa60d)
|
|
1809
|
+
- @atlaskit/editor-common@19.0.0
|
|
1810
|
+
- @atlaskit/editor-core@85.0.0
|
|
1811
|
+
- @atlaskit/renderer@27.0.0
|
|
1812
|
+
- @atlaskit/editor-json-transformer@4.0.17
|
|
1813
|
+
- @atlaskit/editor-test-helpers@6.2.6
|
|
1814
|
+
- @atlaskit/util-data-test@10.0.14
|
|
1815
|
+
|
|
1816
|
+
## 2.1.7
|
|
1817
|
+
|
|
1818
|
+
- [patch] Updated dependencies [8b2c4d3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b2c4d3)
|
|
1819
|
+
- [patch] Updated dependencies [3302d51](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3302d51)
|
|
1820
|
+
- @atlaskit/editor-common@18.0.0
|
|
1821
|
+
- @atlaskit/editor-core@84.0.0
|
|
1822
|
+
- @atlaskit/renderer@26.0.0
|
|
1823
|
+
- @atlaskit/editor-json-transformer@4.0.16
|
|
1824
|
+
- @atlaskit/editor-test-helpers@6.2.5
|
|
1825
|
+
- @atlaskit/util-data-test@10.0.12
|
|
1826
|
+
|
|
1827
|
+
## 2.1.6
|
|
1828
|
+
|
|
1829
|
+
- [patch] Updated dependencies [23c7eca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/23c7eca)
|
|
1830
|
+
- @atlaskit/editor-json-transformer@4.0.15
|
|
1831
|
+
- @atlaskit/editor-test-helpers@6.2.4
|
|
1832
|
+
- @atlaskit/util-data-test@10.0.11
|
|
1833
|
+
- @atlaskit/editor-core@83.0.0
|
|
1834
|
+
- @atlaskit/renderer@25.0.0
|
|
1835
|
+
|
|
1836
|
+
## 2.1.5
|
|
1837
|
+
|
|
1838
|
+
- [patch] change grey to gray to keep consistent across editor pkgs [1b2a0b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1b2a0b3)
|
|
1839
|
+
|
|
1840
|
+
## 2.1.4
|
|
1841
|
+
|
|
1842
|
+
- [patch] Ignore link text in link format [dc46cae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc46cae)
|
|
1843
|
+
|
|
1844
|
+
## 2.1.3
|
|
1845
|
+
|
|
1846
|
+
- [patch] Updated dependencies [ef76f1f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ef76f1f)
|
|
1847
|
+
- @atlaskit/editor-json-transformer@4.0.13
|
|
1848
|
+
- @atlaskit/editor-common@17.0.1
|
|
1849
|
+
- @atlaskit/editor-core@82.0.0
|
|
1850
|
+
- @atlaskit/editor-test-helpers@6.1.3
|
|
1851
|
+
|
|
1852
|
+
## 2.1.2
|
|
1853
|
+
|
|
1854
|
+
- [patch] Updated dependencies [927ae63](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/927ae63)
|
|
1855
|
+
- @atlaskit/editor-common@17.0.0
|
|
1856
|
+
- @atlaskit/editor-core@81.0.0
|
|
1857
|
+
- @atlaskit/util-data-test@10.0.10
|
|
1858
|
+
- @atlaskit/editor-test-helpers@6.1.2
|
|
1859
|
+
- @atlaskit/renderer@24.0.0
|
|
1860
|
+
- @atlaskit/editor-json-transformer@4.0.12
|
|
1861
|
+
|
|
1862
|
+
## 2.1.1
|
|
1863
|
+
|
|
1864
|
+
- [patch] Use proper marks for texts under blockquote [7d31a25](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d31a25)
|
|
1865
|
+
|
|
1866
|
+
## 2.1.0
|
|
1867
|
+
|
|
1868
|
+
- [minor] Support an errorCallback for collection fail information [86e0d88](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/86e0d88)
|
|
1869
|
+
|
|
1870
|
+
## 2.0.28
|
|
1871
|
+
|
|
1872
|
+
- [patch] Updated dependencies [2a6410f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2a6410f)
|
|
1873
|
+
- @atlaskit/editor-common@16.2.0
|
|
1874
|
+
- @atlaskit/editor-core@80.5.0
|
|
1875
|
+
- @atlaskit/renderer@23.0.0
|
|
1876
|
+
|
|
1877
|
+
## 2.0.27
|
|
1878
|
+
|
|
1879
|
+
- [patch] link format takes higher priority over common formatters [b05205f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b05205f)
|
|
1880
|
+
|
|
1881
|
+
## 2.0.26
|
|
1882
|
+
|
|
1883
|
+
- [patch] fix link regex to know where to stop [ee04ad4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ee04ad4)
|
|
1884
|
+
|
|
1885
|
+
## 2.0.25
|
|
1886
|
+
|
|
1887
|
+
- [patch] Fix encoder for missing closing \! [c585e27](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c585e27)
|
|
1888
|
+
|
|
1889
|
+
## 2.0.24
|
|
1890
|
+
|
|
1891
|
+
- [patch] New rules for formatter [50edbb0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50edbb0)
|
|
1892
|
+
|
|
1893
|
+
## 2.0.23
|
|
1894
|
+
|
|
1895
|
+
- [patch] should convert content inside monospace as plain text [f5e9f01](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f5e9f01)
|
|
1896
|
+
|
|
1897
|
+
## 2.0.22
|
|
1898
|
+
|
|
1899
|
+
- [patch] Sometimes the leading dashes is not list [7cf3406](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7cf3406)
|
|
1900
|
+
|
|
1901
|
+
## 2.0.21
|
|
1902
|
+
|
|
1903
|
+
- [patch] Updated dependencies [6e1d642](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e1d642)
|
|
1904
|
+
- @atlaskit/editor-common@16.0.0
|
|
1905
|
+
- @atlaskit/editor-core@80.0.0
|
|
1906
|
+
- @atlaskit/renderer@22.0.0
|
|
1907
|
+
- @atlaskit/editor-json-transformer@4.0.11
|
|
1908
|
+
- @atlaskit/editor-test-helpers@6.0.9
|
|
1909
|
+
- @atlaskit/util-data-test@10.0.9
|
|
1910
|
+
|
|
1911
|
+
## 2.0.20
|
|
1912
|
+
|
|
1913
|
+
- [patch] Convert file link to media group [d9331e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d9331e6)
|
|
1914
|
+
|
|
1915
|
+
## 2.0.19
|
|
1916
|
+
|
|
1917
|
+
- [patch] Updated transformation of productivity emoji [83cdd9f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/83cdd9f)
|
|
1918
|
+
|
|
1919
|
+
## 2.0.18
|
|
1920
|
+
|
|
1921
|
+
- [patch] Convert to mediaSingle with width and height [5b1d869](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b1d869)
|
|
1922
|
+
|
|
1923
|
+
## 2.0.17
|
|
1924
|
+
|
|
1925
|
+
- [patch] Convert to same cell types [9571a76](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9571a76)
|
|
1926
|
+
|
|
1927
|
+
## 2.0.16
|
|
1928
|
+
|
|
1929
|
+
- [patch] keep width and height when transform back to wiki attachment [4acc88a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4acc88a)
|
|
1930
|
+
|
|
1931
|
+
## 2.0.15
|
|
1932
|
+
|
|
1933
|
+
- [patch] should parse empty wiki [03f0b1b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/03f0b1b)
|
|
1934
|
+
|
|
1935
|
+
## 2.0.14
|
|
1936
|
+
|
|
1937
|
+
- [patch] Fix color error [2b513c5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b513c5)
|
|
1938
|
+
|
|
1939
|
+
## 2.0.13
|
|
1940
|
+
|
|
1941
|
+
- [patch] Keep title of code block [95f9654](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/95f9654)
|
|
1942
|
+
|
|
1943
|
+
## 2.0.12
|
|
1944
|
+
|
|
1945
|
+
- [patch] Trailing spaces of a table should not create a empty cell [eade148](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/eade148)
|
|
1946
|
+
|
|
1947
|
+
## 2.0.11
|
|
1948
|
+
|
|
1949
|
+
- [patch] Updated dependencies [7545979](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7545979)
|
|
1950
|
+
- @atlaskit/editor-common@15.0.0
|
|
1951
|
+
- @atlaskit/editor-core@79.0.0
|
|
1952
|
+
- @atlaskit/renderer@21.0.0
|
|
1953
|
+
- @atlaskit/editor-json-transformer@4.0.8
|
|
1954
|
+
- @atlaskit/editor-test-helpers@6.0.6
|
|
1955
|
+
- @atlaskit/util-data-test@10.0.8
|
|
1956
|
+
|
|
1957
|
+
## 2.0.10
|
|
1958
|
+
|
|
1959
|
+
- [patch] Updated dependencies [911a570](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/911a570)
|
|
1960
|
+
- @atlaskit/editor-json-transformer@4.0.7
|
|
1961
|
+
- @atlaskit/renderer@20.1.1
|
|
1962
|
+
- @atlaskit/editor-test-helpers@6.0.5
|
|
1963
|
+
- @atlaskit/editor-core@78.0.0
|
|
1964
|
+
|
|
1965
|
+
## 2.0.9
|
|
1966
|
+
|
|
1967
|
+
- [patch] Updated dependencies [b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
|
|
1968
|
+
- @atlaskit/renderer@20.0.11
|
|
1969
|
+
- @atlaskit/util-data-test@10.0.7
|
|
1970
|
+
- @atlaskit/profilecard@4.0.8
|
|
1971
|
+
- @atlaskit/editor-common@14.0.11
|
|
1972
|
+
- @atlaskit/editor-test-helpers@6.0.3
|
|
1973
|
+
- @atlaskit/editor-json-transformer@4.0.6
|
|
1974
|
+
- @atlaskit/editor-core@77.1.4
|
|
1975
|
+
|
|
1976
|
+
## 2.0.8
|
|
1977
|
+
|
|
1978
|
+
- [patch] Convert all media items to thumbnail [eb0f1f4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/eb0f1f4)
|
|
1979
|
+
|
|
1980
|
+
## 2.0.7
|
|
1981
|
+
|
|
1982
|
+
- [patch] whitelist supported language for wiki markup [a3edfda](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a3edfda)
|
|
1983
|
+
|
|
1984
|
+
## 2.0.6
|
|
1985
|
+
|
|
1986
|
+
- [patch] Updated dependencies [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
|
|
1987
|
+
- @atlaskit/theme@6.0.0
|
|
1988
|
+
- @atlaskit/profilecard@4.0.7
|
|
1989
|
+
- @atlaskit/renderer@20.0.7
|
|
1990
|
+
- @atlaskit/editor-core@77.0.14
|
|
1991
|
+
- @atlaskit/docs@5.0.6
|
|
1992
|
+
|
|
1993
|
+
## 2.0.5
|
|
1994
|
+
|
|
1995
|
+
- [patch] wikimarkup parser should parse media item with ( and ) correctly [76adf36](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76adf36)
|
|
1996
|
+
|
|
1997
|
+
## 2.0.4
|
|
1998
|
+
|
|
1999
|
+
- [none] Updated dependencies [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
|
|
2000
|
+
- @atlaskit/profilecard@4.0.3
|
|
2001
|
+
- @atlaskit/renderer@20.0.0
|
|
2002
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2003
|
+
- @atlaskit/editor-json-transformer@4.0.4
|
|
2004
|
+
- @atlaskit/editor-core@77.0.0
|
|
2005
|
+
- @atlaskit/editor-test-helpers@6.0.0
|
|
2006
|
+
- @atlaskit/editor-common@14.0.0
|
|
2007
|
+
- [none] Updated dependencies [61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
|
|
2008
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2009
|
+
- @atlaskit/profilecard@4.0.3
|
|
2010
|
+
- @atlaskit/editor-common@14.0.0
|
|
2011
|
+
- @atlaskit/editor-test-helpers@6.0.0
|
|
2012
|
+
- @atlaskit/renderer@20.0.0
|
|
2013
|
+
- @atlaskit/editor-json-transformer@4.0.4
|
|
2014
|
+
- @atlaskit/editor-core@77.0.0
|
|
2015
|
+
- [none] Updated dependencies [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
|
|
2016
|
+
- @atlaskit/profilecard@4.0.3
|
|
2017
|
+
- @atlaskit/renderer@20.0.0
|
|
2018
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2019
|
+
- @atlaskit/editor-json-transformer@4.0.4
|
|
2020
|
+
- @atlaskit/editor-core@77.0.0
|
|
2021
|
+
- @atlaskit/editor-test-helpers@6.0.0
|
|
2022
|
+
- @atlaskit/editor-common@14.0.0
|
|
2023
|
+
- [none] Updated dependencies [c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
|
|
2024
|
+
- @atlaskit/renderer@20.0.0
|
|
2025
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2026
|
+
- @atlaskit/profilecard@4.0.3
|
|
2027
|
+
- @atlaskit/editor-common@14.0.0
|
|
2028
|
+
- @atlaskit/editor-test-helpers@6.0.0
|
|
2029
|
+
- @atlaskit/editor-json-transformer@4.0.4
|
|
2030
|
+
- @atlaskit/editor-core@77.0.0
|
|
2031
|
+
- [patch] Updated dependencies [d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
|
|
2032
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2033
|
+
- @atlaskit/profilecard@4.0.3
|
|
2034
|
+
- @atlaskit/editor-json-transformer@4.0.4
|
|
2035
|
+
- @atlaskit/editor-common@14.0.0
|
|
2036
|
+
- @atlaskit/renderer@20.0.0
|
|
2037
|
+
- @atlaskit/editor-test-helpers@6.0.0
|
|
2038
|
+
- @atlaskit/editor-core@77.0.0
|
|
2039
|
+
|
|
2040
|
+
## 2.0.3
|
|
2041
|
+
|
|
2042
|
+
- [patch] Updated dependencies [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
|
|
2043
|
+
- @atlaskit/renderer@19.2.6
|
|
2044
|
+
- @atlaskit/util-data-test@10.0.2
|
|
2045
|
+
- @atlaskit/profilecard@4.0.2
|
|
2046
|
+
- @atlaskit/editor-json-transformer@4.0.3
|
|
2047
|
+
- @atlaskit/editor-common@13.2.7
|
|
2048
|
+
- @atlaskit/editor-test-helpers@5.1.2
|
|
2049
|
+
- @atlaskit/editor-core@76.4.5
|
|
2050
|
+
- @atlaskit/theme@5.1.2
|
|
2051
|
+
- @atlaskit/docs@5.0.2
|
|
2052
|
+
|
|
2053
|
+
## 2.0.2
|
|
2054
|
+
|
|
2055
|
+
- [patch] Bump prosemirror-model to 1.6 in order to use toDebugString on Text node spec [fdd5c5d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fdd5c5d)
|
|
2056
|
+
- [none] Updated dependencies [fdd5c5d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fdd5c5d)
|
|
2057
|
+
- @atlaskit/renderer@19.2.5
|
|
2058
|
+
- @atlaskit/editor-common@13.2.6
|
|
2059
|
+
- @atlaskit/editor-test-helpers@5.1.1
|
|
2060
|
+
- @atlaskit/editor-json-transformer@4.0.2
|
|
2061
|
+
- @atlaskit/editor-core@76.4.2
|
|
2062
|
+
|
|
2063
|
+
## 2.0.1
|
|
2064
|
+
|
|
2065
|
+
- [none] Updated dependencies [25353c3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25353c3)
|
|
2066
|
+
- @atlaskit/editor-core@76.0.0
|
|
2067
|
+
- @atlaskit/editor-test-helpers@5.0.1
|
|
2068
|
+
- @atlaskit/editor-json-transformer@4.0.1
|
|
2069
|
+
- [patch] Updated dependencies [38c0543](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/38c0543)
|
|
2070
|
+
- @atlaskit/editor-core@76.0.0
|
|
2071
|
+
- @atlaskit/editor-test-helpers@5.0.1
|
|
2072
|
+
- @atlaskit/editor-json-transformer@4.0.1
|
|
2073
|
+
|
|
2074
|
+
## 2.0.0
|
|
2075
|
+
|
|
2076
|
+
- [major] Updated dependencies [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
|
2077
|
+
- @atlaskit/renderer@19.0.0
|
|
2078
|
+
- @atlaskit/util-data-test@10.0.0
|
|
2079
|
+
- @atlaskit/profilecard@4.0.0
|
|
2080
|
+
- @atlaskit/editor-json-transformer@4.0.0
|
|
2081
|
+
- @atlaskit/editor-common@13.0.0
|
|
2082
|
+
- @atlaskit/editor-test-helpers@5.0.0
|
|
2083
|
+
- @atlaskit/editor-core@75.0.0
|
|
2084
|
+
- @atlaskit/theme@5.0.0
|
|
2085
|
+
- @atlaskit/docs@5.0.0
|
|
2086
|
+
- [major] Updated dependencies [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
2087
|
+
- @atlaskit/renderer@19.0.0
|
|
2088
|
+
- @atlaskit/util-data-test@10.0.0
|
|
2089
|
+
- @atlaskit/profilecard@4.0.0
|
|
2090
|
+
- @atlaskit/editor-json-transformer@4.0.0
|
|
2091
|
+
- @atlaskit/editor-core@75.0.0
|
|
2092
|
+
- @atlaskit/editor-test-helpers@5.0.0
|
|
2093
|
+
- @atlaskit/editor-common@13.0.0
|
|
2094
|
+
- @atlaskit/theme@5.0.0
|
|
2095
|
+
- @atlaskit/docs@5.0.0
|
|
2096
|
+
|
|
2097
|
+
## 1.1.11
|
|
2098
|
+
|
|
2099
|
+
- [none] Updated dependencies [5f6ec84](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5f6ec84)
|
|
2100
|
+
- @atlaskit/editor-core@74.0.17
|
|
2101
|
+
- @atlaskit/editor-test-helpers@4.2.4
|
|
2102
|
+
- @atlaskit/renderer@18.2.18
|
|
2103
|
+
- @atlaskit/editor-common@12.0.0
|
|
2104
|
+
- @atlaskit/editor-json-transformer@3.1.8
|
|
2105
|
+
- [patch] Updated dependencies [5958588](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5958588)
|
|
2106
|
+
- @atlaskit/editor-core@74.0.17
|
|
2107
|
+
- @atlaskit/editor-test-helpers@4.2.4
|
|
2108
|
+
- @atlaskit/renderer@18.2.18
|
|
2109
|
+
- @atlaskit/editor-common@12.0.0
|
|
2110
|
+
- @atlaskit/editor-json-transformer@3.1.8
|
|
2111
|
+
|
|
2112
|
+
## 1.1.10
|
|
2113
|
+
|
|
2114
|
+
- [patch] Adds roundtrip testing for nodes and applys fixes [83a2ec7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/83a2ec7)
|
|
2115
|
+
|
|
2116
|
+
## 1.1.9
|
|
2117
|
+
|
|
2118
|
+
- [patch] Updated dependencies [af0cde6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/af0cde6)
|
|
2119
|
+
- @atlaskit/editor-core@74.0.0
|
|
2120
|
+
- @atlaskit/editor-test-helpers@4.2.2
|
|
2121
|
+
- @atlaskit/editor-json-transformer@3.1.7
|
|
2122
|
+
|
|
2123
|
+
## 1.1.8
|
|
2124
|
+
|
|
2125
|
+
- [patch] Add missing dependencies to packages to get the website to build [99446e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99446e3)
|
|
2126
|
+
|
|
2127
|
+
- [none] Updated dependencies [99446e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99446e3)
|
|
2128
|
+
- @atlaskit/renderer@18.2.11
|
|
2129
|
+
- @atlaskit/profilecard@3.13.1
|
|
2130
|
+
- @atlaskit/docs@4.2.2
|
|
2131
|
+
- [none] Updated dependencies [9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
|
|
2132
|
+
- @atlaskit/renderer@18.2.11
|
|
2133
|
+
- @atlaskit/docs@4.2.2
|
|
2134
|
+
|
|
2135
|
+
## 1.1.7
|
|
2136
|
+
|
|
2137
|
+
- [patch] Updated dependencies [8d5053e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d5053e)
|
|
2138
|
+
- @atlaskit/util-data-test@9.1.15
|
|
2139
|
+
- @atlaskit/renderer@18.2.9
|
|
2140
|
+
- @atlaskit/editor-json-transformer@3.1.5
|
|
2141
|
+
- @atlaskit/editor-common@11.3.8
|
|
2142
|
+
- @atlaskit/editor-test-helpers@4.1.9
|
|
2143
|
+
- @atlaskit/editor-core@73.9.5
|
|
2144
|
+
|
|
2145
|
+
## 1.1.6
|
|
2146
|
+
|
|
2147
|
+
- [patch] Updated dependencies [0cf2f52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0cf2f52)
|
|
2148
|
+
- @atlaskit/util-data-test@9.1.14
|
|
2149
|
+
- @atlaskit/renderer@18.2.7
|
|
2150
|
+
- @atlaskit/editor-json-transformer@3.1.4
|
|
2151
|
+
- @atlaskit/editor-core@73.9.2
|
|
2152
|
+
- @atlaskit/editor-test-helpers@4.1.8
|
|
2153
|
+
- @atlaskit/editor-common@11.3.7
|
|
2154
|
+
|
|
2155
|
+
## 1.1.5
|
|
2156
|
+
|
|
2157
|
+
- [patch] Fixes an issue where double line breaks doesn’t start a new paragraph [8242007](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8242007)
|
|
2158
|
+
|
|
2159
|
+
## 1.1.4
|
|
2160
|
+
|
|
2161
|
+
- [patch] Remove pinned prosemirror-model@1.4.0 and move back to caret ranges for prosemirror-model@^1.5.0 [4faccc0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4faccc0)
|
|
2162
|
+
- [patch] Updated dependencies [4faccc0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4faccc0)
|
|
2163
|
+
- @atlaskit/renderer@18.2.5
|
|
2164
|
+
- @atlaskit/editor-common@11.3.0
|
|
2165
|
+
- @atlaskit/editor-test-helpers@4.1.5
|
|
2166
|
+
- @atlaskit/editor-json-transformer@3.1.3
|
|
2167
|
+
- @atlaskit/editor-core@73.8.6
|
|
2168
|
+
|
|
2169
|
+
## 1.1.3
|
|
2170
|
+
|
|
2171
|
+
- [patch] Remove the additional rows when encode code block from ADF to wikiMarkup [7b81171](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7b81171)
|
|
2172
|
+
|
|
2173
|
+
## 1.1.2
|
|
2174
|
+
|
|
2175
|
+
- [patch] remove the additional whitespace in encoder [3a28d31](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3a28d31)
|
|
2176
|
+
|
|
2177
|
+
## 1.1.1
|
|
2178
|
+
|
|
2179
|
+
- [patch] Clean Changelogs - remove duplicates and empty entries [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
|
2180
|
+
- [none] Updated dependencies [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
|
2181
|
+
- @atlaskit/util-data-test@9.1.13
|
|
2182
|
+
- @atlaskit/editor-json-transformer@3.1.2
|
|
2183
|
+
- @atlaskit/renderer@18.1.2
|
|
2184
|
+
- @atlaskit/editor-core@73.7.5
|
|
2185
|
+
- @atlaskit/editor-test-helpers@4.1.2
|
|
2186
|
+
- @atlaskit/editor-common@11.2.1
|
|
2187
|
+
- @atlaskit/theme@4.0.4
|
|
2188
|
+
|
|
2189
|
+
## 1.1.0
|
|
2190
|
+
|
|
2191
|
+
- [none] Updated dependencies [7217164](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7217164)
|
|
2192
|
+
- @atlaskit/editor-core@73.5.0
|
|
2193
|
+
- @atlaskit/editor-test-helpers@4.1.0
|
|
2194
|
+
- @atlaskit/renderer@18.1.0
|
|
2195
|
+
- @atlaskit/util-data-test@9.1.11
|
|
2196
|
+
- @atlaskit/editor-common@11.1.0
|
|
2197
|
+
- @atlaskit/editor-json-transformer@3.1.0
|
|
2198
|
+
|
|
2199
|
+
## 1.0.10
|
|
2200
|
+
|
|
2201
|
+
- [patch] Update and lock prosemirror-model version to 1.4.0 [febf753](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/febf753)
|
|
2202
|
+
- [none] Updated dependencies [febf753](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/febf753)
|
|
2203
|
+
- @atlaskit/renderer@18.0.3
|
|
2204
|
+
- @atlaskit/editor-common@11.0.6
|
|
2205
|
+
- @atlaskit/editor-test-helpers@4.0.7
|
|
2206
|
+
- @atlaskit/editor-json-transformer@3.0.11
|
|
2207
|
+
- @atlaskit/editor-core@73.4.4
|
|
2208
|
+
|
|
2209
|
+
## 1.0.9
|
|
2210
|
+
|
|
2211
|
+
- [patch] Adding breakout to extensions [3d1b0ab](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d1b0ab)
|
|
2212
|
+
- [none] Updated dependencies [3d1b0ab](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d1b0ab)
|
|
2213
|
+
- @atlaskit/editor-test-helpers@4.0.6
|
|
2214
|
+
- @atlaskit/editor-core@73.4.3
|
|
2215
|
+
- @atlaskit/editor-common@11.0.5
|
|
2216
|
+
|
|
2217
|
+
## 1.0.8
|
|
2218
|
+
|
|
2219
|
+
- [patch] Updated dependencies [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
|
2220
|
+
- @atlaskit/util-data-test@9.1.10
|
|
2221
|
+
- @atlaskit/editor-json-transformer@3.0.9
|
|
2222
|
+
- @atlaskit/renderer@18.0.0
|
|
2223
|
+
- @atlaskit/editor-core@73.0.0
|
|
2224
|
+
- @atlaskit/editor-test-helpers@4.0.3
|
|
2225
|
+
- @atlaskit/editor-common@11.0.0
|
|
2226
|
+
- @atlaskit/theme@4.0.0
|
|
2227
|
+
- @atlaskit/docs@4.0.0
|
|
2228
|
+
|
|
2229
|
+
## 1.0.7
|
|
2230
|
+
|
|
2231
|
+
- [patch] Updated dependencies [1c87e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c87e5a)
|
|
2232
|
+
- @atlaskit/editor-test-helpers@4.0.2
|
|
2233
|
+
- @atlaskit/editor-common@10.1.9
|
|
2234
|
+
|
|
2235
|
+
## 1.0.6
|
|
2236
|
+
|
|
2237
|
+
- [patch] ED-4689 add \_\_confluenceMetadata to link mark schema [e76e4b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e76e4b4)
|
|
2238
|
+
- [patch] Updated dependencies [e76e4b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e76e4b4)
|
|
2239
|
+
- @atlaskit/editor-common@10.1.6
|
|
2240
|
+
|
|
2241
|
+
## 1.0.5
|
|
2242
|
+
|
|
2243
|
+
- [patch] Fix transformer throwing error when given an empty string to parse [bda0aac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bda0aac)
|
|
2244
|
+
|
|
2245
|
+
## 1.0.4
|
|
2246
|
+
|
|
2247
|
+
- [patch] Fix issue where providing a custom schema would crash the transformer [c5f7851](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c5f7851)
|
|
2248
|
+
|
|
2249
|
+
## 1.0.3
|
|
2250
|
+
|
|
2251
|
+
- [none] Updated dependencies [febc44d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/febc44d)
|
|
2252
|
+
- @atlaskit/editor-core@72.0.0
|
|
2253
|
+
- @atlaskit/editor-test-helpers@4.0.0
|
|
2254
|
+
- @atlaskit/renderer@17.0.0
|
|
2255
|
+
- @atlaskit/util-data-test@9.1.4
|
|
2256
|
+
- @atlaskit/editor-common@10.0.0
|
|
2257
|
+
- @atlaskit/editor-json-transformer@3.0.7
|
|
2258
|
+
|
|
2259
|
+
## 1.0.2
|
|
2260
|
+
|
|
2261
|
+
- [patch] Fix a issue where last table row is duplicated in Wiki parser [2fd3446](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2fd3446)
|
|
2262
|
+
|
|
2263
|
+
## 1.0.1
|
|
2264
|
+
|
|
2265
|
+
- [none] Updated dependencies [8fd4dd1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8fd4dd1)
|
|
2266
|
+
- @atlaskit/editor-test-helpers@3.1.8
|
|
2267
|
+
- @atlaskit/editor-common@9.3.9
|
|
2268
|
+
|
|
2269
|
+
## 1.0.0
|
|
2270
|
+
|
|
2271
|
+
- [major] Migrate wikimarkup transformer [b8cab45](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b8cab45)
|
|
2272
|
+
|
|
2273
|
+
## 0.0.15
|
|
2274
|
+
|
|
2275
|
+
- [patch] ED-4336 support loading dynamic/"auto" tables from confluence to fixed-width tables [0c2f72a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0c2f72a)
|
|
2276
|
+
|
|
2277
|
+
## 0.0.13
|
|
2278
|
+
|
|
2279
|
+
- [patch] Added missing dependencies and added lint rule to catch them all [0672503](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0672503)
|
|
2280
|
+
|
|
2281
|
+
## 0.0.12
|
|
2282
|
+
|
|
2283
|
+
- [patch] Lots of new nodes support in wiki markup parser [08071ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/08071ea)
|
|
2284
|
+
|
|
2285
|
+
## 0.0.10
|
|
2286
|
+
|
|
2287
|
+
- [patch] change table node builder constructor for tests, remove tableWithAttrs [cf43535](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cf43535)
|
|
2288
|
+
|
|
2289
|
+
## 0.0.8
|
|
2290
|
+
|
|
2291
|
+
- [patch] ED-3939: support macros, most of text effects, emoji, mentions, tables and lists [d173a70](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d173a70)
|
|
2292
|
+
|
|
2293
|
+
## 0.0.6
|
|
2294
|
+
|
|
2295
|
+
- [patch] Upgrading ProseMirror Libs [35d14d5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d14d5)
|
|
2296
|
+
|
|
2297
|
+
## 0.0.5
|
|
2298
|
+
|
|
2299
|
+
- [patch] Add "sideEffects: false" to AKM2 packages to allow consumer's to tree-shake [c3b018a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c3b018a)
|