You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/02/03 22:23:28 UTC

[groovy-website] branch asf-site updated (5eb81ec -> 6972285)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git.


    from 5eb81ec  add SQL ginq example to Groovy 4 release notes
     new 7b57b20  add SQL ginq example to Groovy 4 release notes
     new 6972285  add prominence to groovy-jaxb and groovy-bsf removal in Groovy 4 release notes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 site/src/site/releasenotes/groovy-4.0.adoc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

[groovy-website] 02/02: add prominence to groovy-jaxb and groovy-bsf removal in Groovy 4 release notes

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git

commit 69722850b4140ba6870e318a5f48dfe544c3afb4
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Feb 4 08:23:21 2022 +1000

    add prominence to groovy-jaxb and groovy-bsf removal in Groovy 4 release notes
---
 site/src/site/releasenotes/groovy-4.0.adoc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/site/src/site/releasenotes/groovy-4.0.adoc b/site/src/site/releasenotes/groovy-4.0.adoc
index 3c61bd4..ac96ce5 100644
--- a/site/src/site/releasenotes/groovy-4.0.adoc
+++ b/site/src/site/releasenotes/groovy-4.0.adoc
@@ -1129,6 +1129,10 @@ to help improve overall performance of the indy bytecode.
 [[Groovy4.0-breaking]]
 == Other breaking changes
 
+* Groovy added some very minor enhancements when using the link:https://javaee.github.io/jaxb-v2/[JAXB technology] in its optional `groovy-jaxb` module. Since JAXB is link:https://openjdk.java.net/jeps/320[no longer bundled in the JDK], we removed this module. Users wanting that functionality are likely able to use the Groovy 3 version of that module with Groovy 4, though we don't guarantee this going forward.
+(link:https://issues.apache.org/jira/browse/GROOVY-10005[GROOVY-10005]).
+* The optional `groovy-bsf` module provides a Groovy BSF engine for the version 2 of BSF (a.k.a. beanshell) framework. This version hasn't had a release since 2005 and has reached end-of-life. In Groovy 4 we have removed this module. Users wanting that functionality are likely able to use the Groovy 3 version of that module with Groovy 4, though we don't guarantee this going forward.
+(link:https://issues.apache.org/jira/browse/GROOVY-10023[GROOVY-10023]).
 * Numerous classes previously "leaked" ASM constants which are essentially an internal implementation detail by virtue of
 implementing an `Opcodes` interface. This will not normally affect the majority of
 Groovy scripts but might impact code which manipulates AST nodes such as AST transforms.

[groovy-website] 01/02: add SQL ginq example to Groovy 4 release notes

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git

commit 7b57b206c904a429e3589f9f515494d9247248a7
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Jan 31 16:42:05 2022 +1000

    add SQL ginq example to Groovy 4 release notes
---
 site/src/site/releasenotes/groovy-4.0.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/src/site/releasenotes/groovy-4.0.adoc b/site/src/site/releasenotes/groovy-4.0.adoc
index 94f25f3..3c61bd4 100644
--- a/site/src/site/releasenotes/groovy-4.0.adoc
+++ b/site/src/site/releasenotes/groovy-4.0.adoc
@@ -901,7 +901,7 @@ assert GQ {
     limit 2
     select p.name
 }.toList() == ['Kakuda plum', 'Kiwifruit']
-// ... close connect ...
+// ... close connection ...
 --------------------------------------
 
 More examples could be found in the link:../using-ginq.html[GQuery documentation] (or directly in