Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-05-03 Thread Colin Alworth
Excellent - reach out in https://gitter.im/gwtproject/gwt, 
https://gitter.im/gwtproject/gwt-modules, or https://gitter.im/vertispan/j2cl 
for any discussion around this, and people who are eager to help test.

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

On Sun, May 3, 2020, at 11:40 AM, Manfred Tremmel wrote:
> Am Montag, 20. April 2020, 03:01:12 CEST schrieb Colin Alworth:
> > That said, validation is basically the only thing that _isn't_
> > ready for j2cl, and there is a small gwt-validation project that has gotten
> > started that is compatible with both gwt2 and j2cl - do you have plans to
> > finish https://gitlab.com/ManfredTremmel/gwt-bean-validators/-/issues/3?
> > Both topics (further modularizing gwt-user, and apt for validation) are
> > probably better discussed in another thread, or in gitter.
> 
> I know replacing generators is to long on my todo list and it always was 
> postponed because something else was more important. In June I'm three weeks 
> on vacation and it's on first place of my todo list for this time.
> 
> 
> 
> -- 
> You received this message because you are subscribed to the Google 
> Groups "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to 
> google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/1772943.97skhhT45E%40thinkpad.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/8ccd2e92-4388-4407-85c6-be7168b45a31%40www.fastmail.com.


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-05-03 Thread Manfred Tremmel
Am Montag, 20. April 2020, 03:01:12 CEST schrieb Colin Alworth:
> That said, validation is basically the only thing that _isn't_
> ready for j2cl, and there is a small gwt-validation project that has gotten
> started that is compatible with both gwt2 and j2cl - do you have plans to
> finish https://gitlab.com/ManfredTremmel/gwt-bean-validators/-/issues/3?
> Both topics (further modularizing gwt-user, and apt for validation) are
> probably better discussed in another thread, or in gitter.

I know replacing generators is to long on my todo list and it always was 
postponed because something else was more important. In June I'm three weeks 
on vacation and it's on first place of my todo list for this time.



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


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-23 Thread Colin Alworth
Update on the broken samples in the gwt distribution:

The issue is some kind of interaction between Java 8 and ant - when a URL 
is read from the classloader for a directory within a jar, it had a 
trailing slash. When running the GWT webappcreator from command line, this 
didn't happen, when running within ant in Java 7 this didn't happen.

The patch is up as https://gwt-review.googlesource.com/c/gwt/+/22320.

An alternative fix could be to normalize those paths inside the 
WebAppCreator and remove trailing slashes - we experimented with that at 
first, but once we discovered that it was ant's classloader which was 
causing this and _not_ just Java 8, it made more sense to fork the task. 
This also brings the WebAppCreator task in line with all other  tasks 
in the ant build.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/2aa37e19-95ec-406d-aa96-cf0f1233cb36%40googlegroups.com.


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-20 Thread Juan Pablo Gardella
I verified GWT 2.9.0-RC1 in one of my applications without issues. The
tests I could not complete due an ant issues to build the samples.

Juan

On Sun, 19 Apr 2020 at 22:01, Colin Alworth  wrote:

