From 26b2025ca03eaef953f80ea11d8cfca99bc96eb1 Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Tue, 27 Dec 2022 18:22:04 +0100 Subject: [PATCH 1/6] test(commonmark): add test to verify issue 282 issue #282 --- .../bsc/makdown/commonmark/Issue282Test.kt | 23 +++++++++++++++++++ .../bsc/makdown/commonmark/ParseHelpers.kt | 4 +++- .../src/test/resources/issue282.md | 2 ++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/Issue282Test.kt create mode 100644 processor-commonmark/src/test/resources/issue282.md diff --git a/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/Issue282Test.kt b/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/Issue282Test.kt new file mode 100644 index 00000000..49aab274 --- /dev/null +++ b/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/Issue282Test.kt @@ -0,0 +1,23 @@ +package org.bsc.makdown.commonmark + +import org.bsc.confluence.model.Site +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Test +import java.nio.file.Paths + +class Issue282Test { + + var site = Site().apply { + basedir = Paths.get(System.getProperty("user.dir")) + } + + @Test + fun parse() { + val content = parseResource( this.javaClass, "issue282", this.site ) + + assertEquals(""" + test coverage of at least 70%. (Measures to show this for each PR will need to be investigated) + """.trimIndent(), content ) + } + +} \ No newline at end of file diff --git a/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/ParseHelpers.kt b/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/ParseHelpers.kt index 7426a781..baaaaf60 100644 --- a/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/ParseHelpers.kt +++ b/processor-commonmark/src/test/kotlin/org/bsc/makdown/commonmark/ParseHelpers.kt @@ -4,6 +4,8 @@ import org.apache.commons.io.IOUtils import org.bsc.confluence.model.Site import org.bsc.markdown.MarkdownParserContext import org.bsc.markdown.commonmark.CommonmarkConfluenceWikiVisitor +import org.junit.jupiter.api.Assertions.fail +import org.junit.jupiter.api.fail import java.nio.charset.Charset import java.util.* @@ -34,7 +36,7 @@ fun parseResource(type: Class<*>, name: String, site: Site): String? = parseContent(site, IOUtils.toString(it, Charset.defaultCharset())) } } catch (e: Exception) { - //Assertions.fail() + fail( e ) null; } diff --git a/processor-commonmark/src/test/resources/issue282.md b/processor-commonmark/src/test/resources/issue282.md new file mode 100644 index 00000000..608a0de5 --- /dev/null +++ b/processor-commonmark/src/test/resources/issue282.md @@ -0,0 +1,2 @@ + +test coverage of at least 70%%. (Measures to show this for each PR will need to be investigated) \ No newline at end of file From cb26a690c77dcac1aa0938aa55ef80c646e12858 Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Wed, 28 Dec 2022 16:50:29 +0100 Subject: [PATCH 2/6] build(pom.xml): upgrade commonmark version upgrade commonmark version to 0.21.0 issue #282 --- processor-commonmark/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor-commonmark/pom.xml b/processor-commonmark/pom.xml index c2355d01..23d285d4 100644 --- a/processor-commonmark/pom.xml +++ b/processor-commonmark/pom.xml @@ -13,7 +13,7 @@ CONFLUENCE-REPORTING::Markdown::Commonmark::Processor - 0.18.2 + 0.21.0 From 6c6a3b678221f79e05db358af4cb39935edd02b2 Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Wed, 28 Dec 2022 16:55:28 +0100 Subject: [PATCH 3/6] fix(CommonmarkConfluenceWikiVisitor): avoid implicit use of String.format() in pre() and post() mothods of ChildrenProcessor class issue #282 --- .../CommonmarkConfluenceWikiVisitor.java | 78 +++++++++---------- 1 file changed, 38 insertions(+), 40 deletions(-) diff --git a/processor-commonmark/src/main/java/org/bsc/markdown/commonmark/CommonmarkConfluenceWikiVisitor.java b/processor-commonmark/src/main/java/org/bsc/markdown/commonmark/CommonmarkConfluenceWikiVisitor.java index ff346a63..96f38d5e 100644 --- a/processor-commonmark/src/main/java/org/bsc/markdown/commonmark/CommonmarkConfluenceWikiVisitor.java +++ b/processor-commonmark/src/main/java/org/bsc/markdown/commonmark/CommonmarkConfluenceWikiVisitor.java @@ -119,10 +119,10 @@ public void visit(Paragraph node) { final ChildrenProcessor p = processChildren(node); if( isParentRoot(node) ) { - p.post("\n"); + p.post(() -> "\n"); } else if( node.getParent() instanceof ListBlock ) { - p.pre("\n"); + p.pre(() -> "\n"); } p.process().nl(); @@ -136,7 +136,7 @@ else if( node.getParent() instanceof ListBlock ) { */ @Override public void visit(HardLineBreak node) { - processChildren(node).pre("\\\\").process().nl(); + processChildren(node).pre(() -> "\\\\").process().nl(); } /** @@ -156,14 +156,14 @@ public void visit(SoftLineBreak node) { public void visit(Text node) { final String literal = escapeMarkdownText( node, node.getLiteral() ); processChildren(node) - .pre( literal ) + .pre( () -> literal ) .process(); } @Override public void visit(Heading node) { processChildren(node) - .pre( format( "h%s. ", node.getLevel()) ) + .pre( () -> format( "h%s. ", node.getLevel()) ) .process().nl(); } @@ -209,8 +209,8 @@ public void visit(BulletList node) { public void visit(BlockQuote node) { processChildren(node) - .pre("{quote}\n") - .post("{quote}\n") + .pre(() -> "{quote}\n") + .post(() ->"{quote}\n") .process() .nl( isParentRoot(node) ); } @@ -220,7 +220,7 @@ public void visit(Code node) { final String literal = escapeMarkdownText( node, node.getLiteral()); processChildren(node) - .pre( "{{%s}}", literal ) + .pre(() -> format("{{%s}}", literal) ) .process(); } @@ -229,20 +229,20 @@ public void visit(FencedCodeBlock node) { final Function info = (v) -> (v==null || v.length()==0 ) ? "" : ":"+v ; processChildren(node) - .pre( "{code%s}\n%s", info.apply(node.getInfo()), node.getLiteral() ) - .post("{code}") + .pre( () -> format("{code%s}\n%s", info.apply(node.getInfo()), node.getLiteral()) ) + .post(() ->"{code}") .process().nl(); } @Override public void visit(Emphasis node) { - processChildren(node).pre("_").post("_").process(); + processChildren(node).pre(() -> "_").post(() -> "_").process(); } @Override public void visit(StrongEmphasis node) { - processChildren(node).pre("*").post("*").process();; + processChildren(node).pre(() -> "*").post(() -> "*").process();; } @Override @@ -252,8 +252,8 @@ public void visit(Image node) { processChildren(node) //.pre( format("<>", node.getDestination(), node.getTitle())).post("<>") - .pre( "!%s|", destination, node.getTitle() ) - .post("!") + .pre(() -> format("!%s|", destination, node.getTitle()) ) + .post(() -> "!") .process() .nl( isParentRoot(node) ); } @@ -272,16 +272,16 @@ public void visit(Link node) { processChildren(node) //.preAndPost("<>") - .pre( "[" ) + .pre(() -> "[" ) .captureOutput( v -> buffer().append(v) ) // ignore text - .post("|%s%s]", destination, ofNullable(node.getTitle()).map( v -> "|"+v ).orElse("")) + .post(() -> format("|%s%s]", destination, ofNullable(node.getTitle()).map( v -> "|"+v ).orElse("")) ) .process() .nl(isParentRoot(node)); } @Override public void visit(ThematicBreak node) { - processChildren(node).pre("----").process().nl(); + processChildren(node).pre(() -> "----").process().nl(); } //@Custom @@ -303,7 +303,7 @@ public void visit( TableBody node ) { //@Custom public void visit( TableRow node ) { processChildren(node) - .pre("|") + .pre(() -> "|") .post( () -> ( node.getParent() instanceof TableHead ) ? "|" : "" ) .process() .nl(); @@ -317,7 +317,7 @@ public void visit( TableCell node ) { buffer().append( value.isEmpty() ? ' ' : value ); }) .pre( () -> ( node.isHeader()) ? "|" : "" ) - .post( "|" ) + .post( () -> "|" ) .process(); } @@ -328,14 +328,14 @@ public void visit(HtmlBlock node) { final Matcher m = parseHTMLComment(literal); if( m.matches() && isConfluenceMacro( m.group(2) ) ) { processChildren(node) - .pre(m.group(1)) - .post(m.group(2)) + .pre(() -> m.group(1)) + .post(() -> m.group(2)) .process().nl(); } else { processChildren(node) - .pre("{html}\n%s\n", literal) - .post("{html}") + .pre(() -> format("{html}\n%s\n", literal) ) + .post(() -> "{html}") .process().nl(); } } @@ -349,7 +349,7 @@ public void visit(HtmlInline node) { //@Custom public void visit( Strikethrough node ) { - processChildren(node).pre("-").post("-").process(); + processChildren(node).pre(() -> "-").post(() -> "-").process(); } //@custom @@ -358,13 +358,13 @@ public void visit(NoticeBlock node) { final ChildrenProcessor p = processChildren(node); if( node.getTitle().isPresent() ) { - p.pre( "{%s:title=%s}\n", type, node.getTitle().get()); + p.pre(() -> format("{%s:title=%s}\n", type, node.getTitle().get()) ); } else { - p.pre("{%s}\n", type); + p.pre(() -> format("{%s}\n", type)); } - p.post("{%s}\n", type) + p.post(() -> format("{%s}\n", type)) .process() .nl(isParentRoot(node)); } @@ -393,7 +393,11 @@ else if( node instanceof TableBody ) { return; } - processChildren(node).pre("<>", node.getClass().getSimpleName()).post("<>").process().nl(); + processChildren(node) + .pre(() -> format("<>", node.getClass().getSimpleName())) + .post(() -> "<>") + .process() + .nl(); } @Override @@ -407,12 +411,16 @@ else if( node instanceof NoticeBlock) { visit( (NoticeBlock)node ); return; } - processChildren(node).pre("<>", node.getClass().getSimpleName()).post("<>").process().nl(); + processChildren(node) + .pre(() -> format("<>", node.getClass().getSimpleName())) + .post(() -> "<>") + .process() + .nl(); } @Override public void visit(IndentedCodeBlock node) { - processChildren(node).pre("<>").post("<>").process().nl(); + processChildren(node).pre(() -> "<>").post(() -> "<>").process().nl(); } @Override @@ -445,21 +453,11 @@ ChildrenProcessor captureOutput(Consumer v) { return this; } - ChildrenProcessor pre(String v, Object ...args) { - pre = of( () -> format( v, args)); - return this; - } - ChildrenProcessor pre( Supplier supplier) { pre = ofNullable( supplier ); return this; } - ChildrenProcessor post(String v, Object ...args) { - post = of( () -> format( v, args)); - return this; - } - ChildrenProcessor post(Supplier supplier) { post = ofNullable( supplier ); return this; From 3d0af7544be5538ef4d6c86057c52c4640471ca4 Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Wed, 28 Dec 2022 16:56:20 +0100 Subject: [PATCH 4/6] test: markdown file to test the fix issue #282 --- processor-commonmark/src/test/resources/issue282.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processor-commonmark/src/test/resources/issue282.md b/processor-commonmark/src/test/resources/issue282.md index 608a0de5..0c47869c 100644 --- a/processor-commonmark/src/test/resources/issue282.md +++ b/processor-commonmark/src/test/resources/issue282.md @@ -1,2 +1,2 @@ -test coverage of at least 70%%. (Measures to show this for each PR will need to be investigated) \ No newline at end of file +test coverage of at least 70%. (Measures to show this for each PR will need to be investigated) \ No newline at end of file From 0755ff99058ef7997fe5b5f4c1dc0d5a607db162 Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Wed, 28 Dec 2022 17:02:39 +0100 Subject: [PATCH 5/6] build: move to next developer version --- addon-scrollversions/pom.xml | 2 +- core/pom.xml | 2 +- gitlog+jira/pom.xml | 2 +- plugin-reporting/pom.xml | 2 +- pom.xml | 2 +- processor-commonmark/pom.xml | 2 +- processor-freemarker/pom.xml | 2 +- service-rest-api/pom.xml | 2 +- service-xmlrpc-api/pom.xml | 2 +- test-plugin/pom.xml | 2 +- test-publishing/pom.xml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/addon-scrollversions/pom.xml b/addon-scrollversions/pom.xml index 3eaa4090..413d38a7 100644 --- a/addon-scrollversions/pom.xml +++ b/addon-scrollversions/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 919d3837..27acb474 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/gitlog+jira/pom.xml b/gitlog+jira/pom.xml index ec5a3147..223dd2b0 100644 --- a/gitlog+jira/pom.xml +++ b/gitlog+jira/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/plugin-reporting/pom.xml b/plugin-reporting/pom.xml index a3bcf482..bd31bcee 100755 --- a/plugin-reporting/pom.xml +++ b/plugin-reporting/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT diff --git a/pom.xml b/pom.xml index 455c20cd..e96d5517 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.bsc.maven maven-confluence-parent pom - 7.8 + 7.9-SNAPSHOT CONFLUENCE-REPORTING::Parent Maven's plugin that allow to generate "project's documentation" directly to confluence allowing, in the same time, to keep in-sync both project & documentation diff --git a/processor-commonmark/pom.xml b/processor-commonmark/pom.xml index 23d285d4..b3776c09 100644 --- a/processor-commonmark/pom.xml +++ b/processor-commonmark/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/processor-freemarker/pom.xml b/processor-freemarker/pom.xml index 58897029..27046d54 100644 --- a/processor-freemarker/pom.xml +++ b/processor-freemarker/pom.xml @@ -5,7 +5,7 @@ org.bsc.maven maven-confluence-parent - 7.8 + 7.9-SNAPSHOT maven-confluence-processor-freemarker CONFLUENCE-REPORTING::Freemaker::Processor diff --git a/service-rest-api/pom.xml b/service-rest-api/pom.xml index 2e9dd095..f0aaa983 100644 --- a/service-rest-api/pom.xml +++ b/service-rest-api/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/service-xmlrpc-api/pom.xml b/service-xmlrpc-api/pom.xml index dc7f302d..260684f1 100644 --- a/service-xmlrpc-api/pom.xml +++ b/service-xmlrpc-api/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 diff --git a/test-plugin/pom.xml b/test-plugin/pom.xml index c85d8718..bfc75204 100644 --- a/test-plugin/pom.xml +++ b/test-plugin/pom.xml @@ -6,7 +6,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT diff --git a/test-publishing/pom.xml b/test-publishing/pom.xml index 9ec3ae7c..2ed964df 100644 --- a/test-publishing/pom.xml +++ b/test-publishing/pom.xml @@ -3,7 +3,7 @@ maven-confluence-parent org.bsc.maven - 7.8 + 7.9-SNAPSHOT 4.0.0 From e08c9280fcf2d6bdbed6e88e830e0756c53a27dd Mon Sep 17 00:00:00 2001 From: Build Pipeline Date: Wed, 4 Jan 2023 18:03:20 +0100 Subject: [PATCH 6/6] chore: prepare for release 7.9 --- CHANGELOG.md | 218 +++++++++++++++++++++-------------- README.md | 35 +++--- addon-scrollversions/pom.xml | 2 +- core/pom.xml | 2 +- gitlog+jira/pom.xml | 2 +- plugin-reporting/pom.xml | 2 +- pom.xml | 2 +- processor-commonmark/pom.xml | 2 +- processor-freemarker/pom.xml | 2 +- service-rest-api/pom.xml | 2 +- service-xmlrpc-api/pom.xml | 2 +- test-plugin/pom.xml | 2 +- test-publishing/pom.xml | 2 +- 13 files changed, 163 insertions(+), 112 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e32cec03..6974292e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,58 @@ +## v7.9 +### No issue + +**build: move to next developer version** + + +[0755ff99058ef79](https://github.com/bsorrentino/maven-confluence-plugin/commit/0755ff99058ef79) Build Pipeline *2022-12-28 16:02:39* + +**Merge branch 'bugfix/issue282' into develop** + + +[7d1814877053e21](https://github.com/bsorrentino/maven-confluence-plugin/commit/7d1814877053e21) Build Pipeline *2022-12-28 15:56:39* + +**test: markdown file to test the fix** + + * issue #282 + +[3d0af7544be5538](https://github.com/bsorrentino/maven-confluence-plugin/commit/3d0af7544be5538) Build Pipeline *2022-12-28 15:56:20* + +**fix(CommonmarkConfluenceWikiVisitor): avoid implicit use of String.format() in pre() and post() mothods of ChildrenProcessor class** + + * issue #282 + +[6c6a3b678221f79](https://github.com/bsorrentino/maven-confluence-plugin/commit/6c6a3b678221f79) Build Pipeline *2022-12-28 15:55:28* + +**build(pom.xml): upgrade commonmark version** + + * upgrade commonmark version to 0.21.0 + * issue #282 + +[cb26a690c77dcac](https://github.com/bsorrentino/maven-confluence-plugin/commit/cb26a690c77dcac) Build Pipeline *2022-12-28 15:51:32* + +**test(commonmark): add test to verify issue 282** + + * issue #282 + +[26b2025ca03eaef](https://github.com/bsorrentino/maven-confluence-plugin/commit/26b2025ca03eaef) Build Pipeline *2022-12-27 17:22:04* + +**docs(changelog): update changelog** + + +[10013a4db1c87f5](https://github.com/bsorrentino/maven-confluence-plugin/commit/10013a4db1c87f5) Build Pipeline *2022-12-09 12:07:00* + +**Merge tag 'v7.8' into develop** + + * release 7.8 + +[bb382a136fa4ef8](https://github.com/bsorrentino/maven-confluence-plugin/commit/bb382a136fa4ef8) Build Pipeline *2022-12-09 12:04:56* + + ## v7.8 -### Generic changes +### No issue **Merge branch 'release/7.8'** @@ -146,7 +196,7 @@ ## v7.7 -### Generic changes +### No issue **Merge branch 'release/7.7'** @@ -351,7 +401,7 @@ ## v7.6 -### Generic changes +### No issue **Merge branch 'release/7.6'** @@ -375,7 +425,7 @@ ## v7.5 -### Generic changes +### No issue **Merge branch 'hotfix/7.5'** @@ -753,7 +803,7 @@ ## v7.4 -### Generic changes +### No issue **Merge branch 'release/7.4'** @@ -772,7 +822,7 @@ ## v7.3.2 -### Generic changes +### No issue **Merge branch 'hotfix/7.3.2'** @@ -801,7 +851,7 @@ ## v7.3.1 -### Generic changes +### No issue **Merge branch 'release/7.3.1'** @@ -883,7 +933,7 @@ ## v7.3 -### Generic changes +### No issue **Merge branch 'release/7.3'** @@ -932,7 +982,7 @@ ## v7.2.1 -### Generic changes +### No issue **Merge branch 'release/7.2.1'** @@ -997,7 +1047,7 @@ ## v7.2 -### Generic changes +### No issue **Merge branch 'release/7.2'** @@ -1062,7 +1112,7 @@ ## v7.1 -### Generic changes +### No issue **Merge branch 'release/7.1'** @@ -1107,7 +1157,7 @@ ## v7.0 -### Generic changes +### No issue **Merge branch 'release/7.0'** @@ -1214,7 +1264,7 @@ ## v7.0-rc2 -### Generic changes +### No issue **Merge branch 'release/7.0-rc2'** @@ -1350,7 +1400,7 @@ ## v7.0-rc1 -### Generic changes +### No issue **Merge branch 'release/7.0-rc1'** @@ -1384,7 +1434,7 @@ ## v7.0-beta2 -### Generic changes +### No issue **Merge branch 'release/7.0-beta2'** @@ -1671,7 +1721,7 @@ ## v7.0-beta1 -### Generic changes +### No issue **Merge branch 'release/7.0-beta1'** @@ -1837,7 +1887,7 @@ ## v6.20 -### Generic changes +### No issue **Merge branch 'release/6.20'** @@ -2004,7 +2054,7 @@ ## v6.11 -### Generic changes +### No issue **Merge branch 'release/6.11'** @@ -2094,7 +2144,7 @@ ## v6.10 -### Generic changes +### No issue **Merge branch 'release/6.10'** @@ -2149,7 +2199,7 @@ ## v6.9.1 -### Generic changes +### No issue **Merge branch 'release/6.9.1'** @@ -2249,7 +2299,7 @@ ## v6.9 -### Generic changes +### No issue **Merge branch 'release/6.9'** @@ -2334,7 +2384,7 @@ ## v6.9-rc2 -### Generic changes +### No issue **Merge branch 'release/6.9-rc2'** @@ -2600,7 +2650,7 @@ ## v6.9-rc1 -### Generic changes +### No issue **Merge branch 'release/6.9-rc1'** @@ -2684,7 +2734,7 @@ ## v6.9-beta1 -### Generic changes +### No issue **Merge branch 'release/6.9-beta1'** @@ -2887,7 +2937,7 @@ ## v6.8 -### Generic changes +### No issue **Merge branch 'release/6.8'** @@ -3135,7 +3185,7 @@ ## v6.7.3 -### Generic changes +### No issue **Merge branch 'release/6.7.3'** @@ -3537,7 +3587,7 @@ ## v6.7.2 -### Generic changes +### No issue **Merge branch 'release/6.7.2'** @@ -3561,7 +3611,7 @@ ## v6.7.1 -### Generic changes +### No issue **Merge branch 'release/6.7.1'** @@ -3585,7 +3635,7 @@ ## v6.7 -### Generic changes +### No issue **Merge branch 'release/6.7'** @@ -3614,7 +3664,7 @@ ## v6.6 -### Generic changes +### No issue **Merge branch 'release/6.6'** @@ -3715,7 +3765,7 @@ ## v6.5 -### Generic changes +### No issue **Merge branch 'release/6.5'** @@ -3798,7 +3848,7 @@ ## v6.5-beta2 -### Generic changes +### No issue **Merge branch 'release/6.5-beta2'** @@ -3988,7 +4038,7 @@ ## v6.5-beta1 -### Generic changes +### No issue **Merge branch 'release/6.5-beta1'** @@ -4052,7 +4102,7 @@ ## v6.4.1 -### Generic changes +### No issue **Merge branch 'release/6.4.1'** @@ -4081,7 +4131,7 @@ ## v6.4 -### Generic changes +### No issue **Merge branch 'release/6.4'** @@ -4115,7 +4165,7 @@ ## v6.3.2 -### Generic changes +### No issue **Merge branch 'release/6.3.2'** @@ -4214,7 +4264,7 @@ ## v6.3.1 -### Generic changes +### No issue **Merge branch 'release/6.3.1'** @@ -4273,7 +4323,7 @@ ## v6.3 -### Generic changes +### No issue **Merge branch 'release/6.3'** @@ -4352,7 +4402,7 @@ ## v6.2 -### Generic changes +### No issue **Merge branch 'release/6.2'** @@ -4503,7 +4553,7 @@ ## v6.1 -### Generic changes +### No issue **Merge branch 'release/6.1'** @@ -4552,7 +4602,7 @@ ## v6.0 -### Generic changes +### No issue **Merge branch 'hotfix/changelog'** @@ -4722,7 +4772,7 @@ ## v6.0-rc4 -### Generic changes +### No issue **Merge branch 'release/6.0-rc4'** @@ -4787,7 +4837,7 @@ ## v6.0-rc3 -### Generic changes +### No issue **Merge branch 'release/6.0-rc3'** @@ -5006,7 +5056,7 @@ ## v6.0-rc2 -### Generic changes +### No issue **Merge branch 'release/6.0-rc2'** @@ -5050,7 +5100,7 @@ ## v6.0-rc1 -### Generic changes +### No issue **Merge branch 'release/6.0-rc1'** @@ -5109,7 +5159,7 @@ ## v6.0-beta2 -### Generic changes +### No issue **Merge branch 'release/6.0-beta2'** @@ -5138,7 +5188,7 @@ ## v6.0-beta1 -### Generic changes +### No issue **Merge branch 'release/6.0-beta1'** @@ -5439,7 +5489,7 @@ ## v5.1.1 -### Generic changes +### No issue **Merge branch 'release/5.1.1'** @@ -5483,7 +5533,7 @@ ## v5.1 -### Generic changes +### No issue **Merge branch 'release/5.1'** @@ -5562,7 +5612,7 @@ ## v5.0 -### Generic changes +### No issue **Merge branch 'release/5.0'** @@ -5651,7 +5701,7 @@ ## v5.0-rc5 -### Generic changes +### No issue **Merge branch 'release/5.0-rc5'** @@ -5700,7 +5750,7 @@ ## v5.0-rc4 -### Generic changes +### No issue **Merge branch 'release/5.0-rc4'** @@ -5764,7 +5814,7 @@ ## v5.0-rc3 -### Generic changes +### No issue **Merge branch 'release/5.0-rc3'** @@ -6114,7 +6164,7 @@ ## v5.0-beta2 -### Generic changes +### No issue **merge new release** @@ -6143,7 +6193,7 @@ ## v5.0-beta1 -### Generic changes +### No issue **Merge branch 'release/5.0-beta1'** @@ -6513,7 +6563,7 @@ ## v4.13 -### Generic changes +### No issue **Merge branch 'support/4.x'** @@ -6542,7 +6592,7 @@ ## v4.12 -### Generic changes +### No issue **update doc** @@ -6561,7 +6611,7 @@ ## v4.11 -### Generic changes +### No issue **remove title** @@ -6686,7 +6736,7 @@ ## v4.10 -### Generic changes +### No issue **Merge branch 'release/4.10'** @@ -6705,7 +6755,7 @@ ## v4.9.1 -### Generic changes +### No issue **Merge branch 'hotfix/4.9.1'** @@ -6734,7 +6784,7 @@ ## v4.9 -### Generic changes +### No issue **Merge branch 'release/4.9'** @@ -6798,7 +6848,7 @@ ## v4.8 -### Generic changes +### No issue **Merge branch 'release/4.8'** @@ -6882,7 +6932,7 @@ ## v4.7 -### Generic changes +### No issue **Merge branch 'release/4.7'** @@ -6931,7 +6981,7 @@ ## v4.6 -### Generic changes +### No issue **Merge branch 'release/4.6'** @@ -7005,7 +7055,7 @@ ## v4.5 -### Generic changes +### No issue **Merge branch 'release/4.5'** @@ -7083,7 +7133,7 @@ ## v4.4.3 -### Generic changes +### No issue **Merge branch 'release/4.4.3'** @@ -7165,7 +7215,7 @@ ## v4.4.2 -### Generic changes +### No issue **Merge branch 'release/4.4.2'** @@ -7377,7 +7427,7 @@ ## v4.4.1 -### Generic changes +### No issue **Updating develop poms back to pre merge state** @@ -7401,7 +7451,7 @@ ## v4.4-fix-report -### Generic changes +### No issue **Merge branch 'hotfix/4.4-fix-report'** @@ -7425,7 +7475,7 @@ ## v4.4 -### Generic changes +### No issue **Merge branch 'release/4.5'** @@ -7797,7 +7847,7 @@ ## maven-confluence-parent-4.2 -### Generic changes +### No issue **merge pull request #76** @@ -8407,7 +8457,7 @@ ## v3.4.4-rc1 -### Generic changes +### No issue **[maven-release-plugin] prepare release v3.4.4-rc1** @@ -8441,7 +8491,7 @@ ## maven-confluence-parent-3.4.3-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.4.3-SNAPSHOT** @@ -8485,7 +8535,7 @@ ## maven-confluence-parent-3.4.2-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.4.2-SNAPSHOT** @@ -8509,7 +8559,7 @@ ## maven-confluence-parent-3.4.1 -### Generic changes +### No issue **Merge branch 'master' of https://code.google.com/p/maven-confluence-plugin** @@ -9929,7 +9979,7 @@ ## maven-confluence-parent-3.4.0 -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.4.0** @@ -9943,7 +9993,7 @@ ## maven-confluence-parent-3.4.0-rc1 -### Generic changes +### No issue **[maven-release-plugin] prepare release 3.4.0-rc1** @@ -9957,7 +10007,7 @@ ## v3.4.0-rc1 -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.4.0-SNAPSHOT** @@ -9971,7 +10021,7 @@ ## maven-confluence-parent-3.4.0-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.4.0-SNAPSHOT** @@ -10038,7 +10088,7 @@ ## maven-confluence-parent-3.3.0-rc1 -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.3.0-rc1** @@ -10062,7 +10112,7 @@ ## maven-confluence-parent-3.3.0-beta4-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.3.0-beta4-SNAPSHOT** @@ -10096,7 +10146,7 @@ ## maven-confluence-parent-3.3.0-beta3-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.3.0-beta3-SNAPSHOT** @@ -10115,7 +10165,7 @@ ## maven-confluence-parent-3.3.0-beta2-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.3.0-beta2-SNAPSHOT** @@ -10165,7 +10215,7 @@ ## maven-confluence-parent-3.3.0-SNAPSHOT -### Generic changes +### No issue **[maven-release-plugin] prepare release maven-confluence-parent-3.3.0-SNAPSHOT** diff --git a/README.md b/README.md index a4f01a5b..eda8544e 100644 --- a/README.md +++ b/README.md @@ -28,23 +28,24 @@ For pratical samples refer to folder/module [test-publishing](https://github.com ## News -| Date | Release | Info | -|------------------|-----------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **Dec 9, 2022** | [Release 7.8](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.7) | Merged PR [#281](https://github.com/bsorrentino/maven-confluence-plugin/pull/281) that fix [#280](https://github.com/bsorrentino/maven-confluence-plugin/issue/280) "**allows specifying additional HTTP headers in the servers section of settings.xml**". Thanks to [DirkMahler](https://github.com/DirkMahler) for contribution. | -| **Jul 3, 2022** | [Release 7.7](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.7) | Merged PR [#266](https://github.com/bsorrentino/maven-confluence-plugin/pull/266) "**Adding JSON Support**". Thanks to [jksevend](https://github.com/jksevend) for contribution. | -| **Jun 3, 2022** | [Release 7.6](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.6) | Merged PR [#267](https://github.com/bsorrentino/maven-confluence-plugin/pull/267) "**added function to define jira instance baseurl**", that fix issue [#136](https://github.com/bsorrentino/maven-confluence-plugin/issues/136). Thanks to [tspindler](https://github.com/tspindler) for contribution. | -| **Apr 1, 2022** | [Release 7.5](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.5) | Fix empty table cell not handled properly. Refer to [#264](https://github.com/bsorrentino/maven-confluence-plugin/issues/264). | -| **Jan 10, 2022** | [Release 7.4](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.4) | Fix problem with **encoding**. Refer to [#261](https://github.com/bsorrentino/maven-confluence-plugin/issues/261). | -| **Aug 09, 2021** | [Release 7.3.2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3.2) | Fix problem with **ReadTimeout** & **WriteTimeout**. Refer to [#256](https://github.com/bsorrentino/maven-confluence-plugin/issues/256). see the PR [#257](https://github.com/bsorrentino/maven-confluence-plugin/pull/257) for details. Thanks to [qwazer](https://github.com/qwazer) for contribution. | -| **Aug 07, 2021** | [Release 7.3.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3.1) | Refer to [#256](https://github.com/bsorrentino/maven-confluence-plugin/issues/256) for details | -| **Jul 31, 2021** | [Release 7.3](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3) | Refer to discussion [#247](https://github.com/bsorrentino/maven-confluence-plugin/discussions/247) for details | -| **Jul 19, 2021** | [Release 7.2.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.2.1) | Refer to [#253](https://github.com/bsorrentino/maven-confluence-plugin/issues/253) for details | -| **Jun 10, 2021** | [Release 7.2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.2) | Refer to [#252](https://github.com/bsorrentino/maven-confluence-plugin/issues/252) for details | -| **Jun 01, 2021** | [Release 7.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.1) | Refer to [#248](https://github.com/bsorrentino/maven-confluence-plugin/issues/248) for details | -| **May 18, 2021** | [Release 7.0](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0) | Refer to [Major Release 7.0](https://github.com/bsorrentino/maven-confluence-plugin/projects/1) for details | -| **Mar 07, 2021** | [Release 7.0-rc2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-rc2) | Refer to [#245](https://github.com/bsorrentino/maven-confluence-plugin/issues/245) npe when children uri from classpath | -| **Feb 11, 2021** | [Release 7.0-rc1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-rc1) | Refer to [#244](https://github.com/bsorrentino/maven-confluence-plugin/issues/244) processor-freemarker doesn't work on 7.0-beta2. | +| Date | Release | Info | +|------------------|-----------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Jan 4, 2023** | [Release 7.9](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.9) | Fix problem Problem parsing `%` character from markdown to wiki. Refer to [#282](https://github.com/bsorrentino/maven-confluence-plugin/issues/282) that fix [#280](https://github.com/bsorrentino/maven-confluence-plugin/issue/280) | +| **Dec 9, 2022** | [Release 7.8](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.8) | Merged PR [#281](https://github.com/bsorrentino/maven-confluence-plugin/pull/281) that fix [#280](https://github.com/bsorrentino/maven-confluence-plugin/issue/280) "**allows specifying additional HTTP headers in the servers section of settings.xml**". Thanks to [DirkMahler](https://github.com/DirkMahler) for contribution. | +| **Jul 3, 2022** | [Release 7.7](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.7) | Merged PR [#266](https://github.com/bsorrentino/maven-confluence-plugin/pull/266) "**Adding JSON Support**". Thanks to [jksevend](https://github.com/jksevend) for contribution. | +| **Jun 3, 2022** | [Release 7.6](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.6) | Merged PR [#267](https://github.com/bsorrentino/maven-confluence-plugin/pull/267) "**added function to define jira instance baseurl**", that fix issue [#136](https://github.com/bsorrentino/maven-confluence-plugin/issues/136). Thanks to [tspindler](https://github.com/tspindler) for contribution. | +| **Apr 1, 2022** | [Release 7.5](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.5) | Fix empty table cell not handled properly. Refer to [#264](https://github.com/bsorrentino/maven-confluence-plugin/issues/264). | +| **Jan 10, 2022** | [Release 7.4](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.4) | Fix problem with **encoding**. Refer to [#261](https://github.com/bsorrentino/maven-confluence-plugin/issues/261). | +| **Aug 09, 2021** | [Release 7.3.2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3.2) | Fix problem with **ReadTimeout** & **WriteTimeout**. Refer to [#256](https://github.com/bsorrentino/maven-confluence-plugin/issues/256). see the PR [#257](https://github.com/bsorrentino/maven-confluence-plugin/pull/257) for details. Thanks to [qwazer](https://github.com/qwazer) for contribution. | +| **Aug 07, 2021** | [Release 7.3.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3.1) | Refer to [#256](https://github.com/bsorrentino/maven-confluence-plugin/issues/256) for details | +| **Jul 31, 2021** | [Release 7.3](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.3) | Refer to discussion [#247](https://github.com/bsorrentino/maven-confluence-plugin/discussions/247) for details | +| **Jul 19, 2021** | [Release 7.2.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.2.1) | Refer to [#253](https://github.com/bsorrentino/maven-confluence-plugin/issues/253) for details | +| **Jun 10, 2021** | [Release 7.2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.2) | Refer to [#252](https://github.com/bsorrentino/maven-confluence-plugin/issues/252) for details | +| **Jun 01, 2021** | [Release 7.1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.1) | Refer to [#248](https://github.com/bsorrentino/maven-confluence-plugin/issues/248) for details | +| **May 18, 2021** | [Release 7.0](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0) | Refer to [Major Release 7.0](https://github.com/bsorrentino/maven-confluence-plugin/projects/1) for details | +| **Mar 07, 2021** | [Release 7.0-rc2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-rc2) | Refer to [#245](https://github.com/bsorrentino/maven-confluence-plugin/issues/245) npe when children uri from classpath | +| **Feb 11, 2021** | [Release 7.0-rc1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-rc1) | Refer to [#244](https://github.com/bsorrentino/maven-confluence-plugin/issues/244) processor-freemarker doesn't work on 7.0-beta2. | | **Feb 09, 2021** | [Release 7.0-beta2](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-beta2) | Refer to [#240](https://github.com/bsorrentino/maven-confluence-plugin/issues/240) add the `page id` to the deploy history(state) manager.
Refer to [#241](https://github.com/bsorrentino/maven-confluence-plugin/issues/241) Increase socket timeout.
Refer to [#242](https://github.com/bsorrentino/maven-confluence-plugin/issues/242) add i18n titles to ProjectSummaryRenderer and ScmRenderer. **Thanks to [3a04huk ](https://github.com/bsorrentino/maven-confluence-plugin/issues?q=is%3Apr+author%3A3a04huk) for the [PR](https://github.com/bsorrentino/maven-confluence-plugin/pull/243)** | -| **Jan 03, 2021** | [Release 7.0-beta1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-beta1) | This release introduce [multi version jar](http://openjdk.java.net/jeps/238) support. Refer to [#224](https://github.com/bsorrentino/maven-confluence-plugin/issues/224).
From this release the **Pegdown markdown parser** has been removed as dependency and it will be not supported anymore.It has been replaced by **Commonmark** | +| **Jan 03, 2021** | [Release 7.0-beta1](https://github.com/bsorrentino/maven-confluence-plugin/releases/tag/v7.0-beta1) | This release introduce [multi version jar](http://openjdk.java.net/jeps/238) support. Refer to [#224](https://github.com/bsorrentino/maven-confluence-plugin/issues/224).
From this release the **Pegdown markdown parser** has been removed as dependency and it will be not supported anymore.It has been replaced by **Commonmark** | ### [Release History](HISTORY.md) diff --git a/addon-scrollversions/pom.xml b/addon-scrollversions/pom.xml index 413d38a7..42f0697f 100644 --- a/addon-scrollversions/pom.xml +++ b/addon-scrollversions/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 27acb474..40b39dec 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/gitlog+jira/pom.xml b/gitlog+jira/pom.xml index 223dd2b0..07d5c404 100644 --- a/gitlog+jira/pom.xml +++ b/gitlog+jira/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/plugin-reporting/pom.xml b/plugin-reporting/pom.xml index bd31bcee..e96f7ada 100755 --- a/plugin-reporting/pom.xml +++ b/plugin-reporting/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 diff --git a/pom.xml b/pom.xml index e96d5517..151ab6a7 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.bsc.maven maven-confluence-parent pom - 7.9-SNAPSHOT + 7.9 CONFLUENCE-REPORTING::Parent Maven's plugin that allow to generate "project's documentation" directly to confluence allowing, in the same time, to keep in-sync both project & documentation diff --git a/processor-commonmark/pom.xml b/processor-commonmark/pom.xml index b3776c09..3c94b506 100644 --- a/processor-commonmark/pom.xml +++ b/processor-commonmark/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/processor-freemarker/pom.xml b/processor-freemarker/pom.xml index 27046d54..91c23b08 100644 --- a/processor-freemarker/pom.xml +++ b/processor-freemarker/pom.xml @@ -5,7 +5,7 @@ org.bsc.maven maven-confluence-parent - 7.9-SNAPSHOT + 7.9 maven-confluence-processor-freemarker CONFLUENCE-REPORTING::Freemaker::Processor diff --git a/service-rest-api/pom.xml b/service-rest-api/pom.xml index f0aaa983..9b115a3b 100644 --- a/service-rest-api/pom.xml +++ b/service-rest-api/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/service-xmlrpc-api/pom.xml b/service-xmlrpc-api/pom.xml index 260684f1..835ad28b 100644 --- a/service-xmlrpc-api/pom.xml +++ b/service-xmlrpc-api/pom.xml @@ -5,7 +5,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0 diff --git a/test-plugin/pom.xml b/test-plugin/pom.xml index bfc75204..e969eacf 100644 --- a/test-plugin/pom.xml +++ b/test-plugin/pom.xml @@ -6,7 +6,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 diff --git a/test-publishing/pom.xml b/test-publishing/pom.xml index 2ed964df..22a2f8f0 100644 --- a/test-publishing/pom.xml +++ b/test-publishing/pom.xml @@ -3,7 +3,7 @@ maven-confluence-parent org.bsc.maven - 7.9-SNAPSHOT + 7.9 4.0.0