[jira] [Updated] (GROOVY-11718) Bump jackson to 2.19.2

2025-07-19 Thread Daniel Sun (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-11718?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Sun updated GROOVY-11718: Fix Version/s: 5.x (was: 5.0.0-beta-2) > Bump jackson to 2.19.2 >

[jira] [Closed] (GROOVY-11718) Bump jackson to 2.19.2

2025-07-19 Thread Daniel Sun (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-11718?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Sun closed GROOVY-11718. --- Fix Version/s: 5.0.0-beta-2 Assignee: Daniel Sun Resolution: Fixed > Bump jackson t

[jira] [Created] (GROOVY-11718) Bump jackson to 2.19.2

2025-07-19 Thread Daniel Sun (Jira)
Daniel Sun created GROOVY-11718: --- Summary: Bump jackson to 2.19.2 Key: GROOVY-11718 URL: https://issues.apache.org/jira/browse/GROOVY-11718 Project: Groovy Issue Type: Dependency upgrade

[jira] [Resolved] (GROOVY-11717) Update Groovysh to JLine3: initial version

2025-07-19 Thread Paul King (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-11717?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul King resolved GROOVY-11717. Resolution: Fixed > Update Groovysh to JLine3: initial version >

[jira] [Created] (GROOVY-11717) Update Groovysh to JLine3: initial version

2025-07-19 Thread Paul King (Jira)
Paul King created GROOVY-11717: -- Summary: Update Groovysh to JLine3: initial version Key: GROOVY-11717 URL: https://issues.apache.org/jira/browse/GROOVY-11717 Project: Groovy Issue Type: Sub-tas

[jira] [Commented] (GROOVY-8162) Update Groovysh to JLine3

2025-07-19 Thread ASF GitHub Bot (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-8162?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18008276#comment-18008276 ] ASF GitHub Bot commented on GROOVY-8162: paulk-asert commented on PR #2263: URL:

Re: [PR] GROOVY-8162: Update Groovysh to JLine3 [groovy]

2025-07-19 Thread via GitHub
paulk-asert commented on PR #2263: URL: https://github.com/apache/groovy/pull/2263#issuecomment-3092607872 Looks like I accidentally left some debugging code in play. I'll redo the release. -- This is an automated message from the Apache Git Service. To respond to the message, please log

[jira] [Commented] (GROOVY-8162) Update Groovysh to JLine3

2025-07-19 Thread ASF GitHub Bot (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-8162?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18008248#comment-18008248 ] ASF GitHub Bot commented on GROOVY-8162: eric-milles commented on PR #2263: URL:

Re: [PR] GROOVY-8162: Update Groovysh to JLine3 [groovy]

2025-07-19 Thread via GitHub
eric-milles commented on PR #2263: URL: https://github.com/apache/groovy/pull/2263#issuecomment-3092561266 When I first ran groovysh, it created `/.groovy/aliases.json` as an empty file. Then it went to slurp this in and failed with an exception that it cannot parse empty string as JSON.

Re: [PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
matrei commented on PR #2268: URL: https://github.com/apache/groovy/pull/2268#issuecomment-3092501587 > Don't the name-value pairs come in source order? I would not want them sorted to another order besides that. It does not seem so as the order appears to differ from one build to an

Re: [PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
eric-milles commented on PR #2268: URL: https://github.com/apache/groovy/pull/2268#issuecomment-3092475283 Don't the name-value pairs come in source order? I would not want them sorted to another order besides that. -- This is an automated message from the Apache Git Service. To respond

[jira] [Updated] (GROOVY-11704) Bump junit5 to 5.13.2

2025-07-19 Thread Daniel Sun (Jira)
[ https://issues.apache.org/jira/browse/GROOVY-11704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Sun updated GROOVY-11704: Issue Type: Dependency upgrade (was: Bug) > Bump junit5 to 5.13.2 > - > >

Re: [PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
matrei commented on PR #2268: URL: https://github.com/apache/groovy/pull/2268#issuecomment-3092237938 > AST transformation can add annotations, so I do not think parser is an ideal place to fix the issue. Aha, good point. Is there also a reproducibility issue with annotations added

Re: [PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
codecov-commenter commented on PR #2268: URL: https://github.com/apache/groovy/pull/2268#issuecomment-3092217471 ## [Codecov](https://app.codecov.io/gh/apache/groovy/pull/2268?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&ut

Re: [PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
daniellansun commented on PR #2268: URL: https://github.com/apache/groovy/pull/2268#issuecomment-3092212821 AST transformation can add annotations, so I do not think parser is an ideal place to fix the issue. -- This is an automated message from the Apache Git Service. To respond to the m

[PR] Sort element value pairs in `AstBuilder` for reproducibility [groovy]

2025-07-19 Thread via GitHub
matrei opened a new pull request, #2268: URL: https://github.com/apache/groovy/pull/2268 Sort element value pairs by key before collecting them into a `LinkedHashMap` to ensure consistent iteration order across builds. This change addresses GROOVY-11715 without requiring `TreeMap` usa