Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-13 Thread Craig Mitchell
Thank you Colin!  You're spot on, found 
it:  
https://mvnrepository.com/artifact/org.gwtproject/gwt-servlet-jakarta/2.11.0

> *Note that this is not compatible with running your jakarta-servlet app 
inside dev mode, but you will need to run your own server separately from 
dev mode. *

Thanks again.  Yep, I'm (now) running with SpringBoot 3 with Embedded 
Tomcat 10.

Cheers.

On Sunday 14 January 2024 at 1:12:03 pm UTC+11 Colin Alworth wrote:

> Craig, you’ll need to change to the -jakarta artifacts. That is, for 
> RemoteServiceServlet, instead of gwt-servlet.jar, use 
> gwt-servlet-jakarta.jar, and the class is in the .rpc.jakarta package to 
> ensure there is no possibility of referencing the wrong type. Change both 
> the jar and your imports to use it. 
>
> Note that this is not compatible with running your jakarta-servlet app 
> inside dev mode, but you will need to run your own server separately from 
> dev mode. 
>
> -- 
>   Colin Alworth
>   co...@colinalworth.com
>
>
> On Sat, Jan 13, 2024, at 7:54 PM, Craig Mitchell wrote:
>
> Awesome!  Thank you GWT team!
>
> Regarding:
>
> *> Added release artifacts for jakarta.servlet packages for both 
> RequestFactory and GWT-RPC.*
>
> When I look at com.google.gwt.user.server.rpc.RemoteServiceServlet, it's 
> still using javax.servlet.http.HttpServlet.  So calls 
> like getThreadLocalRequest() return javax.servlet.http.HttpServletRequest 
> and not jakarta.servlet.http.HttpServletRequest.  Is there another version 
> of RemoteServiceServlet I can use that uses the jakarta classes?
>
> Thanks.
> On Friday 12 January 2024 at 1:28:05 am UTC+11 Filipe Sousa wrote:
>
> 
>
> On Tuesday, January 9, 2024 at 9:36:08 PM UTC Colin Alworth wrote:
>
> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
> second release under the new groupId, be sure when you update to change 
> away from "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
> vulnerable projects are aware of any problem, compile warnings will be 
> emitted if a problem is detected, and the server will default to not 
> allowing any vulnerable RemoteService instances. See 
> https://github.com/gwtproject/gwt/issues/9709 for information on the 
> issue, how we're responding to it, and how any additional follow-up might 
> look.
>
> Other highlights:
>
>- Transitioned to GitHub pull requests for new contributions, with 
>nightly builds running on GitHub Actions.
>- Added release artifacts for jakarta.servlet packages for both 
>RequestFactory and GWT-RPC.
>- Tested support for running on Java 21. This is likely to be the 
>final minor release series to support running on Java 8.
>- Updated JRE emulation to support Java 11 for Collections, streams, 
>and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
> complete release notes.
>
> This release wouldn't have been possible without help from so many 
> contributors, including developers, testers, and sponsors. A short list of 
> the teams and individuals that directly brought us this release: Juan Pablo 
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
> Insurance Insight Inc. Join us on the issue tracker 
>  or at our OpenCollective page 
>  to help make future releases 
> possible.
>
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to google-web-tool...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-web-toolkit/cc9f18b3-1bfd-43f0-b2bc-e694a04f6fb5n%40googlegroups.com
>  
> 
> .
>
>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/2b4f5616-d5a3-45aa-b248-c2defddf056bn%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-13 Thread Colin Alworth
Craig, you’ll need to change to the -jakarta artifacts. That is, for 
RemoteServiceServlet, instead of gwt-servlet.jar, use gwt-servlet-jakarta.jar, 
and the class is in the .rpc.jakarta package to ensure there is no possibility 
of referencing the wrong type. Change both the jar and your imports to use it. 

Note that this is not compatible with running your jakarta-servlet app inside 
dev mode, but you will need to run your own server separately from dev mode. 

-- 
  Colin Alworth
  co...@colinalworth.com