> We're having an issue related to the java7->java8 update, the build isn't
> properly including the full sources for the included sample projects. By
> itself, not a big deal, but it could imply that other assumptions of the
> ant build are broken too. I'm looking into it, we'll have an updated
> release candidate when we figure it out.
>
> https://github.com/gwtproject/gwt/issues/9682: The 2.9 candidate was cut
> before the java.io changes came in, so this will not be included in the
> first 2.9 at least, though will likely show up later (See the 4th point in
> this email).
>
> Removing validation: as a rule, the main GWT project rarely, if ever,
> removes anything within a major release. This is very deliberate, so that
> updating to the latest release (to fix security issues, to support
> newer/changing/breaking browsers, improve performance) is accessible to
> stable projects in maintenance mode, with no surprises. Since gwt-dev and
> gwt-user are strongly tied to each other, it isn't feasible to even suggest
> that someone update part of their project, but continue to use older jars
> (such as updating the compiler to fix some issue, but still keeping an old
> gwt-user so that the now-deprecated validation doesn't change or
> disappear). This is why each module that is being broken out will now live
> in its own git repo, own jar, and be versioned separately from the others.
> My best guess here is that we can try for a "minimal gwt-user" which just
> has enough to let the compiler work, and assume that developers switch to
> the org.gwtproject modules that they want, plus anything thirdparty like
> validation. That said, validation is basically the only thing that _isn't_
> ready for j2cl, and there is a small gwt-validation project that has gotten
> started that is compatible with both gwt2 and j2cl - do you have plans to
> finish https://gitlab.com/ManfredTremmel/gwt-bean-validators/-/issues/3?
> Both topics (further modularizing gwt-user, and apt for validation) are
> probably better discussed in another thread, or in gitter.
>
> CL 19800: Agreed, sucks that this fell through the cracks. Two thoughts:
> lets get that into gwt-i18n as soon as possible, and lets try to land that
> patch after 2.9.0 is cut and shipped. The plan is that 2.9.x gets updated
> regularly (6-8 weeks sort of thing) with any changes, and marked with a
> date rather than just an occasional version.
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/9b91b87d-4ff7-483a-99cc-356bb4ce00d9%40googlegroups.com
> 
> .
>

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


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-19 Thread Colin Alworth
We're having an issue related to the java7->java8 update, the build isn't 
properly including the full sources for the included sample projects. By 
itself, not a big deal, but it could imply that other assumptions of the 
ant build are broken too. I'm looking into it, we'll have an updated 
release candidate when we figure it out.

https://github.com/gwtproject/gwt/issues/9682: The 2.9 candidate was cut 
before the java.io changes came in, so this will not be included in the 
first 2.9 at least, though will likely show up later (See the 4th point in 
this email).

Removing validation: as a rule, the main GWT project rarely, if ever, 
removes anything within a major release. This is very deliberate, so that 
updating to the latest release (to fix security issues, to support 
newer/changing/breaking browsers, improve performance) is accessible to 
stable projects in maintenance mode, with no surprises. Since gwt-dev and 
gwt-user are strongly tied to each other, it isn't feasible to even suggest 
that someone update part of their project, but continue to use older jars 
(such as updating the compiler to fix some issue, but still keeping an old 
gwt-user so that the now-deprecated validation doesn't change or 
disappear). This is why each module that is being broken out will now live 
in its own git repo, own jar, and be versioned separately from the others. 
My best guess here is that we can try for a "minimal gwt-user" which just 
has enough to let the compiler work, and assume that developers switch to 
the org.gwtproject modules that they want, plus anything thirdparty like 
validation. That said, validation is basically the only thing that _isn't_ 
ready for j2cl, and there is a small gwt-validation project that has gotten 
started that is compatible with both gwt2 and j2cl - do you have plans to 
finish https://gitlab.com/ManfredTremmel/gwt-bean-validators/-/issues/3? 
Both topics (further modularizing gwt-user, and apt for validation) are 
probably better discussed in another thread, or in gitter.

CL 19800: Agreed, sucks that this fell through the cracks. Two thoughts: 
lets get that into gwt-i18n as soon as possible, and lets try to land that 
patch after 2.9.0 is cut and shipped. The plan is that 2.9.x gets updated 
regularly (6-8 weeks sort of thing) with any changes, and marked with a 
date rather than just an occasional version.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/9b91b87d-4ff7-483a-99cc-356bb4ce00d9%40googlegroups.com.


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-19 Thread Thomas Broyer


On Sunday, April 19, 2020 at 6:53:23 PM UTC+2, ManfredTremmel wrote:
>
> correct inherit order, supersource replacements of existing gwt classes). 
>

Speaking of that, it's breaking 
HEAD-SNAPSHOT: 
https://groups.google.com/forum/#!topic/google-web-toolkit/7_-tpK8s_cM 
(see discussion in linked issue)

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/75755e81-7040-4b58-844b-497f5756620f%40googlegroups.com.


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-19 Thread Manfred Tremmel
Hi Colin,

