Skip to content

Commit bfa6f4b

Browse files
committed
add migration from 0.50.x to 0.60.0
1 parent cb2587c commit bfa6f4b

File tree

14 files changed

+6330
-2490
lines changed

14 files changed

+6330
-2490
lines changed

.idea/codeStyles/Project.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator-enh.xml

Lines changed: 20 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Library-Classes-0-50-x.md

Lines changed: 876 additions & 0 deletions
Large diffs are not rendered by default.

Library-Classes-0-60-0.md

Lines changed: 973 additions & 0 deletions
Large diffs are not rendered by default.

Moved-Classes-0-50-x-to-0-60-0.md

Lines changed: 274 additions & 0 deletions
Large diffs are not rendered by default.

VERSION-TODO.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,10 @@ Please give feedback on the upcoming changes if you have concerns about breaking
213213

214214
## 0.59.124
215215

216+
* Add: `migrate flexmark-java 0_50_x to 0_60_0.xml` IntelliJ Migration
217+
* Fix: rename abbreviation `FormatOptions` `AbbreviationFormatOptions`
218+
* Fix: rename definition `FormatOptions` `DefinitionFormatOptions`
219+
* Fix: rename task list `FormatOptions` `TaskListFormatOptions`
216220
* Fix: formatter core test for invalid indentation
217221
* Fix: formatter `EqualizeTrailingMarker.EQUALIZE` adding marker when there is none.
218222
* Fix: missing `TextContainer` implementation by `TypographicSmarts`
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<migrationMap>
3+
<name value="migrate flexmark-java 0.50.x to 0.60.0"/>
4+
<description value="Class migrations from flexmark-java 0.50.x to 0.60.0"/>
5+
<entry oldName="com.vladsch.flexmark.ast.DelimitedNode" newName="com.vladsch.flexmark.util.ast.DelimitedNode" type="class"/>
6+
<entry oldName="com.vladsch.flexmark.docx.converter.CustomNodeDocxRenderer" newName="com.vladsch.flexmark.docx.converter.NodeDocxRenderer" type="class"/>
7+
<entry oldName="com.vladsch.flexmark.ext.abbreviation.internal.FormatOptions" newName="com.vladsch.flexmark.ext.abbreviation.internal.AbbreviationFormatOptions" type="class"/>
8+
<entry oldName="com.vladsch.flexmark.ext.definition.internal.FormatOptions" newName="com.vladsch.flexmark.ext.definition.internal.DefinitionFormatOptions" type="class"/>
9+
<entry oldName="com.vladsch.flexmark.ext.gfm.tasklist.internal.FormatOptions" newName="com.vladsch.flexmark.ext.gfm.tasklist.internal.TaskListFormatOptions" type="class"/>
10+
<entry oldName="com.vladsch.flexmark.ext.toc.internal.TocUtils" newName="com.vladsch.flexmark.ext.toc.TocUtils" type="class"/>
11+
<entry oldName="com.vladsch.flexmark.formatter.CustomNodeFormatter" newName="com.vladsch.flexmark.formatter.NodeFormatter" type="class"/>
12+
<entry oldName="com.vladsch.flexmark.formatter.internal.FormatterOptions" newName="com.vladsch.flexmark.formatter.FormatterOptions" type="class"/>
13+
<entry oldName="com.vladsch.flexmark.html.CustomNodeRenderer" newName="com.vladsch.flexmark.html.renderer.NodeRenderer" type="class"/>
14+
<entry oldName="com.vladsch.flexmark.profiles.pegdown.Extensions" newName="com.vladsch.flexmark.profile.pegdown.Extensions" type="class"/>
15+
<entry oldName="com.vladsch.flexmark.profiles.pegdown.PegdownOptionsAdapter" newName="com.vladsch.flexmark.profile.pegdown.PegdownOptionsAdapter" type="class"/>
16+
<entry oldName="com.vladsch.flexmark.spec.IParseBase" newName="com.vladsch.flexmark.test.util.spec.IParseBase" type="class"/>
17+
<entry oldName="com.vladsch.flexmark.spec.IRenderBase" newName="com.vladsch.flexmark.test.util.spec.IRenderBase" type="class"/>
18+
<entry oldName="com.vladsch.flexmark.spec.SpecExample" newName="com.vladsch.flexmark.test.util.spec.SpecExample" type="class"/>
19+
<entry oldName="com.vladsch.flexmark.spec.SpecReader" newName="com.vladsch.flexmark.test.util.spec.SpecReader" type="class"/>
20+
<entry oldName="com.vladsch.flexmark.spec.SpecReaderFactory" newName="com.vladsch.flexmark.test.util.spec.SpecReaderFactory" type="class"/>
21+
<entry oldName="com.vladsch.flexmark.spec.TemplateEntry" newName="com.vladsch.flexmark.test.util.spec.TemplateEntry" type="class"/>
22+
<entry oldName="com.vladsch.flexmark.spec.TemplateReader" newName="com.vladsch.flexmark.test.util.spec.TemplateReader" type="class"/>
23+
<entry oldName="com.vladsch.flexmark.spec.TemplateReaderFactory" newName="com.vladsch.flexmark.test.util.spec.TemplateReaderFactory" type="class"/>
24+
<entry oldName="com.vladsch.flexmark.superscript.internal.SuperscriptDelimiterProcessor" newName="com.vladsch.flexmark.ext.superscript.internal.SuperscriptDelimiterProcessor" type="class"/>
25+
<entry oldName="com.vladsch.flexmark.superscript.internal.SuperscriptJiraRenderer" newName="com.vladsch.flexmark.ext.superscript.internal.SuperscriptJiraRenderer" type="class"/>
26+
<entry oldName="com.vladsch.flexmark.superscript.internal.SuperscriptNodeRenderer" newName="com.vladsch.flexmark.ext.superscript.internal.SuperscriptNodeRenderer" type="class"/>
27+
<entry oldName="com.vladsch.flexmark.superscript.Superscript" newName="com.vladsch.flexmark.ext.superscript.Superscript" type="class"/>
28+
<entry oldName="com.vladsch.flexmark.superscript.SuperscriptExtension" newName="com.vladsch.flexmark.ext.superscript.SuperscriptExtension" type="class"/>
29+
<entry oldName="com.vladsch.flexmark.superscript.SuperscriptVisitor" newName="com.vladsch.flexmark.ext.superscript.SuperscriptVisitor" type="class"/>
30+
<entry oldName="com.vladsch.flexmark.superscript.SuperscriptVisitorExt" newName="com.vladsch.flexmark.ext.superscript.SuperscriptVisitorExt" type="class"/>
31+
<entry oldName="com.vladsch.flexmark.test.AstCollectingVisitor" newName="com.vladsch.flexmark.test.util.AstCollectingVisitor" type="class"/>
32+
<entry oldName="com.vladsch.flexmark.test.ComboSpecTestCase" newName="com.vladsch.flexmark.test.util.ComboSpecTestCase" type="class"/>
33+
<entry oldName="com.vladsch.flexmark.test.DumpSpecReader" newName="com.vladsch.flexmark.test.util.DumpSpecReader" type="class"/>
34+
<entry oldName="com.vladsch.flexmark.test.DumpTemplateReader" newName="com.vladsch.flexmark.test.util.DumpTemplateReader" type="class"/>
35+
<entry oldName="com.vladsch.flexmark.test.FullSpecTestCase" newName="com.vladsch.flexmark.test.util.FullSpecTestCase" type="class"/>
36+
<entry oldName="com.vladsch.flexmark.test.RenderingTestCase" newName="com.vladsch.flexmark.test.util.RenderingTestCase" type="class"/>
37+
<entry oldName="com.vladsch.flexmark.test.Strings" newName="com.vladsch.flexmark.test.util.Strings" type="class"/>
38+
<entry oldName="com.vladsch.flexmark.test.TemplateTestCase" newName="com.vladsch.flexmark.test.util.TemplateTestCase" type="class"/>
39+
<entry oldName="com.vladsch.flexmark.util.builder.Extension" newName="com.vladsch.flexmark.util.misc.Extension" type="class"/>
40+
<entry oldName="com.vladsch.flexmark.util.collection.BitIntegerSet" newName="com.vladsch.flexmark.experimental.util.collection.BitIntegerSet" type="class"/>
41+
<entry oldName="com.vladsch.flexmark.util.collection.KeyedItemFactoryMap" newName="com.vladsch.flexmark.experimental.util.collection.KeyedItemFactoryMap" type="class"/>
42+
<entry oldName="com.vladsch.flexmark.util.collection.NullCollectionHost" newName="com.vladsch.flexmark.experimental.util.collection.NullCollectionHost" type="class"/>
43+
<entry oldName="com.vladsch.flexmark.util.DelimitedBuilder" newName="com.vladsch.flexmark.util.misc.DelimitedBuilder" type="class"/>
44+
<entry oldName="com.vladsch.flexmark.util.FileUtil" newName="com.vladsch.flexmark.util.misc.FileUtil" type="class"/>
45+
<entry oldName="com.vladsch.flexmark.util.html.Escaping" newName="com.vladsch.flexmark.util.sequence.Escaping" type="class"/>
46+
<entry oldName="com.vladsch.flexmark.util.html.Html5Entities" newName="com.vladsch.flexmark.util.sequence.Html5Entities" type="class"/>
47+
<entry oldName="com.vladsch.flexmark.util.html.HtmlFormattingAppendable" newName="com.vladsch.flexmark.util.html.HtmlAppendable" type="class"/>
48+
<entry oldName="com.vladsch.flexmark.util.html.HtmlFormattingAppendableBase" newName="com.vladsch.flexmark.util.html.HtmlAppendableBase" type="class"/>
49+
<entry oldName="com.vladsch.flexmark.util.html.LineFormattingAppendable" newName="com.vladsch.flexmark.util.sequence.LineAppendable" type="class"/>
50+
<entry oldName="com.vladsch.flexmark.util.html.LineFormattingAppendableImpl" newName="com.vladsch.flexmark.util.sequence.LineAppendableImpl" type="class"/>
51+
<entry oldName="com.vladsch.flexmark.util.ImageUtils" newName="com.vladsch.flexmark.util.misc.ImageUtils" type="class"/>
52+
<entry oldName="com.vladsch.flexmark.util.Immutable" newName="com.vladsch.flexmark.util.misc.Immutable" type="class"/>
53+
<entry oldName="com.vladsch.flexmark.util.mappers.BlockClassifier" newName="com.vladsch.flexmark.experimental.util.mappers.BlockClassifier" type="class"/>
54+
<entry oldName="com.vladsch.flexmark.util.mappers.CharMapper" newName="com.vladsch.flexmark.util.sequence.mappers.CharMapper" type="class"/>
55+
<entry oldName="com.vladsch.flexmark.util.mappers.CharWidthProvider" newName="com.vladsch.flexmark.util.format.CharWidthProvider" type="class"/>
56+
<entry oldName="com.vladsch.flexmark.util.mappers.ObjectClassifier" newName="com.vladsch.flexmark.experimental.util.mappers.ObjectClassifier" type="class"/>
57+
<entry oldName="com.vladsch.flexmark.util.Mutable" newName="com.vladsch.flexmark.util.misc.Mutable" type="class"/>
58+
<entry oldName="com.vladsch.flexmark.util.Pair" newName="com.vladsch.flexmark.util.misc.Pair" type="class"/>
59+
<entry oldName="com.vladsch.flexmark.util.Paired" newName="com.vladsch.flexmark.util.misc.Paired" type="class"/>
60+
<entry oldName="com.vladsch.flexmark.util.Ref" newName="com.vladsch.flexmark.util.misc.Ref" type="class"/>
61+
<entry oldName="com.vladsch.flexmark.util.sequence.RepeatedCharSequence" newName="com.vladsch.flexmark.util.sequence.RepeatedSequence" type="class"/>
62+
<entry oldName="com.vladsch.flexmark.util.sequence.RichCharSequence" newName="com.vladsch.flexmark.util.sequence.RichSequence" type="class"/>
63+
<entry oldName="com.vladsch.flexmark.util.sequence.RichCharSequenceBase" newName="com.vladsch.flexmark.util.sequence.IRichSequenceBase" type="class"/>
64+
<entry oldName="com.vladsch.flexmark.util.sequence.RichCharSequenceImpl" newName="com.vladsch.flexmark.util.sequence.RichSequenceImpl" type="class"/>
65+
<entry oldName="com.vladsch.flexmark.util.sequence.SegmentedSequenceBuilder" newName="com.vladsch.flexmark.util.sequence.builder.SequenceBuilder" type="class"/>
66+
<entry oldName="com.vladsch.flexmark.util.TemplateUtil" newName="com.vladsch.flexmark.util.misc.TemplateUtil" type="class"/>
67+
<entry oldName="com.vladsch.flexmark.util.Utils" newName="com.vladsch.flexmark.util.misc.Utils" type="class"/>
68+
</migrationMap>

0 commit comments

Comments
 (0)