On Sat, Jan 13, 2024, at 7:54 PM, Craig Mitchell wrote:
> Awesome!  Thank you GWT team!
> 
> Regarding:
> **
> *> Added release artifacts for jakarta.servlet packages for both 
> RequestFactory and GWT-RPC.*
> 
> When I look at com.google.gwt.user.server.rpc.RemoteServiceServlet, it's 
> still using javax.servlet.http.HttpServlet.  So calls like 
> getThreadLocalRequest() return javax.servlet.http.HttpServletRequest and not 
> jakarta.servlet.http.HttpServletRequest.  Is there another version of 
> RemoteServiceServlet I can use that uses the jakarta classes?
> 
> Thanks.
> On Friday 12 January 2024 at 1:28:05 am UTC+11 Filipe Sousa wrote:
>> 
>> 
>> On Tuesday, January 9, 2024 at 9:36:08 PM UTC Colin Alworth wrote:
>>> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
>>> second release under the new groupId, be sure when you update to change 
>>> away from "com.google.gwt", as it will not get more updates.
>>> 
>>> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
>>> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
>>> vulnerable projects are aware of any problem, compile warnings will be 
>>> emitted if a problem is detected, and the server will default to not 
>>> allowing any vulnerable RemoteService instances. See 
>>> https://github.com/gwtproject/gwt/issues/9709 for information on the issue, 
>>> how we're responding to it, and how any additional follow-up might look.
>>> 
>>> Other highlights:
>>>  • Transitioned to GitHub pull requests for new contributions, with nightly 
>>> builds running on GitHub Actions.
>>>  • Added release artifacts for jakarta.servlet packages for both 
>>> RequestFactory and GWT-RPC.
>>>  • Tested support for running on Java 21. This is likely to be the final 
>>> minor release series to support running on Java 8.
>>>  • Updated JRE emulation to support Java 11 for Collections, streams, and 
>>> more.
>>> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
>>> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
>>> complete release notes.
>>> 
>>> This release wouldn't have been possible without help from so many 
>>> contributors, including developers, testers, and sponsors. A short list of 
>>> the teams and individuals that directly brought us this release: Juan Pablo 
>>> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
>>> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
>>> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
>>> Insurance Insight Inc. Join us on the issue tracker 
>>>  or at our OpenCollective page 
>>>  to help make future releases 
>>> possible.
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-web-toolkit/cc9f18b3-1bfd-43f0-b2bc-e694a04f6fb5n%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/bb932383-0db9-45c5-a8f1-74bbc4f619eb%40app.fastmail.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-13 Thread Craig Mitchell
Awesome!  Thank you GWT team!

Regarding:

*> Added release artifacts for jakarta.servlet packages for both 
RequestFactory and GWT-RPC.*

When I look at com.google.gwt.user.server.rpc.RemoteServiceServlet, it's 
still using javax.servlet.http.HttpServlet.  So calls 
like getThreadLocalRequest() return javax.servlet.http.HttpServletRequest 
and not jakarta.servlet.http.HttpServletRequest.  Is there another version 
of RemoteServiceServlet I can use that uses the jakarta classes?

Thanks.

On Friday 12 January 2024 at 1:28:05 am UTC+11 Filipe Sousa wrote:

> 
>
> On Tuesday, January 9, 2024 at 9:36:08 PM UTC Colin Alworth wrote:
>
>> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
>> second release under the new groupId, be sure when you update to change 
>> away from "com.google.gwt", as it will not get more updates.
>>
>> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
>> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
>> vulnerable projects are aware of any problem, compile warnings will be 
>> emitted if a problem is detected, and the server will default to not 
>> allowing any vulnerable RemoteService instances. See 
>> https://github.com/gwtproject/gwt/issues/9709 for information on the 
>> issue, how we're responding to it, and how any additional follow-up might 
>> look.
>>
>> Other highlights:
>>
>>- Transitioned to GitHub pull requests for new contributions, with 
>>nightly builds running on GitHub Actions.
>>- Added release artifacts for jakarta.servlet packages for both 
>>RequestFactory and GWT-RPC.
>>- Tested support for running on Java 21. This is likely to be the 
>>final minor release series to support running on Java 8.
>>- Updated JRE emulation to support Java 11 for Collections, streams, 
>>and more.
>>
>> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
>> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
>> complete release notes.
>>
>> This release wouldn't have been possible without help from so many 
>> contributors, including developers, testers, and sponsors. A short list of 
>> the teams and individuals that directly brought us this release: Juan Pablo 
>> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
>> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
>> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
>> Insurance Insight Inc. Join us on the issue tracker 
>>  or at our OpenCollective page 
>>  to help make future releases 
>> possible.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/cc9f18b3-1bfd-43f0-b2bc-e694a04f6fb5n%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread Filipe Sousa


On Tuesday, January 9, 2024 at 9:36:08 PM UTC Colin Alworth wrote:

> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
> second release under the new groupId, be sure when you update to change 
> away from "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
> vulnerable projects are aware of any problem, compile warnings will be 
> emitted if a problem is detected, and the server will default to not 
> allowing any vulnerable RemoteService instances. See 
> https://github.com/gwtproject/gwt/issues/9709 for information on the 
> issue, how we're responding to it, and how any additional follow-up might 
> look.
>
> Other highlights:
>
>- Transitioned to GitHub pull requests for new contributions, with 
>nightly builds running on GitHub Actions.
>- Added release artifacts for jakarta.servlet packages for both 
>RequestFactory and GWT-RPC.
>- Tested support for running on Java 21. This is likely to be the 
>final minor release series to support running on Java 8.
>- Updated JRE emulation to support Java 11 for Collections, streams, 
>and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
> complete release notes.
>
> This release wouldn't have been possible without help from so many 
> contributors, including developers, testers, and sponsors. A short list of 
> the teams and individuals that directly brought us this release: Juan Pablo 
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
> Insurance Insight Inc. Join us on the issue tracker 
>  or at our OpenCollective page 
>  to help make future releases 
> possible.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/c9cca5aa-7a43-4224-9909-baf760eb5190n%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread lofid...@gmail.com
Great work GWT Team!

Thanks a lot!

Lofi

am...@mun.co.il schrieb am Donnerstag, 11. Januar 2024 um 10:56:43 UTC+1:

> Thank you!
>
> On Tuesday, January 9, 2024 at 11:36:08 PM UTC+2 Colin Alworth wrote:
>
>> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
>> second release under the new groupId, be sure when you update to change 
>> away from "com.google.gwt", as it will not get more updates.
>>
>> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
>> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
>> vulnerable projects are aware of any problem, compile warnings will be 
>> emitted if a problem is detected, and the server will default to not 
>> allowing any vulnerable RemoteService instances. See 
>> https://github.com/gwtproject/gwt/issues/9709 for information on the 
>> issue, how we're responding to it, and how any additional follow-up might 
>> look.
>>
>> Other highlights:
>>
>>- Transitioned to GitHub pull requests for new contributions, with 
>>nightly builds running on GitHub Actions.
>>- Added release artifacts for jakarta.servlet packages for both 
>>RequestFactory and GWT-RPC.
>>- Tested support for running on Java 21. This is likely to be the 
>>final minor release series to support running on Java 8.
>>- Updated JRE emulation to support Java 11 for Collections, streams, 
>>and more.
>>
>> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
>> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
>> complete release notes.
>>
>> This release wouldn't have been possible without help from so many 
>> contributors, including developers, testers, and sponsors. A short list of 
>> the teams and individuals that directly brought us this release: Juan Pablo 
>> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
>> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
>> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
>> Insurance Insight Inc. Join us on the issue tracker 
>>  or at our OpenCollective page 
>>  to help make future releases 
>> possible.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/b4afb9d3-a3eb-40a5-98db-59d950ba0742n%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-11 Thread am...@mun.co.il
Thank you!

On Tuesday, January 9, 2024 at 11:36:08 PM UTC+2 Colin Alworth wrote:

> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
> second release under the new groupId, be sure when you update to change 
> away from "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
> vulnerable projects are aware of any problem, compile warnings will be 
> emitted if a problem is detected, and the server will default to not 
> allowing any vulnerable RemoteService instances. See 
> https://github.com/gwtproject/gwt/issues/9709 for information on the 
> issue, how we're responding to it, and how any additional follow-up might 
> look.
>
> Other highlights:
>
>- Transitioned to GitHub pull requests for new contributions, with 
>nightly builds running on GitHub Actions.
>- Added release artifacts for jakarta.servlet packages for both 
>RequestFactory and GWT-RPC.
>- Tested support for running on Java 21. This is likely to be the 
>final minor release series to support running on Java 8.
>- Updated JRE emulation to support Java 11 for Collections, streams, 
>and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
> complete release notes.
>
> This release wouldn't have been possible without help from so many 
> contributors, including developers, testers, and sponsors. A short list of 
> the teams and individuals that directly brought us this release: Juan Pablo 
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
> Insurance Insight Inc. Join us on the issue tracker 
>  or at our OpenCollective page 
>  to help make future releases 
> possible.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/140ebe0b-c616-4338-b150-b95a6489389dn%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-10 Thread Adrian Smith
Thanks for all the work you put in to GWT! Much appreciated! Really looking 
forward to the improved Collections support myself.

On Wednesday, January 10, 2024 at 12:30:29 PM UTC+1 Giuseppe La Scaleia 
wrote:

