You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2020/05/06 23:22:11 UTC

[GitHub] [netbeans] pepness opened a new pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

pepness opened a new pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132


   Notes:
   - New V15 constant
   - Experimental support for PermittedSubtypes and RecordComponent
   - Bug fixes (317885): SKIP_DEBUG now skips MethodParameters attributes
   - Java 14 support (RecordComponent)
   - Bug fixes (317896): Performance degradation when using dynamic constants as a static paramet to another InDy/ConDy
   - Bug fixes (317898): ASM 8 does not support writing of empty records
   
   
   [ASM Web Page](https://asm.ow2.io/index.html)
   [Release Notes](https://asm.ow2.io/versions.html)


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sdedic commented on pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
sdedic commented on pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132#issuecomment-631056344


   @ebarboni I'd say it's safe, but AFAIK no bugfix/feature in the new lib is needed for 12.0; @pepness - what's your opinion ?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] lkishalmi commented on pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
lkishalmi commented on pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132#issuecomment-631201193


   As of me it is good to do the upgrade in 12.1 What depends on it is Gradle Code coverage support. Wth Java 14 Support needs 8.0.1 ASM for Jacoco, however it is not released yet.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] pepness commented on pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
pepness commented on pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132#issuecomment-631179802


   I think it is safe, this version was merged in [JDK-15](https://bugs.openjdk.java.net/browse/JDK-8241627), but it is true that no bugfix/feature in the new lib is needed for 12.0. This library is used by groovy/gradle;@lkishalmi - do you think it is reasonable to update this library every few releases?
   @sdedic does a changes like [this](http://mail.openjdk.java.net/pipermail/core-libs-dev/2018-November/056600.html) would have affected the patching code on NetBeans (we already use ASM7)?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net commented on pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
neilcsmith-net commented on pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132#issuecomment-630676090


   @ebarboni the JIRA ticket has 12.1 on it, which sounds the safer bet!
   
   I wish people would add information from a NetBeans perspective when suggesting library updates - what's it fix / add here?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] ebarboni commented on pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
ebarboni commented on pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132#issuecomment-630673916


   @sdedic safe for 12.0 beta5 ?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] lkishalmi merged pull request #2132: [NETBEANS-4310] - Update asm from 7.2 to 8.0.1

Posted by GitBox <gi...@apache.org>.
lkishalmi merged pull request #2132:
URL: https://github.com/apache/netbeans/pull/2132


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists