Skip to content

Commit

Permalink
prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
vsch committed May 4, 2020
1 parent ccdb4d7 commit 4aedaa9
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 12 deletions.
11 changes: 6 additions & 5 deletions VERSION-TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
+ [ ] Add: dependency resolution for Node Renderer Factories to make them independent of
extension add order
* [ ] Fix: Change spec example to variable number of sections
* [ ] Add: yaml front matter configurator for modules. See: [Yaml Front Matter
Configuration](../../wiki/Yaml-Front-Matter-Configuration)
* [ ] Add: yaml front matter configurator for modules. See:
[Yaml Front Matter Configuration](../../wiki/Yaml-Front-Matter-Configuration)
* [ ] Fix: table formatting caret position tracking affects alignment even when not inserting,
just formatting. Need to keep track of whether format after typing or just format. Then
caret position should only track but not force spaces behind it to be preserved. See
Expand All @@ -231,7 +231,7 @@ Please give feedback on the upcoming changes if you have concerns about breaking
* Break: `TextCollectingVisitor` needs `TextContainer.F_ADD_SPACES_BETWEEN_NODES` to ensure
there is at least one space between texts of different nodes in collected text. Previously
this was added automatically by sequence builder. Use one of the `getAndCollect` functions
taking options flags.
taking options flags and pass `TextContainer.F_ADD_SPACES_BETWEEN_NODES`.
* Fix: `MarkdownParagraph` wrapping with preserving tracked offsets with spaces to preserve
spaces right before last non-blank character.
* Fix: unify handling of link generating inline element handling in link text elements.
Expand All @@ -240,7 +240,7 @@ Please give feedback on the upcoming changes if you have concerns about breaking
* Fix: `WikiNode` to implement `LinkRefDerived`
* Fix: `WikiLink` to implement `LinkRendered`
* Fix: `Footnote` to implement `LinkRendered`

:information_source: nested link ref derived elements in link ref text have priority and
cannot be used to embed into link ref text using `[link ref text][ref id]` syntax.

Expand All @@ -262,7 +262,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking

<p><a href="/uri">[][moon]</a></p>

:information_source: Undefined reference links are always treated as text when in a link text element.
:information_source: Undefined reference links are always treated as text when in a link
text element.

## 0.61.22

Expand Down
33 changes: 26 additions & 7 deletions VERSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [Release 0.60.0](#release-0600)
- [API Refactoring](#api-refactoring)
- [0.61.26](#06126)
- [0.61.24](#06124)
- [0.61.22](#06122)
- [0.61.20](#06120)
Expand Down Expand Up @@ -168,6 +169,25 @@ Please give feedback on the upcoming changes if you have concerns about breaking
* `com.vladsch.flexmark.util.ast.NodeAdaptingVisitHandler`
* `com.vladsch.flexmark.util.ast.NodeAdaptingVisitor`

## 0.61.26

* Fix: `SequenceBuilder.toString()` not to add space between sequence parts.
* Break: `TextCollectingVisitor` needs `TextContainer.F_ADD_SPACES_BETWEEN_NODES` to ensure
there is at least one space between texts of different nodes in collected text. Previously
this was added automatically by sequence builder. Use one of the `getAndCollect` functions
taking options flags and pass `TextContainer.F_ADD_SPACES_BETWEEN_NODES`.
* Fix: `MarkdownParagraph` wrapping with preserving tracked offsets with spaces to preserve
spaces right before last non-blank character.
* Fix: unify handling of link generating inline element handling in link text elements.
* Add: `LinkRendered` interface to identify link rendering elements derived from link/image
ref syntax identified by implementation of `LinkRefDerived` interface
* Fix: `WikiNode` to implement `LinkRefDerived`
* Fix: `WikiLink` to implement `LinkRendered`
* Fix: `Footnote` to implement `LinkRendered`

:information_source: nested link ref derived elements in link ref text have priority and
cannot be used to embed into link ref text using `[link ref text][ref id]` syntax.

## 0.61.24

* Fix: link refs in link text should be collapsed.
Expand All @@ -186,7 +206,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking

<p><a href="/uri">[][moon]</a></p>

:information_source: Undefined reference links are always treated as text when in a link text element.
:information_source: Undefined reference links are always treated as text when in a link
text element.

## 0.61.22

Expand Down Expand Up @@ -243,9 +264,9 @@ Please give feedback on the upcoming changes if you have concerns about breaking
* Add: `JekyllTagExtension.EMBED_INCLUDED_CONTENT`, default `false`. Set to `true` to embed
included markdown content.
* Fix: tracked paragraph wrapping when inserting space before EOL on a line when the word before
caret will be wrapped to the next line. ie. the EOL will be removed.
caret will be wrapped to the next line. ie. the EOL will be removed.
* Deprecate: `JekyllTagExtension.ENABLE_RENDERING`, not used nor needed.
* Fix: [#398, Autolinks get cut off if they contain \`&amp;\` (escaped query params)]
* Fix: [#398, Autolinks get cut off if they contain \`&amp;\` (escaped query params)]

## 0.61.10

Expand Down Expand Up @@ -2059,6 +2080,8 @@ Please give feedback on the upcoming changes if you have concerns about breaking
[#391, PR: Fix: CRLF line separator in fenced code blocks produce redundant CR.]: https://github.com/vsch/flexmark-java/pull/391
[#396, DocumentParser stops reading too early resulting in the document being cut off]: https://github.com/vsch/flexmark-java/issues/396
[#397, PR: Add base64 image support with docx rendering]: https://github.com/vsch/flexmark-java/pull/397
[#398, Autolinks get cut off if they contain \`&amp;\` (escaped query params)]: https://github.com/vsch/flexmark-java/issues/398
[#407, Link text inline content fails to parse image references]: https://github.com/vsch/flexmark-java/issues/407
[@Xaelis]: https://github.com/Xaelis
[Awesome Console]: https://plugins.jetbrains.com/plugin/7677-awesome-console "Awesome Console"
[HtmlToMarkdownCustomizedSample.java]: https://github.com/vsch/flexmark-java/blob/master/flexmark-java-samples/src/com/vladsch/flexmark/java/samples/HtmlToMarkdownCustomizedSample.java
Expand All @@ -2070,7 +2093,3 @@ Please give feedback on the upcoming changes if you have concerns about breaking
[migrate flexmark-java 0_40_x to 0_42_0]: https://github.com/vsch/flexmark-java/blob/master/assets/migrations/migrate%20flexmark-java%200_40_x%20to%200_42_0.xml
[migrate flexmark-java 0_42_x to 0_50_0.xml]: https://github.com/vsch/flexmark-java/blob/master/assets/migrations/migrate%20flexmark-java%200_42_x%20to%200_50_0.xml
[#398, Autolinks get cut off if they contain \`&amp;\` (escaped query params)]: https://github.com/vsch/flexmark-java/issues/398
[#407, Link text inline content fails to parse image references]: https://github.com/vsch/flexmark-java/issues/407

0 comments on commit 4aedaa9

Please sign in to comment.