> Great work guys.
>
>
> Giuseppe La Scaleia
> CNR - IMAA
> geoSDI
> Sviluppo Software
>
> C.da S. Loja
> 85050  Tito Scalo - POTENZA (PZ)
> Italia
>
> phone:  +39 0971427305 <+39%200971%20427305>
> fax:  +39 0971 427271 <+39%200971%20427271>
> mob:+39 331 2174998 <+39%20331%20217%204998>
> mail: glasc...@gmail.com
> skype:  glascaleia
>
> web: https://www.geosdi.org
>
>
>  
>
>
> Il giorno mar 9 gen 2024 alle ore 22:36 Colin Alworth <
> co...@colinalworth.com> ha scritto:
>
>> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
>> second release under the new groupId, be sure when you update to change 
>> away from "com.google.gwt", as it will not get more updates.
>>
>> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
>> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
>> vulnerable projects are aware of any problem, compile warnings will be 
>> emitted if a problem is detected, and the server will default to not 
>> allowing any vulnerable RemoteService instances. See 
>> https://github.com/gwtproject/gwt/issues/9709 for information on the 
>> issue, how we're responding to it, and how any additional follow-up might 
>> look.
>>
>> Other highlights:
>>
>>- Transitioned to GitHub pull requests for new contributions, with 
>>nightly builds running on GitHub Actions.
>>- Added release artifacts for jakarta.servlet packages for both 
>>RequestFactory and GWT-RPC.
>>- Tested support for running on Java 21. This is likely to be the 
>>final minor release series to support running on Java 8.
>>- Updated JRE emulation to support Java 11 for Collections, streams, 
>>and more.
>>
>> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
>> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
>> complete release notes.
>>
>> This release wouldn't have been possible without help from so many 
>> contributors, including developers, testers, and sponsors. A short list of 
>> the teams and individuals that directly brought us this release: Juan Pablo 
>> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
>> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
>> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
>> Insurance Insight Inc. Join us on the issue tracker 
>>  or at our OpenCollective page 
>>  to help make future releases 
>> possible.
>>
>> -- 
>>
> You received this message because you are subscribed to the Google Groups 
>> "GWT Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-tool...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit/17887d7a-ee71-4dd6-bd21-8365a91536dbn%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/ee846b70-de18-476f-aa41-0f7f5aa5ffben%40googlegroups.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-10 Thread Giuseppe La Scaleia
Great work guys.


Giuseppe La Scaleia
CNR - IMAA
geoSDI
Sviluppo Software

C.da S. Loja
85050  Tito Scalo - POTENZA (PZ)
Italia

phone:  +39 0971427305
fax:  +39 0971 427271
mob:+39 331 2174998
mail: glascal...@gmail.com
skype:  glascaleia

web: https://www.geosdi.org





Il giorno mar 9 gen 2024 alle ore 22:36 Colin Alworth <
co...@colinalworth.com> ha scritto:

> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our
> second release under the new groupId, be sure when you update to change
> away from "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly
> suggest updating at least to 2.10.1 as soon as possible. To ensure that
> vulnerable projects are aware of any problem, compile warnings will be
> emitted if a problem is detected, and the server will default to not
> allowing any vulnerable RemoteService instances. See
> https://github.com/gwtproject/gwt/issues/9709 for information on the
> issue, how we're responding to it, and how any additional follow-up might
> look.
>
> Other highlights:
>
>- Transitioned to GitHub pull requests for new contributions, with
>nightly builds running on GitHub Actions.
>- Added release artifacts for jakarta.servlet packages for both
>RequestFactory and GWT-RPC.
>- Tested support for running on Java 21. This is likely to be the
>final minor release series to support running on Java 8.
>- Updated JRE emulation to support Java 11 for Collections, streams,
>and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for
> complete release notes.
>
> This release wouldn't have been possible without help from so many
> contributors, including developers, testers, and sponsors. A short list of
> the teams and individuals that directly brought us this release: Juan Pablo
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas,
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa,
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software,
> Insurance Insight Inc. Join us on the issue tracker
>  or at our OpenCollective page
>  to help make future releases
> possible.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/17887d7a-ee71-4dd6-bd21-8365a91536dbn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CAAY8snD1xB2UBBG%2BODPnz2JJWF4-AoVnSz19dynerVZxhtO7KA%40mail.gmail.com.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-10 Thread David Nouls
Nice to see such a quick follow-up to a security finding and also fast progress 
for Java 17/21 support!