I've build and tested my libs and GWT-Applications this weekend against GWT 
2.9.0-rc1 and elemental2 1.0.0. The good news is, everything compiled and 
workes. I'm happy, to switch elemental2 form 1.0.0-RC1 to 1.0.0, which fixes 
some problems I had in the past, so I can remove some JSNI Workarounds.

System: Debian GNU/Linux 10 with openJDK 11. For years, I don't use browser 
specific permutations, only the "safari". Tested Browsers: Chromium and 
Firefox.

What's the timeline for removing bean validation out of gwt-user package, it's 
nearly four years, since it was deprecated and it's still a hack to get gwt-
bean-validators as replacement into the projects (dependency suppressions, 
correct inherit order, supersource replacements of existing gwt classes).

Manfred

Am Dienstag, 14. April 2020, 04:43:05 CEST schrieb Colin Alworth:
> Hi all,
> We have a build ready to test for GWT 2.9.0, and are looking for volunteers
> to verify that things are behaving properly on a variety of platforms. If
> you have an hour or two free and can help us out, we would appreciate it.
> 
> We're hoping for a cross-section of testing that verifies
>  * JVM version: 8, 11, 14
>  * Operating System: Linux, OS X, Windows (8, 8.1, 10)
>  * Browser: Chrome, Firefox, Safari, IE11, Edge
> 
> If a tester has access to more than one of these at a time, the tests will
> probably go more quickly than two individuals testing the same setup.
> Please note that while Microsoft still provides virtual machines for
> testing purposes, only Windows 10 appears to be available, though with both
> IE11 and Edge
> (https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/).
> 
> Please send me an email off-list with the various options you are able to
> test, and I'll get you on the testing spreadsheet.
> 
> Thanks!



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


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-14 Thread Tony BenBrahim
dev on: JVM 8, Windows 10, Chrome, Firefox. IE11 , Edge
build on Linux, deploy on Linux, QA w/ above browsers

On Tue, Apr 14, 2020 at 1:05 AM Simeon Hearring 
wrote:

> I have JVM 8, OS X, Chrome, Firefox, & Safari.
>
> On Mon, Apr 13, 2020 at 9:43 PM Colin Alworth  wrote:
>
>> Hi all,
>> We have a build ready to test for GWT 2.9.0, and are looking for
>> volunteers to verify that things are behaving properly on a variety of
>> platforms. If you have an hour or two free and can help us out, we would
>> appreciate it.
>>
>> We're hoping for a cross-section of testing that verifies
>>  * JVM version: 8, 11, 14
>>  * Operating System: Linux, OS X, Windows (8, 8.1, 10)
>>  * Browser: Chrome, Firefox, Safari, IE11, Edge
>>
>> If a tester has access to more than one of these at a time, the tests
>> will probably go more quickly than two individuals testing the same setup.
>> Please note that while Microsoft still provides virtual machines for
>> testing purposes, only Windows 10 appears to be available, though with both
>> IE11 and Edge (
>> https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/).
>>
>> Please send me an email off-list with the various options you are able to
>> test, and I'll get you on the testing spreadsheet.
>>
>> Thanks!
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "GWT Contributors" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/c0e7162a-5217-4e89-8c50-ee3c051202c2%40googlegroups.com
>> 
>> .
>>
>
>
> --
> *S.L. Hearring* | 615-545-5137 | simeonlhearr...@gmail.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAB%2B8SXvAx71zcCkK5EouWBK7HC86Rp4UKEArqTykF6CUTCqcCA%40mail.gmail.com
> 
> .
>

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


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-14 Thread Simeon Hearring
I have JVM 8, OS X, Chrome, Firefox, & Safari.

On Mon, Apr 13, 2020 at 9:43 PM Colin Alworth  wrote:

