[JBoss JIRA] (JBIDE-21265) For JBIDE 4.3.1.Beta1: Code Freeze + Branch [VPE]
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21265?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov reassigned JBIDE-21265:
----------------------------------------------
Assignee: Konstantin Marmalyukov
> For JBIDE 4.3.1.Beta1: Code Freeze + Branch [VPE]
> -------------------------------------------------
>
> Key: JBIDE-21265
> URL: https://issues.jboss.org/browse/JBIDE-21265
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: visual-page-editor-core
> Reporter: Nick Boldt
> Assignee: Konstantin Marmalyukov
> Priority: Blocker
> Labels: task
> Fix For: 4.3.1.Beta1
>
>
> For JBIDE 4.3.1.Beta1 [VPE]: Please perform the following tasks:
> 0. If nothing has changed in your component since the release of JBoss Tools 4.3.0.Final (eg., Portal, Freemarker?), *{color:red}Reject this JIRA{color}*.
> Otherwise:
> 0. Make sure your component has no remaining unresolved JIRAs set for fixVersion = 4.3.1.Beta1
> [Unresolved JIRAs with fixVersion = 4.3.1.Beta1, 9.1.0.Beta1|https://issues.jboss.org/issues/?jql=%28%28project%20%3D%20%2...]
> 1. Ensure your component features/plugins have been [properly upversioned|http://wiki.eclipse.org/Version_Numbering#Overall_example], eg., from 4.3.0 to 4.3.1, 1.2.3 to 1.2.100, or 2.3.100 to 2.3.101
> *NOTE:* If you already did this earlier when we were preparing for Beta1 (after 4.3.0.Final was released), you do *not* need to do so again.
> Please also ensure that the version of your code in the master branch is *greater* than your code in the 4.3.x branch.
> {code}
> mvn -Dtycho.mode=maven org.eclipse.tycho:tycho-versions-plugin:0.24.0:set-version -DnewVersion=4.3.1-SNAPSHOT
> {code}
> 2. Update your root pom to use parent pom version 4.3.1.Beta1-SNAPSHOT.
> {code}
> <parent>
> <groupId>org.jboss.tools</groupId>
> <artifactId>parent</artifactId>
> <version>4.3.1.Beta1-SNAPSHOT</version>
> </parent>
> {code}
> 3. Ensure you've built & run your plugin tests using the latest target platform version 4.50.2.Beta1 (or 4.50.2.Beta1-SNAPSHOT).
> {code}
> mvn clean verify -Dtpc.version=4.50.2.Beta1-SNAPSHOT # (if the TP is still a SNAPSHOT)
> or
> mvn clean verify -Dtpc.version=4.50.2.Beta1 # (if the TP is already released)
> {code}
> 4. Branch from your existing jbosstools-4.3.x branch into a new *{color:blue}jbosstools-4.3.1.Beta1x{color}* branch;
> {code}
> git checkout jbosstools-4.3.x
> git pull origin jbosstools-4.3.x
> git checkout -b jbosstools-4.3.1.Beta1x
> git push origin jbosstools-4.3.1.Beta1x
> {code}
> 5. *NOW THAT YOU HAVE BRANCHED*, check out your *{color:orange}jbosstools-4.3.x branch{color}*.
> {code}
> git checkout jbosstools-4.3.x
> git pull origin jbosstools-4.3.x
> {code}
> 6. Update your *{color:orange}jbosstools-4.3.x branch{color}* parent pom to use the latest version, *{color:orange}4.3.1.Beta2-SNAPSHOT{color}*:
> {code}
> <parent>
> <groupId>org.jboss.tools</groupId>
> <artifactId>parent</artifactId>
> <version>4.3.1.Beta2-SNAPSHOT</version>
> </parent>
> {code}
> Now, your root pom will use parent pom version:
> * *{color:blue}4.3.1.Beta1-SNAPSHOT{color}* in your *{color:blue}jbosstools-4.3.1.Beta1x{color}* branch, and
> * *{color:orange}4.3.1.Beta2-SNAPSHOT{color}* in your *{color:orange}jbosstools-4.3.x{color}* branch.
> 7. Close (do not resolve) this JIRA when done.
> 8. If you have any outstanding [New + Noteworthy JIRAs|https://issues.jboss.org/issues/?jql=%28%28project%20in%20%28JBDS%2...] to do, please complete them next.
> [Search for all task JIRA|https://issues.jboss.org/issues/?jql=%28%28project+in+%28JBDS%29+and...], or [Search for VPE task JIRA|https://issues.jboss.org/issues/?jql=%28%28project+in+%28JBDS%29+and...]
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21036) Infinite cycle in ParametedType.isAssignableTo()
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21036?page=com.atlassian.jira.plugi... ]
Rastislav Wagner closed JBIDE-21036.
------------------------------------
verified in JBDS 9.1.0.Beta1-v20151208-2104-B170
> Infinite cycle in ParametedType.isAssignableTo()
> ------------------------------------------------
>
> Key: JBIDE-21036
> URL: https://issues.jboss.org/browse/JBIDE-21036
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.3.0.Final
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.1.Beta1
>
>
> java.lang.StackOverflowError is reported in
> http://stackoverflow.com/questions/33301776/an-internal-error-occurred-du...
> Infinitely cycling calls are
> org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:398) at org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:402) at org.jboss.tools.common.java.ParametedType.areTypeParametersAssignableTo(ParametedType.java:430)
> Sample that reproduces the stack trace:
> {code}
> public class B {
>
> static class A1<V extends A1<V>> {
> }
> static class A2<T extends A2<T>> extends A1<A2<T>> {
> }
>
> static class A3 extends A2<A3> {
> }
> @Inject
> A1<A2<A3>> q;
> }
> {code}
> One more infinite cycle in ParametedType.equals():
> at org.jboss.tools.common.java.ParametedType.equals(ParametedType.java:171)
> can be reproduced with sample:
> {code}
> public class A<V extends A.B<V>> {
> static class B<V1 extends A.B<V1>> {
> }
> @Inject
> A.B<V> s2;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21287) Infinite cycle in ParametedType.isAssignableTo()
by Rastislav Wagner (JIRA)
Rastislav Wagner created JBIDE-21287:
----------------------------------------
Summary: Infinite cycle in ParametedType.isAssignableTo()
Key: JBIDE-21287
URL: https://issues.jboss.org/browse/JBIDE-21287
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi
Affects Versions: 4.3.0.Final
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Fix For: 4.3.1.Beta1, 4.4.0.Alpha1
java.lang.StackOverflowError is reported in
http://stackoverflow.com/questions/33301776/an-internal-error-occurred-du...
Infinitely cycling calls are
org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:398) at org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:402) at org.jboss.tools.common.java.ParametedType.areTypeParametersAssignableTo(ParametedType.java:430)
Sample that reproduces the stack trace:
{code}
public class B {
static class A1<V extends A1<V>> {
}
static class A2<T extends A2<T>> extends A1<A2<T>> {
}
static class A3 extends A2<A3> {
}
@Inject
A1<A2<A3>> q;
}
{code}
One more infinite cycle in ParametedType.equals():
at org.jboss.tools.common.java.ParametedType.equals(ParametedType.java:171)
can be reproduced with sample:
{code}
public class A<V extends A.B<V>> {
static class B<V1 extends A.B<V1>> {
}
@Inject
A.B<V> s2;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21287) Infinite cycle in ParametedType.isAssignableTo()
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21287?page=com.atlassian.jira.plugi... ]
Rastislav Wagner updated JBIDE-21287:
-------------------------------------
Fix Version/s: (was: 4.3.1.Beta1)
> Infinite cycle in ParametedType.isAssignableTo()
> ------------------------------------------------
>
> Key: JBIDE-21287
> URL: https://issues.jboss.org/browse/JBIDE-21287
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.3.0.Final
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.4.0.Alpha1
>
>
> java.lang.StackOverflowError is reported in
> http://stackoverflow.com/questions/33301776/an-internal-error-occurred-du...
> Infinitely cycling calls are
> org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:398) at org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:402) at org.jboss.tools.common.java.ParametedType.areTypeParametersAssignableTo(ParametedType.java:430)
> Sample that reproduces the stack trace:
> {code}
> public class B {
>
> static class A1<V extends A1<V>> {
> }
> static class A2<T extends A2<T>> extends A1<A2<T>> {
> }
>
> static class A3 extends A2<A3> {
> }
> @Inject
> A1<A2<A3>> q;
> }
> {code}
> One more infinite cycle in ParametedType.equals():
> at org.jboss.tools.common.java.ParametedType.equals(ParametedType.java:171)
> can be reproduced with sample:
> {code}
> public class A<V extends A.B<V>> {
> static class B<V1 extends A.B<V1>> {
> }
> @Inject
> A.B<V> s2;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21287) Infinite cycle in ParametedType.isAssignableTo()
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21287?page=com.atlassian.jira.plugi... ]
Rastislav Wagner resolved JBIDE-21287.
--------------------------------------
Resolution: Done
> Infinite cycle in ParametedType.isAssignableTo()
> ------------------------------------------------
>
> Key: JBIDE-21287
> URL: https://issues.jboss.org/browse/JBIDE-21287
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.3.0.Final
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.4.0.Alpha1
>
>
> java.lang.StackOverflowError is reported in
> http://stackoverflow.com/questions/33301776/an-internal-error-occurred-du...
> Infinitely cycling calls are
> org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:398) at org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:402) at org.jboss.tools.common.java.ParametedType.areTypeParametersAssignableTo(ParametedType.java:430)
> Sample that reproduces the stack trace:
> {code}
> public class B {
>
> static class A1<V extends A1<V>> {
> }
> static class A2<T extends A2<T>> extends A1<A2<T>> {
> }
>
> static class A3 extends A2<A3> {
> }
> @Inject
> A1<A2<A3>> q;
> }
> {code}
> One more infinite cycle in ParametedType.equals():
> at org.jboss.tools.common.java.ParametedType.equals(ParametedType.java:171)
> can be reproduced with sample:
> {code}
> public class A<V extends A.B<V>> {
> static class B<V1 extends A.B<V1>> {
> }
> @Inject
> A.B<V> s2;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21036) Infinite cycle in ParametedType.isAssignableTo()
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21036?page=com.atlassian.jira.plugi... ]
Rastislav Wagner updated JBIDE-21036:
-------------------------------------
Fix Version/s: (was: 4.4.0.Alpha1)
> Infinite cycle in ParametedType.isAssignableTo()
> ------------------------------------------------
>
> Key: JBIDE-21036
> URL: https://issues.jboss.org/browse/JBIDE-21036
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.3.0.Final
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Fix For: 4.3.1.Beta1
>
>
> java.lang.StackOverflowError is reported in
> http://stackoverflow.com/questions/33301776/an-internal-error-occurred-du...
> Infinitely cycling calls are
> org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:398) at org.jboss.tools.common.java.ParametedType.isAssignableTo(ParametedType.java:402) at org.jboss.tools.common.java.ParametedType.areTypeParametersAssignableTo(ParametedType.java:430)
> Sample that reproduces the stack trace:
> {code}
> public class B {
>
> static class A1<V extends A1<V>> {
> }
> static class A2<T extends A2<T>> extends A1<A2<T>> {
> }
>
> static class A3 extends A2<A3> {
> }
> @Inject
> A1<A2<A3>> q;
> }
> {code}
> One more infinite cycle in ParametedType.equals():
> at org.jboss.tools.common.java.ParametedType.equals(ParametedType.java:171)
> can be reproduced with sample:
> {code}
> public class A<V extends A.B<V>> {
> static class B<V1 extends A.B<V1>> {
> }
> @Inject
> A.B<V> s2;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months