Kind regards
David Nouls
On 9 Jan 2024 at 22:36 +0100, Colin Alworth , wrote:
> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our second 
> release under the new groupId, be sure when you update to change away from 
> "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
> vulnerable projects are aware of any problem, compile warnings will be 
> emitted if a problem is detected, and the server will default to not allowing 
> any vulnerable RemoteService instances. See 
> https://github.com/gwtproject/gwt/issues/9709 for information on the issue, 
> how we're responding to it, and how any additional follow-up might look.
>
> Other highlights:
>
> • Transitioned to GitHub pull requests for new contributions, with nightly 
> builds running on GitHub Actions.
> • Added release artifacts for jakarta.servlet packages for both 
> RequestFactory and GWT-RPC.
> • Tested support for running on Java 21. This is likely to be the final minor 
> release series to support running on Java 8.
> • Updated JRE emulation to support Java 11 for Collections, streams, and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
> complete release notes.
>
> This release wouldn't have been possible without help from so many 
> contributors, including developers, testers, and sponsors. A short list of 
> the teams and individuals that directly brought us this release: Juan Pablo 
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, Insurance 
> Insight Inc. Join us on the issue tracker or at our OpenCollective page to 
> help make future releases possible.
> --
> You received this message because you are subscribed to the Google Groups 
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-web-toolkit/17887d7a-ee71-4dd6-bd21-8365a91536dbn%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/3e4587b1-c5fa-4bc9-a0f8-d4e27cb06d1f%40Spark.


Re: Announcing GWT 2.10.1 and 2.11 releases

2024-01-09 Thread Aaron Davidson
A heartfelt thank-you to Colin & all contributors! 

On Tuesday, January 9, 2024 at 1:36:08 PM UTC-8 Colin Alworth wrote:

> I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
> second release under the new groupId, be sure when you update to change 
> away from "com.google.gwt", as it will not get more updates.
>
> If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
> suggest updating at least to 2.10.1 as soon as possible. To ensure that 
> vulnerable projects are aware of any problem, compile warnings will be 
> emitted if a problem is detected, and the server will default to not 
> allowing any vulnerable RemoteService instances. See 
> https://github.com/gwtproject/gwt/issues/9709 for information on the 
> issue, how we're responding to it, and how any additional follow-up might 
> look.
>
> Other highlights:
>
>- Transitioned to GitHub pull requests for new contributions, with 
>nightly builds running on GitHub Actions.
>- Added release artifacts for jakarta.servlet packages for both 
>RequestFactory and GWT-RPC.
>- Tested support for running on Java 21. This is likely to be the 
>final minor release series to support running on Java 8.
>- Updated JRE emulation to support Java 11 for Collections, streams, 
>and more.
>
> See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
> https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
> complete release notes.
>
> This release wouldn't have been possible without help from so many 
> contributors, including developers, testers, and sponsors. A short list of 
> the teams and individuals that directly brought us this release: Juan Pablo 
> Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
> Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
> Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
> Insurance Insight Inc. Join us on the issue tracker 
>  or at our OpenCollective page 
>  to help make future releases 
> possible.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/d8e38bd6-6310-4073-a547-a5dc7147d063n%40googlegroups.com.


Announcing GWT 2.10.1 and 2.11 releases

2024-01-09 Thread Colin Alworth
I'm excited to announce the release of 2.10.1 and 2.11.0! This is our 
second release under the new groupId, be sure when you update to change 
away from "com.google.gwt", as it will not get more updates.

If you use GWT-RPC and JPA/JDO annotations in your project, we strongly 
suggest updating at least to 2.10.1 as soon as possible. To ensure that 
vulnerable projects are aware of any problem, compile warnings will be 
emitted if a problem is detected, and the server will default to not 
allowing any vulnerable RemoteService instances. See 
https://github.com/gwtproject/gwt/issues/9709 for information on the issue, 
how we're responding to it, and how any additional follow-up might look.

Other highlights:

   - Transitioned to GitHub pull requests for new contributions, with 
   nightly builds running on GitHub Actions.
   - Added release artifacts for jakarta.servlet packages for both 
   RequestFactory and GWT-RPC.
   - Tested support for running on Java 21. This is likely to be the final 
   minor release series to support running on Java 8.
   - Updated JRE emulation to support Java 11 for Collections, streams, and 
   more.

See https://github.com/gwtproject/gwt/releases/tag/2.11.0 or 
https://www.gwtproject.org/release-notes.html#Release_Notes_2_11_0 for 
complete release notes.

This release wouldn't have been possible without help from so many 
contributors, including developers, testers, and sponsors. A short list of 
the teams and individuals that directly brought us this release: Juan Pablo 
Gardella, Rocco De Angelis, Frank Hossfeld, Manfred Tremmel, Jim Douglas, 
Zbynek Konecny, Piotr Lewandowski, Axel Uhl, Thomas Broyer, Filipe Sousa, 
Sandra Parsick, Jens Nehlmeier, Schubec GmbH, Tom Sawyer Software, 
Insurance Insight Inc. Join us on the issue tracker 
 or at our OpenCollective page 
 to help make future releases 
possible.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/17887d7a-ee71-4dd6-bd21-8365a91536dbn%40googlegroups.com.