[jira] [Closed] (NETBEANS-3439) Upgrade JavaCC from 3.2 to 7.0.10

2021-04-25 Thread Jose (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jose closed NETBEANS-3439.
--
Resolution: Implemented

Merged into master

> Upgrade JavaCC from 3.2 to 7.0.10
> -
>
> Key: NETBEANS-3439
> URL: https://issues.apache.org/jira/browse/NETBEANS-3439
> Project: NetBeans
>  Issue Type: Improvement
>  Components: db - Code
>Affects Versions: 12.2, 12.3
>Reporter: Jose
>Assignee: Jose
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.4
>
>  Time Spent: 2.5h
>  Remaining Estimate: 0h
>
> Notes:
> -Add support for Java7 language features
> -Requires Java 7
> -Added support for C++
> -Internal refactoring
> -Several bug fixes and enhancements
> [JavaCC Web Page|https://github.com/javacc/javacc]
> [JavaCC Release 
> Notes|https://github.com/javacc/javacc/blob/master/docs/release-notes.md]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



[jira] [Updated] (NETBEANS-5327) closing bracket stays indented in source+format on record class.

2021-04-25 Thread Pieter van den Hombergh (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5327?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pieter van den Hombergh updated NETBEANS-5327:
--
Priority: Critical  (was: Minor)

> closing bracket stays indented in source+format on record class. 
> -
>
> Key: NETBEANS-5327
> URL: https://issues.apache.org/jira/browse/NETBEANS-5327
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Formatting  Indentation
>Affects Versions: 12.2, 12.3
> Environment: ubuntu 20.04 jjdk16 ea netbeans 12.2 and 12.3-beta2
>Reporter: Pieter van den Hombergh
>Priority: Critical
>
> Normally the source formatter puts the class-closing brace 
> at the start of the line.
> This is not the case for java 14+ (preview) record types. Tested on 12.2 and 
> 12.3-beta2 and 1.4-beta1
> Formatting happens when you select soure>format or ctrl+shift+f (linux, 
> windows).
> The problem appears to be related to the canonical constructor definition 
> _before_ the opening braces, because my normal setting
> to put white space before closing parenthesis is also ignored.
> {code:java}
> // Some comments here
> public record IntegerRange( Integer start, Integer end) implements // closing 
> parens should be preceded 
> Range {   //   by whitespace with my 
> settings
> } // offending line, not undented to column 1
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



[jira] [Updated] (NETBEANS-5327) closing bracket stays indented in source+format on record class.

2021-04-25 Thread Pieter van den Hombergh (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5327?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pieter van den Hombergh updated NETBEANS-5327:
--
Affects Version/s: 12.4

> closing bracket stays indented in source+format on record class. 
> -
>
> Key: NETBEANS-5327
> URL: https://issues.apache.org/jira/browse/NETBEANS-5327
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Formatting  Indentation
>Affects Versions: 12.2, 12.3, 12.4
> Environment: ubuntu 20.04 jjdk16 ea netbeans 12.2 and 12.3-beta2
>Reporter: Pieter van den Hombergh
>Priority: Critical
>
> Normally the source formatter puts the class-closing brace 
> at the start of the line.
> This is not the case for java 14+ (preview) record types. Tested on 12.2 and 
> 12.3-beta2 and 1.4-beta1
> Formatting happens when you select soure>format or ctrl+shift+f (linux, 
> windows).
> The problem appears to be related to the canonical constructor definition 
> _before_ the opening braces, because my normal setting
> to put white space before closing parenthesis is also ignored.
> {code:java}
> // Some comments here
> public record IntegerRange( Integer start, Integer end) implements // closing 
> parens should be preceded 
> Range {   //   by whitespace with my 
> settings
> } // offending line, not undented to column 1
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



[jira] [Updated] (NETBEANS-5327) closing bracket stays indented in source+format on record class.

2021-04-25 Thread Pieter van den Hombergh (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5327?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pieter van den Hombergh updated NETBEANS-5327:
--
Description: 
Normally the source formatter puts the class-closing brace 
at the start of the line.
This is not the case for java 14+ (preview) record types. Tested on 12.2 and 
12.3-beta2 and 1.4-beta1

Formatting happens when you select soure>format or ctrl+shift+f (linux, 
windows).
The problem appears to be related to the canonical constructor definition 
_before_ the opening braces, because my normal setting
to put white space before closing parenthesis is also ignored.

{code:java}
// Some comments here
public record IntegerRange( Integer start, Integer end) implements // closing 
parens should be preceded 
Range {   //   by whitespace with my 
settings

} // offending line, not undented to column 1

{code}


  was:
Normally the source formatter puts the class-closing brace 
at the start of the line.
This is not the case for java 14+ (preview) record types. Testes on 12.2 and 
12.3-beta2 

Formatting happens when you select soure>format or ctrl+shift+f (linux, 
windows).
The problem appears to be related to the canonical constructor definition 
_before_ the opening braces, because my normal setting
to put white space before closing parenthesis is also ignored.

{code:java}
// Some comments here
public record IntegerRange( Integer start, Integer end) implements // closing 
parens should be preceded 
Range {   //   by whitespace with my 
settings

} // offending line, not undented to column 1

{code}



> closing bracket stays indented in source+format on record class. 
> -
>
> Key: NETBEANS-5327
> URL: https://issues.apache.org/jira/browse/NETBEANS-5327
> Project: NetBeans
>  Issue Type: Improvement
>  Components: editor - Formatting  Indentation
>Affects Versions: 12.2, 12.3
> Environment: ubuntu 20.04 jjdk16 ea netbeans 12.2 and 12.3-beta2
>Reporter: Pieter van den Hombergh
>Priority: Minor
>
> Normally the source formatter puts the class-closing brace 
> at the start of the line.
> This is not the case for java 14+ (preview) record types. Tested on 12.2 and 
> 12.3-beta2 and 1.4-beta1
> Formatting happens when you select soure>format or ctrl+shift+f (linux, 
> windows).
> The problem appears to be related to the canonical constructor definition 
> _before_ the opening braces, because my normal setting
> to put white space before closing parenthesis is also ignored.
> {code:java}
> // Some comments here
> public record IntegerRange( Integer start, Integer end) implements // closing 
> parens should be preceded 
> Range {   //   by whitespace with my 
> settings
> } // offending line, not undented to column 1
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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



[jira] [Created] (NETBEANS-5619) Basic authentication using a password to Git is deprecated

2021-04-25 Thread Ruslan Lopez Carro (Jira)
Ruslan Lopez Carro created NETBEANS-5619:


 Summary: Basic authentication using a password to Git is deprecated
 Key: NETBEANS-5619
 URL: https://issues.apache.org/jira/browse/NETBEANS-5619
 Project: NetBeans
  Issue Type: Bug
  Components: versioncontrol - Git
Affects Versions: 12.3
Reporter: Ruslan Lopez Carro


When logged in using the git plugin into my GitHub account for cloning a repo I 
received a mail with the text;

 

You recently used a password to access the repository at *** with git using 
JGit/5.7.0.202003110725-r.
 
 Basic authentication using a password to Git is deprecated and will soon no 
longer work. Visit 
[https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/]
 for more information around suggested workarounds and removal dates.

 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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