4.4.4 release

41 views
Skip to first unread message

Julien Viet

unread,
Jun 22, 2023, 7:47:18 AM6/22/23
to vert.x
Hello,

We are very happy to announce the availability of vertx 4.4.4.

All details about the release here: https://vertx.io/blog/eclipse-vert-x-4-4-4/

Many thanks to all the committers and community whose contributions
made this possible.

Enjoy !

Julien on behalf of Vert.x contributors

Julien Viet

unread,
Jun 22, 2023, 8:03:36 AM6/22/23
to vert.x
Forgot to mention that it also fixes a moderate CVE CVE-2023-34462
(https://github.com/advisories/GHSA-6mjq-h674-j845)

Julien

Jack Park

unread,
Aug 26, 2023, 5:43:43 PM8/26/23
to ve...@googlegroups.com
I created a gist which fully explains the error message [1],  which is:
syntax error at or near "," (42601)

<vertx.version>4.3.7</vertx.version>
JDK 11
Platform is an M1 Macbook Pro.

That error code is quite common, but leaves little room for figuring this out.
The SQL is known to work in a non-vertx codebase.

I'll greatly appreciate any insights into what I might have missed.
Many thanks in advance

Jack

Jack Park

unread,
Aug 27, 2023, 1:26:58 PM8/27/23
to ve...@googlegroups.com
A reply on my gist nicely solved that problem - thank you very much!!!, which unmasked a new one.
The revised INSERT now reads
INSERT INTO public.paragraph (doc_id, data) VALUES($1, $2) RETURNING id

but RETURNING is yielding null from row.getlong("id")

This page in the vert.x documentation
suggests
INSERT INTO public.paragraph (doc_id, data) VALUES($1), ($2) RETURNING id
why the difference in VALUES remains a mystery, but, still, RETURNING is failing,even though the database clearly has the object and its "id"

This one's a puzzle!
Thanks in advance for ideas.

Jack


Jack Park

unread,
Aug 27, 2023, 1:53:39 PM8/27/23
to ve...@googlegroups.com
An update:
The online documentation linked earlier, which suggests VALUES ($1), )$2)
causes a failure in the insert.
VALUES ($1, $2)
in fact, works just fine. Still, RETURNING is failing.

Jack Park

unread,
Aug 27, 2023, 2:11:19 PM8/27/23
to ve...@googlegroups.com
Final update:
I really do need a callback. RETURNING is working as intended.
Reply all
Reply to author
Forward
0 new messages