> Hi all,
> We have a build ready to test for GWT 2.9.0, and are looking for
> volunteers to verify that things are behaving properly on a variety of
> platforms. If you have an hour or two free and can help us out, we would
> appreciate it.
>
> We're hoping for a cross-section of testing that verifies
>  * JVM version: 8, 11, 14
>  * Operating System: Linux, OS X, Windows (8, 8.1, 10)
>  * Browser: Chrome, Firefox, Safari, IE11, Edge
>
> If a tester has access to more than one of these at a time, the tests will
> probably go more quickly than two individuals testing the same setup.
> Please note that while Microsoft still provides virtual machines for
> testing purposes, only Windows 10 appears to be available, though with both
> IE11 and Edge (
> https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/).
>
> Please send me an email off-list with the various options you are able to
> test, and I'll get you on the testing spreadsheet.
>
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/c0e7162a-5217-4e89-8c50-ee3c051202c2%40googlegroups.com
> 
> .
>


-- 
*S.L. Hearring* | 615-545-5137 | simeonlhearr...@gmail.com

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


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-13 Thread Colin Alworth
Yeah I’ll send it out once we’ve got some volunteers, and figured out who is 
able to test what configurations. 

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



On Mon, Apr 13, 2020, at 10:00 PM, Juan Pablo Gardella wrote:
> Hi Colin,
> 
> Could you please share the spreadsheet again?
> 
> Juan
> 
> On Mon, 13 Apr 2020 at 23:43, Colin Alworth  wrote:
>> Hi all,
>> We have a build ready to test for GWT 2.9.0, and are looking for volunteers 
>> to verify that things are behaving properly on a variety of platforms. If 
>> you have an hour or two free and can help us out, we would appreciate it.
>> 
>> We're hoping for a cross-section of testing that verifies 
>>  * JVM version: 8, 11, 14
>>  * Operating System: Linux, OS X, Windows (8, 8.1, 10)
>>  * Browser: Chrome, Firefox, Safari, IE11, Edge
>> 
>> If a tester has access to more than one of these at a time, the tests will 
>> probably go more quickly than two individuals testing the same setup. Please 
>> note that while Microsoft still provides virtual machines for testing 
>> purposes, only Windows 10 appears to be available, though with both IE11 and 
>> Edge (https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/).
>> 
>> Please send me an email off-list with the various options you are able to 
>> test, and I'll get you on the testing spreadsheet.
>> 
>> Thanks!
>> 

>> --
>>  You received this message because you are subscribed to the Google Groups 
>> "GWT Contributors" group.
>>  To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
>>  To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-web-toolkit-contributors/c0e7162a-5217-4e89-8c50-ee3c051202c2%40googlegroups.com
>>  
>> .
> 

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

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/daf8600c-308a-44dd-a17b-69f9fa9e2c7c%40www.fastmail.com.


Re: [gwt-contrib] Testing GWT 2.9.0 for release

2020-04-13 Thread Juan Pablo Gardella
Hi Colin,

Could you please share the spreadsheet again?

Juan

On Mon, 13 Apr 2020 at 23:43, Colin Alworth  wrote:

> Hi all,
> We have a build ready to test for GWT 2.9.0, and are looking for
> volunteers to verify that things are behaving properly on a variety of
> platforms. If you have an hour or two free and can help us out, we would
> appreciate it.
>
> We're hoping for a cross-section of testing that verifies
>  * JVM version: 8, 11, 14
>  * Operating System: Linux, OS X, Windows (8, 8.1, 10)
>  * Browser: Chrome, Firefox, Safari, IE11, Edge
>
> If a tester has access to more than one of these at a time, the tests will
> probably go more quickly than two individuals testing the same setup.
> Please note that while Microsoft still provides virtual machines for
> testing purposes, only Windows 10 appears to be available, though with both
> IE11 and Edge (
> https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/).
>
> Please send me an email off-list with the various options you are able to
> test, and I'll get you on the testing spreadsheet.
>
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "GWT Contributors" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit-contributors/c0e7162a-5217-4e89-8c50-ee3c051202c2%40googlegroups.com
> 
> .
>

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