[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809703&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809703
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 17/Sep/22 00:30
Start Date: 17/Sep/22 00:30
Worklog Time Spent: 10m 
  Work Description: tisonkun commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249958768

   I may write something like:
   
   ```diff
   diff --git 
a/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java 
b/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java
   index b68a994f3..dcecbca06 100644
   -

Issue Time Tracking
---

Worklog Id: (was: 809703)
Time Spent: 1h 10m  (was: 1h)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] tisonkun commented on pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


tisonkun commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249958768

   I may write something like:
   
   ```diff
   diff --git 
a/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java 
b/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java
   index b68a994f3..dcecbca06 100644
   --- a/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java
   +++ b/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java
   @@ -480,7 +480,8 @@ public void 
testReadDeclaredNamedStaticFieldForceAccess() throws Exception {
@Test
public void testReadField() throws Exception {
final Field parentS = FieldUtils.getDeclaredField(parentClass, "s");
   -assertEquals("s", FieldUtils.readField(parentS, publicChild));
   +String s = FieldUtils.readField(parentS, publicChild);
   +assertEquals("s", s);
assertEquals("s", FieldUtils.readField(parentS, 
publiclyShadowedChild));
assertEquals("s", FieldUtils.readField(parentS, 
privatelyShadowedChild));
final Field parentB = FieldUtils.getDeclaredField(parentClass, "b", 
true);
   ```
   
   to prove this change works. But it seems useless.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809702&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809702
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 17/Sep/22 00:27
Start Date: 17/Sep/22 00:27
Worklog Time Spent: 10m 
  Work Description: tisonkun commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249957756

   > This PR has no matching tests.
   
   Please read the description:
   
   > * it won't affect user cases as long as the type can be inferred by the 
recipient or JDK rules
   > * This patch doesn't cause extra class cast exception ...
   
   No existing tests break is fine. I don't know how to add a new effective 
test.




Issue Time Tracking
---

Worklog Id: (was: 809702)
Time Spent: 1h  (was: 50m)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 1h
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] tisonkun commented on pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


tisonkun commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249957756

   > This PR has no matching tests.
   
   Please read the description:
   
   > * it won't affect user cases as long as the type can be inferred by the 
recipient or JDK rules
   > * This patch doesn't cause extra class cast exception ...
   
   No existing tests break is fine. I don't know how to add a new effective 
test.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809700&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809700
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 17/Sep/22 00:26
Start Date: 17/Sep/22 00:26
Worklog Time Spent: 10m 
  Work Description: tisonkun commented on code in PR #951:
URL: https://github.com/apache/commons-lang/pull/951#discussion_r973514708


##
src/main/java/org/apache/commons/lang3/builder/ReflectionDiffBuilder.java:
##
@@ -110,8 +110,9 @@ private void appendFields(final Class clazz) {
 for (final Field field : FieldUtils.getAllFields(clazz)) {
 if (accept(field)) {
 try {
-diffBuilder.append(field.getName(), readField(field, left, 
true),
-readField(field, right, true));
+Object leftObject = readField(field, left, true);

Review Comment:
   Please read the description:
   
   > There's a case as shown in `ReflectionDiffBuilder.java` that if the type 
inference results in ambiguity, it may cause compile error.





Issue Time Tracking
---

Worklog Id: (was: 809700)
Time Spent: 50m  (was: 40m)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 50m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] tisonkun commented on a diff in pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


tisonkun commented on code in PR #951:
URL: https://github.com/apache/commons-lang/pull/951#discussion_r973514708


##
src/main/java/org/apache/commons/lang3/builder/ReflectionDiffBuilder.java:
##
@@ -110,8 +110,9 @@ private void appendFields(final Class clazz) {
 for (final Field field : FieldUtils.getAllFields(clazz)) {
 if (accept(field)) {
 try {
-diffBuilder.append(field.getName(), readField(field, left, 
true),
-readField(field, right, true));
+Object leftObject = readField(field, left, true);

Review Comment:
   Please read the description:
   
   > There's a case as shown in `ReflectionDiffBuilder.java` that if the type 
inference results in ambiguity, it may cause compile error.



-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809699&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809699
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 17/Sep/22 00:23
Start Date: 17/Sep/22 00:23
Worklog Time Spent: 10m 
  Work Description: garydgregory commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249956745

   This PR has no matching tests.




Issue Time Tracking
---

Worklog Id: (was: 809699)
Time Spent: 40m  (was: 0.5h)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] garydgregory commented on pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


garydgregory commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249956745

   This PR has no matching tests.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809698&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809698
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 17/Sep/22 00:22
Start Date: 17/Sep/22 00:22
Worklog Time Spent: 10m 
  Work Description: garydgregory commented on code in PR #951:
URL: https://github.com/apache/commons-lang/pull/951#discussion_r973514167


##
src/main/java/org/apache/commons/lang3/builder/ReflectionDiffBuilder.java:
##
@@ -110,8 +110,9 @@ private void appendFields(final Class clazz) {
 for (final Field field : FieldUtils.getAllFields(clazz)) {
 if (accept(field)) {
 try {
-diffBuilder.append(field.getName(), readField(field, left, 
true),
-readField(field, right, true));
+Object leftObject = readField(field, left, true);

Review Comment:
   Is this change needed for the type changes? Please revert it otherwise.





Issue Time Tracking
---

Worklog Id: (was: 809698)
Time Spent: 0.5h  (was: 20m)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] garydgregory commented on a diff in pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


garydgregory commented on code in PR #951:
URL: https://github.com/apache/commons-lang/pull/951#discussion_r973514167


##
src/main/java/org/apache/commons/lang3/builder/ReflectionDiffBuilder.java:
##
@@ -110,8 +110,9 @@ private void appendFields(final Class clazz) {
 for (final Field field : FieldUtils.getAllFields(clazz)) {
 if (accept(field)) {
 try {
-diffBuilder.append(field.getName(), readField(field, left, 
true),
-readField(field, right, true));
+Object leftObject = readField(field, left, true);

Review Comment:
   Is this change needed for the type changes? Please revert it otherwise.



-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] tisonkun commented on a diff in pull request #904: Add tests to increase coverage

2022-09-16 Thread GitBox


tisonkun commented on code in PR #904:
URL: https://github.com/apache/commons-lang/pull/904#discussion_r973510629


##
src/test/java/org/apache/commons/lang3/ArchUtilsTest.java:
##
@@ -113,6 +113,10 @@ public void testArchLabels() {
 public void testGetProcessor() {
 assertNotNull(ArchUtils.getProcessor(X86));
 assertNull(ArchUtils.getProcessor("NA"));
+
+final Processor processor = ArchUtils.getProcessor();
+assertTrue(processor.isX86());

Review Comment:
   This test will fail on machines with other arches (e.g. Apple M1 returns 
`Processor.Type.AARCH_64`). I suggest we remove it.
   
   cc @garydgregory @arturobernalg 



-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809694&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809694
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 16/Sep/22 23:59
Start Date: 16/Sep/22 23:59
Worklog Time Spent: 10m 
  Work Description: codecov-commenter commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249944308

   # 
[Codecov](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#951](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (1720f16) into 
[master](https://codecov.io/gh/apache/commons-lang/commit/e81855a208c909f46e1bf346d7982bd77be13476?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e81855a) will **increase** coverage by `0.00%`.
   > The diff coverage is `100.00%`.
   
   ```diff
   @@Coverage Diff@@
   ## master #951   +/-   ##
   =
 Coverage 91.98%   91.98%   
 Complexity 7423 7423   
   =
 Files   189  189   
 Lines 1566615667+1 
 Branches   2913 2913   
   =
   + Hits  1441114412+1 
 Misses  677  677   
 Partials578  578   
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...e/commons/lang3/builder/ReflectionDiffBuilder.java](https://codecov.io/gh/apache/commons-lang/pull/951/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvbGFuZzMvYnVpbGRlci9SZWZsZWN0aW9uRGlmZkJ1aWxkZXIuamF2YQ==)
 | `91.30% <100.00%> (+0.39%)` | :arrow_up: |
   | 
[...a/org/apache/commons/lang3/reflect/FieldUtils.java](https://codecov.io/gh/apache/commons-lang/pull/951/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvbGFuZzMvcmVmbGVjdC9GaWVsZFV0aWxzLmphdmE=)
 | `93.33% <100.00%> (ø)` | |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   




Issue Time Tracking
---

Worklog Id: (was: 809694)
Time Spent: 20m  (was: 10m)

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] codecov-commenter commented on pull request #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


codecov-commenter commented on PR #951:
URL: https://github.com/apache/commons-lang/pull/951#issuecomment-1249944308

   # 
[Codecov](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#951](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (1720f16) into 
[master](https://codecov.io/gh/apache/commons-lang/commit/e81855a208c909f46e1bf346d7982bd77be13476?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e81855a) will **increase** coverage by `0.00%`.
   > The diff coverage is `100.00%`.
   
   ```diff
   @@Coverage Diff@@
   ## master #951   +/-   ##
   =
 Coverage 91.98%   91.98%   
 Complexity 7423 7423   
   =
 Files   189  189   
 Lines 1566615667+1 
 Branches   2913 2913   
   =
   + Hits  1441114412+1 
 Misses  677  677   
 Partials578  578   
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-lang/pull/951?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...e/commons/lang3/builder/ReflectionDiffBuilder.java](https://codecov.io/gh/apache/commons-lang/pull/951/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvbGFuZzMvYnVpbGRlci9SZWZsZWN0aW9uRGlmZkJ1aWxkZXIuamF2YQ==)
 | `91.30% <100.00%> (+0.39%)` | :arrow_up: |
   | 
[...a/org/apache/commons/lang3/reflect/FieldUtils.java](https://codecov.io/gh/apache/commons-lang/pull/951/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvbGFuZzMvcmVmbGVjdC9GaWVsZFV0aWxzLmphdmE=)
 | `93.33% <100.00%> (ø)` | |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1692?focusedWorklogId=809693&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809693
 ]

ASF GitHub Bot logged work on LANG-1692:


Author: ASF GitHub Bot
Created on: 16/Sep/22 23:57
Start Date: 16/Sep/22 23:57
Worklog Time Spent: 10m 
  Work Description: tisonkun opened a new pull request, #951:
URL: https://github.com/apache/commons-lang/pull/951

   This patch should be easy to understand.
   
   Generally, it won't affect user cases as long as the type can be inferred by 
the recipient or JDK rules. There's a case as shown in 
`ReflectionDiffBuilder.java` that if the type inference results in ambiguity, 
it may cause compile error.
   
   Thus, I'm unsure whether this is proper to be included with a minor version 
bump. I don't think to add another series of methods helps - it causes further 
confusion.




Issue Time Tracking
---

Worklog Id: (was: 809693)
Remaining Estimate: 0h
Time Spent: 10m

> Cast FieldUtils.readField result to the recipient type
> --
>
> Key: LANG-1692
> URL: https://issues.apache.org/jira/browse/LANG-1692
> Project: Commons Lang
>  Issue Type: Task
>  Components: lang.reflect.*
>Reporter: Zili Chen
>Priority: Major
>  Time Spent: 10m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] tisonkun opened a new pull request, #951: [LANG-1692] Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread GitBox


tisonkun opened a new pull request, #951:
URL: https://github.com/apache/commons-lang/pull/951

   This patch should be easy to understand.
   
   Generally, it won't affect user cases as long as the type can be inferred by 
the recipient or JDK rules. There's a case as shown in 
`ReflectionDiffBuilder.java` that if the type inference results in ambiguity, 
it may cause compile error.
   
   Thus, I'm unsure whether this is proper to be included with a minor version 
bump. I don't think to add another series of methods helps - it causes further 
confusion.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Created] (LANG-1692) Cast FieldUtils.readField result to the recipient type

2022-09-16 Thread Zili Chen (Jira)
Zili Chen created LANG-1692:
---

 Summary: Cast FieldUtils.readField result to the recipient type
 Key: LANG-1692
 URL: https://issues.apache.org/jira/browse/LANG-1692
 Project: Commons Lang
  Issue Type: Task
  Components: lang.reflect.*
Reporter: Zili Chen






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (LANG-959) FieldUtils write methods do not write to final fields.

2022-09-16 Thread Zili Chen (Jira)


[ 
https://issues.apache.org/jira/browse/LANG-959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17606014#comment-17606014
 ] 

Zili Chen commented on LANG-959:


Perhaps we can close this issue as {{removeFinalModifier}} also gets deprecated 
after JDK12:


{code:java}
As of Java 12, we can no longer drop the {@code final} modifier, thus rendering 
this method obsolete. The JDK discussion about this change can be found here: 
https://mail.openjdk.java.net/pipermail/core-libs-dev/2018-November/056486.html
{code}

IIRC {{powermock-reflect}}'s {{WhiteBox}} can still workaround this restriction 
by force updating the field by {{Unsafe}}, but it may not be we will expect?


> FieldUtils write methods do not write to final fields.
> --
>
> Key: LANG-959
> URL: https://issues.apache.org/jira/browse/LANG-959
> Project: Commons Lang
>  Issue Type: Improvement
>  Components: lang.reflect.*
>Affects Versions: 3.2.1
> Environment: Apache Maven 3.1.1 
> (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 11:22:22-0400)
> Maven home: C:\Java\apache-maven-3.1.1\bin\..
> Java version: 1.7.0_51, vendor: Oracle Corporation
> Java home: C:\Program Files\Java\jdk1.7.0_51\jre
> Default locale: en_US, platform encoding: Cp1252
> OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"
>Reporter: Gary D. Gregory
>Assignee: Gary D. Gregory
>Priority: Major
> Fix For: Review Patch
>
> Attachments: LANG-959.diff
>
>
> I have a use case where I need to use reflection to set a public static final 
> Object.
> This does not work with our FieldUtils class because the "forceAccess" 
> argument is only used to deal with field visibility by calling 
> Field#setAccessible(boolean)
> Q1: Should "forceAccess" be expanded to remove the final modifier? Or:
> Q2: Should we add another boolean parameter "forceWrite" to remove the FINAL 
> modifier?
> I like Q1.
> Q3: The Accessible flag is NOT reset if changed after a write! I think it 
> should be. Thoughts?
> The attached patch implements this BUT does not fix failing tests that expect 
> writes to fail on final fields. I left the tests failing to show clearly 
> which ones fail so we can discuss if:
> - this fixes a bug, 
> - is an improvement acceptable for the next release
> - or breaks too much for the next release
> Discuss here or on the ML.
> Thank you.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-beanutils] codecov-commenter commented on pull request #133: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


codecov-commenter commented on PR #133:
URL: 
https://github.com/apache/commons-beanutils/pull/133#issuecomment-1249927790

   # 
[Codecov](https://codecov.io/gh/apache/commons-beanutils/pull/133?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#133](https://codecov.io/gh/apache/commons-beanutils/pull/133?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (cc8856b) into 
[master](https://codecov.io/gh/apache/commons-beanutils/commit/224c8381b7104f553bf9369a30ab339d3f4560da?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (224c838) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #133   +/-   ##
   =
 Coverage 64.57%   64.57%   
 Complexity 1555 1555   
   =
 Files   105  105   
 Lines  5796 5796   
 Branches   1060 1060   
   =
 Hits   3743 3743   
 Misses 1607 1607   
 Partials446  446   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-validator] codecov-commenter commented on pull request #82: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


codecov-commenter commented on PR #82:
URL: https://github.com/apache/commons-validator/pull/82#issuecomment-1249926956

   # 
[Codecov](https://codecov.io/gh/apache/commons-validator/pull/82?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#82](https://codecov.io/gh/apache/commons-validator/pull/82?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (a96d559) into 
[master](https://codecov.io/gh/apache/commons-validator/commit/a2761680c45449d5027b491acfa4ad612a4d73b8?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (a276168) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master  #82   +/-   ##
   =
 Coverage 71.90%   71.90%   
 Complexity 1137 1137   
   =
 Files63   63   
 Lines  3157 3157   
 Branches542  542   
   =
 Hits   2270 2270   
 Misses  693  693   
 Partials194  194   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-beanutils] dependabot[bot] opened a new pull request, #133: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #133:
URL: https://github.com/apache/commons-beanutils/pull/133

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807

[GitHub] [commons-validator] dependabot[bot] opened a new pull request, #82: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #82:
URL: https://github.com/apache/commons-validator/pull/82

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";

[GitHub] [commons-configuration] kinow merged pull request #210: Bump slf4j.version from 2.0.0 to 2.0.1

2022-09-16 Thread GitBox


kinow merged PR #210:
URL: https://github.com/apache/commons-configuration/pull/210


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] codecov-commenter commented on pull request #210: Bump slf4j.version from 2.0.0 to 2.0.1

2022-09-16 Thread GitBox


codecov-commenter commented on PR #210:
URL: 
https://github.com/apache/commons-configuration/pull/210#issuecomment-1249922682

   # 
[Codecov](https://codecov.io/gh/apache/commons-configuration/pull/210?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#210](https://codecov.io/gh/apache/commons-configuration/pull/210?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (3132167) into 
[master](https://codecov.io/gh/apache/commons-configuration/commit/a400698744acbcec97ec57017f2214a630145799?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (a400698) will **increase** coverage by `0.01%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master #210  +/-   ##
   
   + Coverage 89.00%   89.01%   +0.01% 
   - Complexity 3528 3529   +1 
   
 Files   183  183  
 Lines  9642 9642  
 Branches   1196 1196  
   
   + Hits   8582 8583   +1 
 Misses  777  777  
   + Partials283  282   -1 
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-configuration/pull/210?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[...commons/configuration2/tree/InMemoryNodeModel.java](https://codecov.io/gh/apache/commons-configuration/pull/210/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29uZmlndXJhdGlvbjIvdHJlZS9Jbk1lbW9yeU5vZGVNb2RlbC5qYXZh)
 | `97.27% <0.00%> (+0.38%)` | :arrow_up: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] kinow commented on pull request #210: Bump slf4j.version from 2.0.0 to 2.0.1

2022-09-16 Thread GitBox


kinow commented on PR #210:
URL: 
https://github.com/apache/commons-configuration/pull/210#issuecomment-1249920425

   @dependabot rebase


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] kinow merged pull request #211: Bump spring.version from 5.3.22 to 5.3.23

2022-09-16 Thread GitBox


kinow merged PR #211:
URL: https://github.com/apache/commons-configuration/pull/211


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] kinow merged pull request #212: Bump snakeyaml from 1.31 to 1.32

2022-09-16 Thread GitBox


kinow merged PR #212:
URL: https://github.com/apache/commons-configuration/pull/212


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] kinow commented on pull request #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


kinow commented on PR #950:
URL: https://github.com/apache/commons-lang/pull/950#issuecomment-1249774066

   > The newer version is not authorized by Apache Infra.
   
   Ah goof to know. I will revert the commons io pr I merged. Thanks


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-text] codecov-commenter commented on pull request #356: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


codecov-commenter commented on PR #356:
URL: https://github.com/apache/commons-text/pull/356#issuecomment-1249757780

   # 
[Codecov](https://codecov.io/gh/apache/commons-text/pull/356?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#356](https://codecov.io/gh/apache/commons-text/pull/356?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (c4642b4) into 
[master](https://codecov.io/gh/apache/commons-text/commit/393d98fec9be26f4758d9ed24cdd84c019e04d73?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (393d98f) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #356   +/-   ##
   =
 Coverage 96.44%   96.44%   
 Complexity 2338 2338   
   =
 Files84   84   
 Lines  5821 5821   
 Branches957  957   
   =
 Hits   5614 5614   
 Misses  128  128   
 Partials 79   79   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-text] dependabot[bot] opened a new pull request, #356: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #356:
URL: https://github.com/apache/commons-text/pull/356

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>os

[GitHub] [commons-bcel] codecov-commenter commented on pull request #145: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


codecov-commenter commented on PR #145:
URL: https://github.com/apache/commons-bcel/pull/145#issuecomment-1249709053

   # 
[Codecov](https://codecov.io/gh/apache/commons-bcel/pull/145?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#145](https://codecov.io/gh/apache/commons-bcel/pull/145?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (557d2a4) into 
[master](https://codecov.io/gh/apache/commons-bcel/commit/cdc37f0b14501815b3581251e37c021d1bd6ae92?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (cdc37f0) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #145   +/-   ##
   =
 Coverage 44.21%   44.21%   
 Complexity 2511 2511   
   =
 Files   362  362   
 Lines 1604016040   
 Branches   2053 2053   
   =
 Hits   7092 7092   
 Misses 8236 8236   
 Partials712  712   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-rdf] dependabot[bot] opened a new pull request, #90: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #90:
URL: https://github.com/apache/commons-rdf/pull/90

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>ossf/

[GitHub] [commons-bcel] dependabot[bot] opened a new pull request, #145: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #145:
URL: https://github.com/apache/commons-bcel/pull/145

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>os

[jira] [Commented] (COMMONSSITE-163) Xcom not returned while using 'BeamRunJavaPipelineOperator'.

2022-09-16 Thread Raj Prakash Kante (Jira)


[ 
https://issues.apache.org/jira/browse/COMMONSSITE-163?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17605957#comment-17605957
 ] 

Raj Prakash Kante commented on COMMONSSITE-163:
---

Actually my software is not listed in the projects list.

On Sat, Sep 17, 2022, 12:02 AM Gary D. Gregory (Jira) 



> Xcom not returned while using 'BeamRunJavaPipelineOperator'.
> 
>
> Key: COMMONSSITE-163
> URL: https://issues.apache.org/jira/browse/COMMONSSITE-163
> Project: Apache Commons All
>  Issue Type: Bug
>Reporter: Raj Prakash Kante
>Priority: Major
>
> I was using 'BeamRunJavaPipelineOperator' to run a java jar to ingest data 
> using dataflow from google cloud storage to Bigquery using a airflow DAG.The 
> dataflow job is submitted successfully but I want to wait until the dataflow 
> job runs successfully in the background and then move on to the next task.I 
> am thinking to tackle this using 'DataflowJobStatusSensor' which checks the 
> status of the job in the background. This requires the job ID we want to 
> check which is supposed to be returned as a Xcom by the 
> 'BeamRunJavaPipelineOperator' but it does not return the desired Xcom.
>  
>  
>  
> start_java_pipeline = BeamRunJavaPipelineOperator(
> task_id="start_java_pipeline",
> runner='dataflow',
> jar="",
> pipeline_options={'airflowBucket': '',
> 'jobName': '',
> 'inputfileBucket': '',
> 'maxNumWorkers': '10',
> 'targetTableProject': '',
> 'datasetName': '',
> 'serviceAccount': '',
> 'runConfig': '',
> 'project': '',
> 'workerMachineType': 'n1-standard-2',
> 'region': '',
> 'subnetwork': "",
> 'usePublicIps': 'false',
> 'stagingLocation': '',
> 'tempLocation': ''
> },
> job_class='',
> do_xcom_push=True,
> dag=dag)
>  
>  
> wait_for_done = DataflowJobStatusSensor(
> task_id="wait-for-java-dataflow",
> job_id="\{{task_instance.xcom_pull('Get_job_id')}}",
> expected_statuses=\{DataflowJobStatus.JOB_STATE_DONE},
> project_id="xxx-xx-xxx",
> gcp_conn_id='google_cloud_default',
> location='us-central1',
> )
> start_java_pipeline  >> wait_for_done
>  
> Using "DataFlowJavaOperator" I am able to get the jobid to the xcom and fetch 
> the same using "DataflowJobStatusSensor" without any issues.But this is a 
> deprecated operator.
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (LANG-1677) It should be possible to exclude fields in ReflectionDiffBuilder

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/LANG-1677?focusedWorklogId=809618&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809618
 ]

ASF GitHub Bot logged work on LANG-1677:


Author: ASF GitHub Bot
Created on: 16/Sep/22 18:32
Start Date: 16/Sep/22 18:32
Worklog Time Spent: 10m 
  Work Description: garydgregory commented on PR #838:
URL: https://github.com/apache/commons-lang/pull/838#issuecomment-1249681336

   I'll look over the weekend. 




Issue Time Tracking
---

Worklog Id: (was: 809618)
Time Spent: 2h 50m  (was: 2h 40m)

> It should be possible to exclude fields in ReflectionDiffBuilder
> 
>
> Key: LANG-1677
> URL: https://issues.apache.org/jira/browse/LANG-1677
> Project: Commons Lang
>  Issue Type: Wish
>  Components: lang.builder.*
>Affects Versions: 3.12.0
>Reporter: Dennis Baerten
>Priority: Major
>  Time Spent: 2h 50m
>  Remaining Estimate: 0h
>
> When using ReflectionDiffBuilder to make a diff between two object it will be 
> default include all fields. As stated in the documentation static and 
> transient fields are excluded.
> Using the transient modifier in combination with other frameworks ( such as 
> Hibernate ) also has a side affect that those fields are not persisted.
> The use case I'm trying to solve it making a diff of an object that get's 
> updated and has a LastModificationDate and LastModificationUser and thus will 
> always be a field in the diff.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] garydgregory commented on pull request #838: LANG-1677 : Add ReflectionDiffBuilder.setExcludeFieldNames(...) and DiffExclude a…

2022-09-16 Thread GitBox


garydgregory commented on PR #838:
URL: https://github.com/apache/commons-lang/pull/838#issuecomment-1249681336

   I'll look over the weekend. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Commented] (COMMONSSITE-163) Xcom not returned while using 'BeamRunJavaPipelineOperator'.

2022-09-16 Thread Gary D. Gregory (Jira)


[ 
https://issues.apache.org/jira/browse/COMMONSSITE-163?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17605954#comment-17605954
 ] 

Gary D. Gregory commented on COMMONSSITE-163:
-

Only you know what software you are using...

> Xcom not returned while using 'BeamRunJavaPipelineOperator'.
> 
>
> Key: COMMONSSITE-163
> URL: https://issues.apache.org/jira/browse/COMMONSSITE-163
> Project: Apache Commons All
>  Issue Type: Bug
>Reporter: Raj Prakash Kante
>Priority: Major
>
> I was using 'BeamRunJavaPipelineOperator' to run a java jar to ingest data 
> using dataflow from google cloud storage to Bigquery using a airflow DAG.The 
> dataflow job is submitted successfully but I want to wait until the dataflow 
> job runs successfully in the background and then move on to the next task.I 
> am thinking to tackle this using 'DataflowJobStatusSensor' which checks the 
> status of the job in the background. This requires the job ID we want to 
> check which is supposed to be returned as a Xcom by the 
> 'BeamRunJavaPipelineOperator' but it does not return the desired Xcom.
>  
>  
>  
> start_java_pipeline = BeamRunJavaPipelineOperator(
> task_id="start_java_pipeline",
> runner='dataflow',
> jar="",
> pipeline_options={'airflowBucket': '',
> 'jobName': '',
> 'inputfileBucket': '',
> 'maxNumWorkers': '10',
> 'targetTableProject': '',
> 'datasetName': '',
> 'serviceAccount': '',
> 'runConfig': '',
> 'project': '',
> 'workerMachineType': 'n1-standard-2',
> 'region': '',
> 'subnetwork': "",
> 'usePublicIps': 'false',
> 'stagingLocation': '',
> 'tempLocation': ''
> },
> job_class='',
> do_xcom_push=True,
> dag=dag)
>  
>  
> wait_for_done = DataflowJobStatusSensor(
> task_id="wait-for-java-dataflow",
> job_id="\{{task_instance.xcom_pull('Get_job_id')}}",
> expected_statuses=\{DataflowJobStatus.JOB_STATE_DONE},
> project_id="xxx-xx-xxx",
> gcp_conn_id='google_cloud_default',
> location='us-central1',
> )
> start_java_pipeline  >> wait_for_done
>  
> Using "DataFlowJavaOperator" I am able to get the jobid to the xcom and fetch 
> the same using "DataflowJobStatusSensor" without any issues.But this is a 
> deprecated operator.
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Work logged] (COMPRESS-614) Use FileTime for time fields in SevenZipArchiveEntry

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COMPRESS-614?focusedWorklogId=809617&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809617
 ]

ASF GitHub Bot logged work on COMPRESS-614:
---

Author: ASF GitHub Bot
Created on: 16/Sep/22 18:30
Start Date: 16/Sep/22 18:30
Worklog Time Spent: 10m 
  Work Description: garydgregory commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249679402

   Sweet 




Issue Time Tracking
---

Worklog Id: (was: 809617)
Time Spent: 3.5h  (was: 3h 20m)

> Use FileTime for time fields in SevenZipArchiveEntry
> 
>
> Key: COMPRESS-614
> URL: https://issues.apache.org/jira/browse/COMPRESS-614
> Project: Commons Compress
>  Issue Type: Improvement
>  Components: Archivers
>Affects Versions: 1.21
>Reporter: Andre Brait
>Priority: Major
>  Labels: 7zip
>  Time Spent: 3.5h
>  Remaining Estimate: 0h
>
> Instead of java.util.Date, which caps precision in milliseconds, let's move 
> on to using FileTime.
> We can keep backwards compatibility through the getters and setters for 
> modification, access and creation dates.
> If you're ok with it, I'll send a PR for this.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-compress] garydgregory commented on pull request #256: COMPRESS-614: Use FileTime in SevenZArchiveEntry

2022-09-16 Thread GitBox


garydgregory commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249679402

   Sweet 


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (COMPRESS-614) Use FileTime for time fields in SevenZipArchiveEntry

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COMPRESS-614?focusedWorklogId=809598&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809598
 ]

ASF GitHub Bot logged work on COMPRESS-614:
---

Author: ASF GitHub Bot
Created on: 16/Sep/22 16:58
Start Date: 16/Sep/22 16:58
Worklog Time Spent: 10m 
  Work Description: andrebrait commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249585579

   @garydgregory I'm finally back to working on this. I see some missed lines 
in the coverage report. Gonna add the tests for them later.




Issue Time Tracking
---

Worklog Id: (was: 809598)
Time Spent: 3h 20m  (was: 3h 10m)

> Use FileTime for time fields in SevenZipArchiveEntry
> 
>
> Key: COMPRESS-614
> URL: https://issues.apache.org/jira/browse/COMPRESS-614
> Project: Commons Compress
>  Issue Type: Improvement
>  Components: Archivers
>Affects Versions: 1.21
>Reporter: Andre Brait
>Priority: Major
>  Labels: 7zip
>  Time Spent: 3h 20m
>  Remaining Estimate: 0h
>
> Instead of java.util.Date, which caps precision in milliseconds, let's move 
> on to using FileTime.
> We can keep backwards compatibility through the getters and setters for 
> modification, access and creation dates.
> If you're ok with it, I'll send a PR for this.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-compress] andrebrait commented on pull request #256: COMPRESS-614: Use FileTime in SevenZArchiveEntry

2022-09-16 Thread GitBox


andrebrait commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249585579

   @garydgregory I'm finally back to working on this. I see some missed lines 
in the coverage report. Gonna add the tests for them later.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[jira] [Work logged] (COMPRESS-614) Use FileTime for time fields in SevenZipArchiveEntry

2022-09-16 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/COMPRESS-614?focusedWorklogId=809589&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809589
 ]

ASF GitHub Bot logged work on COMPRESS-614:
---

Author: ASF GitHub Bot
Created on: 16/Sep/22 16:43
Start Date: 16/Sep/22 16:43
Worklog Time Spent: 10m 
  Work Description: codecov-commenter commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249574174

   # 
[Codecov](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#256](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (69d5de0) into 
[master](https://codecov.io/gh/apache/commons-compress/commit/e3f549320eb384d0a85208ae0ce1f760f9148f1d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e3f5493) will **decrease** coverage by `0.00%`.
   > The diff coverage is `77.90%`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master #256  +/-   ##
   
   - Coverage 80.05%   80.05%   -0.01% 
   - Complexity 6620 6645  +25 
   
 Files   339  340   +1 
 Lines 2541625461  +45 
 Branches   4199 4202   +3 
   
   + Hits  2034620382  +36 
   - Misses 3471 3480   +9 
 Partials   1599 1599  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[.../compress/archivers/sevenz/SevenZArchiveEntry.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3NldmVuei9TZXZlblpBcmNoaXZlRW50cnkuamF2YQ==)
 | `75.00% <53.84%> (-6.82%)` | :arrow_down: |
   | 
[...che/commons/compress/archivers/zip/X000A\_NTFS.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3ppcC9YMDAwQV9OVEZTLmphdmE=)
 | `66.66% <79.16%> (+5.79%)` | :arrow_up: |
   | 
[...ns/compress/archivers/sevenz/SevenZOutputFile.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3NldmVuei9TZXZlblpPdXRwdXRGaWxlLmphdmE=)
 | `96.94% <87.50%> (+0.49%)` | :arrow_up: |
   | 
[...ommons/compress/archivers/tar/TarArchiveEntry.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3Rhci9UYXJBcmNoaXZlRW50cnkuamF2YQ==)
 | `71.71% <100.00%> (ø)` | |
   | 
[...a/org/apache/commons/compress/utils/TimeUtils.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvdXRpbHMvVGltZVV0aWxzLmphdmE=)
 | `100.00% <100.00%> (ø)` | |
   | 
[.../commons/compress/compressors/bzip2/BlockSort.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvY29tcHJlc3NvcnMvYnppcDIvQmxvY2tTb3J0LmphdmE=)
 | `84.27% <0.00%> (-0.47%)` | :arrow_down: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   




Issue Time Tracking

[GitHub] [commons-compress] codecov-commenter commented on pull request #256: COMPRESS-614: Use FileTime in SevenZArchiveEntry

2022-09-16 Thread GitBox


codecov-commenter commented on PR #256:
URL: https://github.com/apache/commons-compress/pull/256#issuecomment-1249574174

   # 
[Codecov](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#256](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (69d5de0) into 
[master](https://codecov.io/gh/apache/commons-compress/commit/e3f549320eb384d0a85208ae0ce1f760f9148f1d?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e3f5493) will **decrease** coverage by `0.00%`.
   > The diff coverage is `77.90%`.
   
   ```diff
   @@ Coverage Diff  @@
   ## master #256  +/-   ##
   
   - Coverage 80.05%   80.05%   -0.01% 
   - Complexity 6620 6645  +25 
   
 Files   339  340   +1 
 Lines 2541625461  +45 
 Branches   4199 4202   +3 
   
   + Hits  2034620382  +36 
   - Misses 3471 3480   +9 
 Partials   1599 1599  
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/commons-compress/pull/256?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 | Coverage Δ | |
   |---|---|---|
   | 
[.../compress/archivers/sevenz/SevenZArchiveEntry.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3NldmVuei9TZXZlblpBcmNoaXZlRW50cnkuamF2YQ==)
 | `75.00% <53.84%> (-6.82%)` | :arrow_down: |
   | 
[...che/commons/compress/archivers/zip/X000A\_NTFS.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3ppcC9YMDAwQV9OVEZTLmphdmE=)
 | `66.66% <79.16%> (+5.79%)` | :arrow_up: |
   | 
[...ns/compress/archivers/sevenz/SevenZOutputFile.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3NldmVuei9TZXZlblpPdXRwdXRGaWxlLmphdmE=)
 | `96.94% <87.50%> (+0.49%)` | :arrow_up: |
   | 
[...ommons/compress/archivers/tar/TarArchiveEntry.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvYXJjaGl2ZXJzL3Rhci9UYXJBcmNoaXZlRW50cnkuamF2YQ==)
 | `71.71% <100.00%> (ø)` | |
   | 
[...a/org/apache/commons/compress/utils/TimeUtils.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvdXRpbHMvVGltZVV0aWxzLmphdmE=)
 | `100.00% <100.00%> (ø)` | |
   | 
[.../commons/compress/compressors/bzip2/BlockSort.java](https://codecov.io/gh/apache/commons-compress/pull/256/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-c3JjL21haW4vamF2YS9vcmcvYXBhY2hlL2NvbW1vbnMvY29tcHJlc3MvY29tcHJlc3NvcnMvYnppcDIvQmxvY2tTb3J0LmphdmE=)
 | `84.27% <0.00%> (-0.47%)` | :arrow_down: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] dependabot[bot] commented on pull request #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] commented on PR #950:
URL: https://github.com/apache/commons-lang/pull/950#issuecomment-1249557655

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] garydgregory closed pull request #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


garydgregory closed pull request #950: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-lang/pull/950


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] garydgregory commented on pull request #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


garydgregory commented on PR #950:
URL: https://github.com/apache/commons-lang/pull/950#issuecomment-1249557615

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory merged pull request #63: Bump exec-maven-plugin from 3.0.0 to 3.1.0

2022-09-16 Thread GitBox


garydgregory merged PR #63:
URL: https://github.com/apache/commons-scxml/pull/63


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory merged pull request #62: Bump groovy from 3.0.10 to 3.0.12

2022-09-16 Thread GitBox


garydgregory merged PR #62:
URL: https://github.com/apache/commons-scxml/pull/62


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] codecov-commenter commented on pull request #209: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


codecov-commenter commented on PR #209:
URL: 
https://github.com/apache/commons-configuration/pull/209#issuecomment-1249541669

   # 
[Codecov](https://codecov.io/gh/apache/commons-configuration/pull/209?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#209](https://codecov.io/gh/apache/commons-configuration/pull/209?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (f964421) into 
[master](https://codecov.io/gh/apache/commons-configuration/commit/0c3ad3d56a382e5653d07b9cc5821b97581ee744?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (0c3ad3d) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #209   +/-   ##
   =
 Coverage 89.01%   89.01%   
 Complexity 3529 3529   
   =
 Files   183  183   
 Lines  9642 9642   
 Branches   1196 1196   
   =
 Hits   8583 8583   
 Misses  777  777   
 Partials282  282   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-daemon] dependabot[bot] opened a new pull request, #54: Bump ossf/scorecard-action from 1.1.2 to 2.0.3

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #54:
URL: https://github.com/apache/commons-daemon/pull/54

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>os

[GitHub] [commons-configuration] dependabot[bot] opened a new pull request, #212: Bump snakeyaml from 1.31 to 1.32

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #212:
URL: https://github.com/apache/commons-configuration/pull/212

   Bumps [snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 1.31 to 
1.32.
   
   Commits
   
   https://bitbucket.org/snakeyaml/snakeyaml/commits/b8239ec552366e54dfe67077dee42c88d96dc6c5";>b8239ec
 Add warning about untrusted data on landing page
   https://bitbucket.org/snakeyaml/snakeyaml/commits/28534206a328b4ac4446a948e596785536c65479";>2853420
 Merge remote-tracking branch 'origin/master'
   https://bitbucket.org/snakeyaml/snakeyaml/commits/4b3d996848c988b4b2a5d753bdac1766083966a9";>4b3d996
 Merged master into format-2
   https://bitbucket.org/snakeyaml/snakeyaml/commits/4081e0854e668608d0fa993a7811d3a5fb4222c3";>4081e08
 Reformat with IntelliJ
   https://bitbucket.org/snakeyaml/snakeyaml/commits/0305c0420fb0cee466c3a4489cd006e7e848a944";>0305c04
 Reformat tests with IntelliJ
   https://bitbucket.org/snakeyaml/snakeyaml/commits/fedd984dbc1f018ce75b1868791e9eea54204a9f";>fedd984
 Reformat with IntelliJ
   https://bitbucket.org/snakeyaml/snakeyaml/commits/e5985fa40eafa19783fbc2161813ea43e0934898";>e5985fa
 Reformat tests with IntelliJ
   https://bitbucket.org/snakeyaml/snakeyaml/commits/ebad791333afee13bfd48fd9cf1ff6dab5faa51a";>ebad791
 Move formatting to Maven profile
   https://bitbucket.org/snakeyaml/snakeyaml/commits/72dfa9f1074abe2b8a6c8776bee4476b0aed02e3";>72dfa9f
 Set the limit for incoming data to prevent a CVE report in NIST
   https://bitbucket.org/snakeyaml/snakeyaml/commits/5e56066540d72a4e2aae7d918f92406686076ceb";>5e56066
 Improve error message for too big document
   Additional commits viewable in https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-1.32..snakeyaml-1.31";>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.yaml:snakeyaml&package-manager=maven&previous-version=1.31&new-version=1.32)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-configuration] dependabot[bot] opened a new pull request, #211: Bump spring.version from 5.3.22 to 5.3.23

2022-09-16 Thread GitBox


dependabot[bot] opened a new pull request, #211:
URL: https://github.com/apache/commons-configuration/pull/211

   Bumps `spring.version` from 5.3.22 to 5.3.23.
   Updates `spring-core` from 5.3.22 to 5.3.23
   
   Release notes
   Sourced from https://github.com/spring-projects/spring-framework/releases";>spring-core's
 releases.
   
   v5.3.23
   :star: New Features
   
   Introduce AnnotationUtils.isSynthesizedAnnotation(Annotation) https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/29054";>#29054
   Introduce createContext() factory method in 
AbstractGenericWebContextLoader https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28983";>#28983
   Support TreeSet collection type in CollectionFactory.createCollection() 
without using reflection https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28949";>#28949
   Document when RequestEntity.getUrl() throws an 
UnsupportedOperationException https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28930";>#28930
   Deprecate NestedIOException https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28929";>#28929
   Make isConnected() in WebSocketConnectionManager public https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28785";>#28785
   Expose headers from STOMP RECEIPT frame to registered callbacks https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28715";>#28715
   Make WebClientException serializable https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28321";>#28321
   
   :lady_beetle: Bug Fixes
   
   Ordering inconsistency with beans defined in parent context https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/29105";>#29105
   RelativeRedirectResponseWrapper does not commit response in sendRedirect 
https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/29050";>#29050
   MockServerContainerContextCustomizerFactory does not support 
@Nested tests https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/29037";>#29037
   Request to improve KotlinSerializationJsonHttpMessageConverter logic in 
RestTemplate https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/29008";>#29008
   WebFlux: multipart requests hang sometimes https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28963";>#28963
   DataBufferUtils.write(Publisher, Path) loses context https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28933";>#28933
   connectionTimeOut and readTimeout not working on UrlResource https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28909";>#28909
   SockJsServiceRegistration#setSupressCors has a typo and should be 
deprecated https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28853";>#28853
   RenderingResponse does not set status code on redirect views https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28839";>#28839
   Avoid IllegalArgumentException when setting WebSocket error status https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28836";>#28836
   Loss of context path after using ServerRequest.from https://github-redirect.dependabot.com/spring-projects/spring-framework/issues/28820";>#28820
   ResponseCookie does not declare nullability annotations consistently for 
domain and path https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28780";>#28780
   
   :notebook_with_decorative_cover: Documentation
   
   Fix typo in data-access section https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/29048";>#29048
   Correct description of @RequestParam with WebFlux https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28944";>#28944
   Fix broken kdoc-api links in kotlin.adoc https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28908";>#28908
   Fix typos in Javadoc of class AbstractEncoder https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28885";>#28885
   Fix links in Javadoc and reference docs https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28876";>#28876
   Add missing closing parenthesis in reference doc https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28867";>#28867
   Fix typos in Javadoc, reference docs, and code https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28822";>#28822
   Replace use of the  HTML tag in Javadoc https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28819";>#28819
   Fix broken link in rsocket documentation https://github-redirect.dependabot.com/spring-projects/spring-framework/pull/28817";>#28817
   Clarify docs on JNDI properties in Servlet environment

[GitHub] [commons-configuration] dependabot[bot] opened a new pull request, #210: Bump slf4j.version from 2.0.0 to 2.0.1



dependabot[bot] opened a new pull request, #210:
URL: https://github.com/apache/commons-configuration/pull/210

   Bumps `slf4j.version` from 2.0.0 to 2.0.1.
   Updates `slf4j-api` from 2.0.0 to 2.0.1
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/9752442b6e6db0749915dc40e80437dc97cd772d";>9752442
 prepare release 2.0.1
   https://github.com/qos-ch/slf4j/commit/c0f7f16bfb2cdbcf38df6039219ee3f57c99117e";>c0f7f16
 minor javadoc change
   https://github.com/qos-ch/slf4j/commit/1148b9852997376ab865cfc5e448fee0675cabbd";>1148b98
 Merge branch 'master' of github.com:qos-ch/slf4j
   https://github.com/qos-ch/slf4j/commit/593f89f85af8d181f0727315224f37fe0aa5fdcb";>593f89f
 fix SLF4J SLF4J-560
   https://github.com/qos-ch/slf4j/commit/03deea9f77c354ccd59c578808cff689299ba5eb";>03deea9
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/302";>#302 
from coheigea/coheigea/reload4j_1.2.22
   https://github.com/qos-ch/slf4j/commit/c9d5cc1257be51d837bf8e3f10f94eb18d1390bb";>c9d5cc1
 Update reload4j to 1.2.22
   https://github.com/qos-ch/slf4j/commit/bae56f544b0c30cedb265729f3c6cce72fa79f10";>bae56f5
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/294";>#294 
from marcwrobel/fix-typos
   https://github.com/qos-ch/slf4j/commit/24788ac731cdce9f27670f22efd42a7b9f1d771e";>24788ac
 fix typos in documentations
   https://github.com/qos-ch/slf4j/commit/05c0b0a88165094a9044e981c7836e10a05c8f6c";>05c0b0a
 fix SLF4J-555
   https://github.com/qos-ch/slf4j/commit/400a885e7d74c291b728f983a38697553d4e0431";>400a885
 remove reference to 1.7
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_2.0.0...v_2.0.1";>compare 
view
   
   
   
   
   Updates `slf4j-ext` from 2.0.0 to 2.0.1
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/9752442b6e6db0749915dc40e80437dc97cd772d";>9752442
 prepare release 2.0.1
   https://github.com/qos-ch/slf4j/commit/c0f7f16bfb2cdbcf38df6039219ee3f57c99117e";>c0f7f16
 minor javadoc change
   https://github.com/qos-ch/slf4j/commit/1148b9852997376ab865cfc5e448fee0675cabbd";>1148b98
 Merge branch 'master' of github.com:qos-ch/slf4j
   https://github.com/qos-ch/slf4j/commit/593f89f85af8d181f0727315224f37fe0aa5fdcb";>593f89f
 fix SLF4J SLF4J-560
   https://github.com/qos-ch/slf4j/commit/03deea9f77c354ccd59c578808cff689299ba5eb";>03deea9
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/302";>#302 
from coheigea/coheigea/reload4j_1.2.22
   https://github.com/qos-ch/slf4j/commit/c9d5cc1257be51d837bf8e3f10f94eb18d1390bb";>c9d5cc1
 Update reload4j to 1.2.22
   https://github.com/qos-ch/slf4j/commit/bae56f544b0c30cedb265729f3c6cce72fa79f10";>bae56f5
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/294";>#294 
from marcwrobel/fix-typos
   https://github.com/qos-ch/slf4j/commit/24788ac731cdce9f27670f22efd42a7b9f1d771e";>24788ac
 fix typos in documentations
   https://github.com/qos-ch/slf4j/commit/05c0b0a88165094a9044e981c7836e10a05c8f6c";>05c0b0a
 fix SLF4J-555
   https://github.com/qos-ch/slf4j/commit/400a885e7d74c291b728f983a38697553d4e0431";>400a885
 remove reference to 1.7
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_2.0.0...v_2.0.1";>compare 
view
   
   
   
   
   Updates `slf4j-log4j12` from 2.0.0 to 2.0.1
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/9752442b6e6db0749915dc40e80437dc97cd772d";>9752442
 prepare release 2.0.1
   https://github.com/qos-ch/slf4j/commit/c0f7f16bfb2cdbcf38df6039219ee3f57c99117e";>c0f7f16
 minor javadoc change
   https://github.com/qos-ch/slf4j/commit/1148b9852997376ab865cfc5e448fee0675cabbd";>1148b98
 Merge branch 'master' of github.com:qos-ch/slf4j
   https://github.com/qos-ch/slf4j/commit/593f89f85af8d181f0727315224f37fe0aa5fdcb";>593f89f
 fix SLF4J SLF4J-560
   https://github.com/qos-ch/slf4j/commit/03deea9f77c354ccd59c578808cff689299ba5eb";>03deea9
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/302";>#302 
from coheigea/coheigea/reload4j_1.2.22
   https://github.com/qos-ch/slf4j/commit/c9d5cc1257be51d837bf8e3f10f94eb18d1390bb";>c9d5cc1
 Update reload4j to 1.2.22
   https://github.com/qos-ch/slf4j/commit/bae56f544b0c30cedb265729f3c6cce72fa79f10";>bae56f5
 Merge pull request https://github-redirect.dependabot.com/qos-ch/slf4j/issues/294";>#294 
from marcwrobel/fix-typos
   https://github.com/qos-ch/slf4j/commit/24788ac731cdce9f27670f22efd42a7b9f1d771e";>24788ac
 fix typos in documentations
   https://github.com/qos-ch/slf4j/commit/05c0b0a88165094a9044e981c7836e10a05c8f6c";>05c0b0a
 fix SLF4J-555
   https://github.com/qos-ch/slf4j/commit/400a885e7d74c291b728f983a38697553d4e0431";>400a885
 remove reference to 1.7
   Additional commits viewable in https://github.com/qos-ch/slf4j/compare/v_2.0.0...v_2.0.1";>compare 
view
   
   
   
   
   Updates `slf4j-nop` from 2.0.0 to 2.0.1
   
   Commits
   
   https://github.com/qos-ch/slf4j/commit/975244

[GitHub] [commons-configuration] dependabot[bot] opened a new pull request, #209: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] opened a new pull request, #209:
URL: https://github.com/apache/commons-configuration/pull/209

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull

[jira] [Work logged] (LANG-1677) It should be possible to exclude fields in ReflectionDiffBuilder



 [ 
https://issues.apache.org/jira/browse/LANG-1677?focusedWorklogId=809568&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-809568
 ]

ASF GitHub Bot logged work on LANG-1677:


Author: ASF GitHub Bot
Created on: 16/Sep/22 15:39
Start Date: 16/Sep/22 15:39
Worklog Time Spent: 10m 
  Work Description: debae commented on PR #838:
URL: https://github.com/apache/commons-lang/pull/838#issuecomment-1249516337

   @garydgregory friendly reminder on this PR , are requested changes are 
tackled.




Issue Time Tracking
---

Worklog Id: (was: 809568)
Time Spent: 2h 40m  (was: 2.5h)

> It should be possible to exclude fields in ReflectionDiffBuilder
> 
>
> Key: LANG-1677
> URL: https://issues.apache.org/jira/browse/LANG-1677
> Project: Commons Lang
>  Issue Type: Wish
>  Components: lang.builder.*
>Affects Versions: 3.12.0
>Reporter: Dennis Baerten
>Priority: Major
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> When using ReflectionDiffBuilder to make a diff between two object it will be 
> default include all fields. As stated in the documentation static and 
> transient fields are excluded.
> Using the transient modifier in combination with other frameworks ( such as 
> Hibernate ) also has a side affect that those fields are not persisted.
> The use case I'm trying to solve it making a diff of an object that get's 
> updated and has a LastModificationDate and LastModificationUser and thus will 
> always be a field in the diff.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-lang] debae commented on pull request #838: LANG-1677 : Add ReflectionDiffBuilder.setExcludeFieldNames(...) and DiffExclude a…



debae commented on PR #838:
URL: https://github.com/apache/commons-lang/pull/838#issuecomment-1249516337

   @garydgregory friendly reminder on this PR , are requested changes are 
tackled.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-codec] codecov-commenter commented on pull request #146: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



codecov-commenter commented on PR #146:
URL: https://github.com/apache/commons-codec/pull/146#issuecomment-1249479612

   # 
[Codecov](https://codecov.io/gh/apache/commons-codec/pull/146?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#146](https://codecov.io/gh/apache/commons-codec/pull/146?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (db1550c) into 
[master](https://codecov.io/gh/apache/commons-codec/commit/700f81a5af483be89ff811fc85850af743894593?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (700f81a) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #146   +/-   ##
   =
 Coverage 92.23%   92.23%   
 Complexity 1744 1744   
   =
 Files67   67   
 Lines  4623 4623   
 Branches731  731   
   =
 Hits   4264 4264   
 Misses  244  244   
 Partials115  115   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] codecov-commenter commented on pull request #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



codecov-commenter commented on PR #950:
URL: https://github.com/apache/commons-lang/pull/950#issuecomment-1249480173

   # 
[Codecov](https://codecov.io/gh/apache/commons-lang/pull/950?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 Report
   > Merging 
[#950](https://codecov.io/gh/apache/commons-lang/pull/950?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e3ac487) into 
[master](https://codecov.io/gh/apache/commons-lang/commit/e81855a208c909f46e1bf346d7982bd77be13476?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
 (e81855a) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@Coverage Diff@@
   ## master #950   +/-   ##
   =
 Coverage 91.98%   91.98%   
 Complexity 7423 7423   
   =
 Files   189  189   
 Lines 1566615666   
 Branches   2913 2913   
   =
 Hits  1441114411   
 Misses  677  677   
 Partials578  578   
   ```
   
   
   
   :mega: We’re building smart automated test selection to slash your CI/CD 
build times. [Learn 
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-lang] dependabot[bot] opened a new pull request, #950: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] opened a new pull request, #950:
URL: https://github.com/apache/commons-lang/pull/950

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>os

[GitHub] [commons-codec] dependabot[bot] opened a new pull request, #146: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] opened a new pull request, #146:
URL: https://github.com/apache/commons-codec/pull/146

   Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 
1.1.2 to 2.0.3.
   
   Release notes
   Sourced from https://github.com/ossf/scorecard-action/releases";>ossf/scorecard-action's
 releases.
   
   v2.0.3
   Patch for fix in https://github-redirect.dependabot.com/ossf/scorecard-action/issues/898";>#898
   v2.0.2
   Fixes https://github-redirect.dependabot.com/ossf/scorecard-action/issues/895";>ossf/scorecard-action#895
   v2.0.1
   Fix for https://github-redirect.dependabot.com/ossf/scorecard-action/issues/856";>#856
   v2.0.0
   What's Changed
   
   🌱 Prepare for a pre-release of the Golang action by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/750";>ossf/scorecard-action#750
   :seedling: Bump github/codeql-action from 2.1.12 to 2.1.16 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/751";>ossf/scorecard-action#751
   :seedling: Bump debian from 11.3-slim to 11.4-slim by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/749";>ossf/scorecard-action#749
   :seedling: Bump step-security/harden-runner from 1.4.3 to 1.4.4 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/646";>ossf/scorecard-action#646
   :seedling: Bump actions/setup-go from 3.2.0 to 3.2.1 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/748";>ossf/scorecard-action#748
   🐛 Fix dependency conflicts in go.mod by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/771";>ossf/scorecard-action#771
   🌱 Prepare for v2 beta1 release by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/766";>ossf/scorecard-action#766
   multi-repo-action: Note that tool is a work-in-progress by https://github.com/naveensrinivasan";>@​naveensrinivasan 
in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/776";>ossf/scorecard-action#776
   🐛 Fix intermittent failures in CI-Tests by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/778";>ossf/scorecard-action#778
   :seedling: Bump sigs.k8s.io/release-utils from 0.7.2 to 0.7.3 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/775";>ossf/scorecard-action#775
   :seedling: Bump actions/cache from 3.0.4 to 3.0.5 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/769";>ossf/scorecard-action#769
   📖 Update README about the restrictions for scorecard-action:v2 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/779";>ossf/scorecard-action#779
   :seedling: Bump github/codeql-action from 2.1.16 to 2.1.17 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/783";>ossf/scorecard-action#783
   📖 Update instructions for Scorecard badge to README by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/785";>ossf/scorecard-action#785
   :seedling: Bump debian from f576b80 to a811e62 
by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/787";>ossf/scorecard-action#787
   :seedling: Bump github.com/ossf/scorecard/v4 from 4.4.0 to 4.5.0 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/786";>ossf/scorecard-action#786
   :seedling: Bump github/codeql-action from 2.1.17 to 2.1.18 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/788";>ossf/scorecard-action#788
   :seedling: Bump actions/cache from 3.0.5 to 3.0.6 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/789";>ossf/scorecard-action#789
   🐛 Add request application/json request header by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/791";>ossf/scorecard-action#791
   Create a new release v2.0.0-alpha.1 by https://github.com/azeemshaikh38";>@​azeemshaikh38 in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/803";>ossf/scorecard-action#803
   :seedling: Bump actions/cache from 3.0.6 to 3.0.7 by https://github.com/dependabot";>@​dependabot in https://github-redirect.dependabot.com/ossf/scorecard-action/pull/807";>o

[jira] [Commented] (DAEMON-448) Service start fails with default Eclipse Temurin install



[ 
https://issues.apache.org/jira/browse/DAEMON-448?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17605859#comment-17605859
 ] 

Gary D. Gregory commented on DAEMON-448:


Hi [~GlennMatthys]

Thank you for your report.

Did you happen to capture a stack trace?

> Service start fails with default Eclipse Temurin install
> 
>
> Key: DAEMON-448
> URL: https://issues.apache.org/jira/browse/DAEMON-448
> Project: Commons Daemon
>  Issue Type: Bug
>  Components: prunsrv
>Affects Versions: 1.3.1
> Environment: * Windows 10 Pro 21H2 (OS Build 19044.1889) 64 bit
>  * Eclipse Temurin Windows x64 JRE 11 (jdk-11.0.16.1+1) x64
>  ** Screenshot from website, no direct link possible:
>  ** !image-2022-09-16-14-53-28-807.png!
>Reporter: Glenn Matthys
>Priority: Major
> Attachments: image-2022-09-16-14-49-32-981.png, 
> image-2022-09-16-14-53-28-807.png, image-2022-09-16-15-02-53-131.png
>
>
> When installing Eclipse Temurin JRE version 11, notice _Set JAVA_HOME 
> variable_ and _JavaSoft (Oracle) registry keys_ options are disabled in the 
> default setup:
> !image-2022-09-16-14-49-32-981.png!
> prunsrv.exe successfully installs the service, but when trying to start it 
> prunsrv.exe crashes:
> {{Faulting application name: xxx.exe, version: 1.3.1.0, time stamp: 
> 0x6271349d}}
> {{Faulting module name: xxx.exe, version: 1.3.1.0, time stamp: 0x6271349d}}
> {{Exception code: 0xc005}}
> {{Fault offset: 0x7130}}
> {{Faulting process id: 0x1ddc}}
> {{Faulting application start time: 0x01d8c9ca012bfb46}}
> {{Faulting application path: C:\Program Files\xxx\xxx.exe}}
> {{Faulting module path: C:\Program Files\xxx\xxx.exe}}
> {{Report Id: a35b4a6a-63a3-4426-8061-495550439a97}}
> {{Faulting package full name: }}
> {{Faulting package-relative application ID: }}
> However when the default options are overridden and _Set JAVA_HOME variable_ 
> and _JavaSoft (Oracle) registry keys_ options are enabled:
> !image-2022-09-16-15-02-53-131.png!
> prunsrv.exe works correctly.
> Having prunsrv.exe work correctly or at least not die with an 0xc005 
> (Access Denied) exception would improve user experience.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (COMMONSSITE-163) Xcom not returned while using 'BeamRunJavaPipelineOperator'.



[ 
https://issues.apache.org/jira/browse/COMMONSSITE-163?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17605858#comment-17605858
 ] 

Raj Prakash Kante commented on COMMONSSITE-163:
---

Hi Gary,
Actually I couldn't find the appropriate ticket category.It would be really
helpful if you could help select the appropriate category.

On Fri, Sep 16, 2022, 7:58 PM Gary D. Gregory (Jira) 



> Xcom not returned while using 'BeamRunJavaPipelineOperator'.
> 
>
> Key: COMMONSSITE-163
> URL: https://issues.apache.org/jira/browse/COMMONSSITE-163
> Project: Apache Commons All
>  Issue Type: Bug
>Reporter: Raj Prakash Kante
>Priority: Major
>
> I was using 'BeamRunJavaPipelineOperator' to run a java jar to ingest data 
> using dataflow from google cloud storage to Bigquery using a airflow DAG.The 
> dataflow job is submitted successfully but I want to wait until the dataflow 
> job runs successfully in the background and then move on to the next task.I 
> am thinking to tackle this using 'DataflowJobStatusSensor' which checks the 
> status of the job in the background. This requires the job ID we want to 
> check which is supposed to be returned as a Xcom by the 
> 'BeamRunJavaPipelineOperator' but it does not return the desired Xcom.
>  
>  
>  
> start_java_pipeline = BeamRunJavaPipelineOperator(
> task_id="start_java_pipeline",
> runner='dataflow',
> jar="",
> pipeline_options={'airflowBucket': '',
> 'jobName': '',
> 'inputfileBucket': '',
> 'maxNumWorkers': '10',
> 'targetTableProject': '',
> 'datasetName': '',
> 'serviceAccount': '',
> 'runConfig': '',
> 'project': '',
> 'workerMachineType': 'n1-standard-2',
> 'region': '',
> 'subnetwork': "",
> 'usePublicIps': 'false',
> 'stagingLocation': '',
> 'tempLocation': ''
> },
> job_class='',
> do_xcom_push=True,
> dag=dag)
>  
>  
> wait_for_done = DataflowJobStatusSensor(
> task_id="wait-for-java-dataflow",
> job_id="\{{task_instance.xcom_pull('Get_job_id')}}",
> expected_statuses=\{DataflowJobStatus.JOB_STATE_DONE},
> project_id="xxx-xx-xxx",
> gcp_conn_id='google_cloud_default',
> location='us-central1',
> )
> start_java_pipeline  >> wait_for_done
>  
> Using "DataFlowJavaOperator" I am able to get the jobid to the xcom and fetch 
> the same using "DataflowJobStatusSensor" without any issues.But this is a 
> deprecated operator.
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (COMMONSSITE-163) Xcom not returned while using 'BeamRunJavaPipelineOperator'.



[ 
https://issues.apache.org/jira/browse/COMMONSSITE-163?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17605854#comment-17605854
 ] 

Gary D. Gregory commented on COMMONSSITE-163:
-

Why is this tick created for the web site? You to pick the appropriate project. 

> Xcom not returned while using 'BeamRunJavaPipelineOperator'.
> 
>
> Key: COMMONSSITE-163
> URL: https://issues.apache.org/jira/browse/COMMONSSITE-163
> Project: Apache Commons All
>  Issue Type: Bug
>Reporter: Raj Prakash Kante
>Priority: Major
>
> I was using 'BeamRunJavaPipelineOperator' to run a java jar to ingest data 
> using dataflow from google cloud storage to Bigquery using a airflow DAG.The 
> dataflow job is submitted successfully but I want to wait until the dataflow 
> job runs successfully in the background and then move on to the next task.I 
> am thinking to tackle this using 'DataflowJobStatusSensor' which checks the 
> status of the job in the background. This requires the job ID we want to 
> check which is supposed to be returned as a Xcom by the 
> 'BeamRunJavaPipelineOperator' but it does not return the desired Xcom.
>  
>  
>  
> start_java_pipeline = BeamRunJavaPipelineOperator(
> task_id="start_java_pipeline",
> runner='dataflow',
> jar="",
> pipeline_options={'airflowBucket': '',
> 'jobName': '',
> 'inputfileBucket': '',
> 'maxNumWorkers': '10',
> 'targetTableProject': '',
> 'datasetName': '',
> 'serviceAccount': '',
> 'runConfig': '',
> 'project': '',
> 'workerMachineType': 'n1-standard-2',
> 'region': '',
> 'subnetwork': "",
> 'usePublicIps': 'false',
> 'stagingLocation': '',
> 'tempLocation': ''
> },
> job_class='',
> do_xcom_push=True,
> dag=dag)
>  
>  
> wait_for_done = DataflowJobStatusSensor(
> task_id="wait-for-java-dataflow",
> job_id="\{{task_instance.xcom_pull('Get_job_id')}}",
> expected_statuses=\{DataflowJobStatus.JOB_STATE_DONE},
> project_id="xxx-xx-xxx",
> gcp_conn_id='google_cloud_default',
> location='us-central1',
> )
> start_java_pipeline  >> wait_for_done
>  
> Using "DataFlowJavaOperator" I am able to get the jobid to the xcom and fetch 
> the same using "DataflowJobStatusSensor" without any issues.But this is a 
> deprecated operator.
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [commons-scxml] garydgregory merged pull request #51: Bump maven-antrun-plugin from 3.0.0 to 3.1.0



garydgregory merged PR #51:
URL: https://github.com/apache/commons-scxml/pull/51


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-vfs] garydgregory merged pull request #291: hadoop-hdfs-client is not set as optional



garydgregory merged PR #291:
URL: https://github.com/apache/commons-vfs/pull/291


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-validator] garydgregory merged pull request #81: Bump maven-pmd-plugin from 3.18.0 to 3.19.0



garydgregory merged PR #81:
URL: https://github.com/apache/commons-validator/pull/81


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory merged pull request #52: Bump nashorn-core from 15.3 to 15.4



garydgregory merged PR #52:
URL: https://github.com/apache/commons-scxml/pull/52


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] dependabot[bot] opened a new pull request, #63: Bump exec-maven-plugin from 3.0.0 to 3.1.0



dependabot[bot] opened a new pull request, #63:
URL: https://github.com/apache/commons-scxml/pull/63

   Bumps [exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) 
from 3.0.0 to 3.1.0.
   
   Release notes
   Sourced from https://github.com/mojohaus/exec-maven-plugin/releases";>exec-maven-plugin's
 releases.
   
   3.1.0
   
   🚀 New features and improvements
   
   Require Maven 3.2.5 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/319";>#319)
 https://github.com/slawekjaranowski";>@​slawekjaranowski
   Support stream inheritance for the forked process, fixes https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/71";>#71
 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/196";>#196)
 https://github.com/gnodet";>@​gnodet
   
   🐛 Bug Fixes
   
   Fix NullPointerException when using plugin dependencies in version 1.6.0 
(https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/77";>#77)
 https://github.com/jonasrutishauser";>@​jonasrutishauser
   preload common pool - issue https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/198";>#198
 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/279";>#279)
 https://github.com/rmannibucau";>@​rmannibucau
   fix handling of LongModulePathArgument and LongClassPathArgument (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/172";>#172)
 https://github.com/jan-feindt";>@​jan-feindt
   Do not drop environment variables that contain '=' in their value, or 
have no value.  (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/97";>#97)
 https://github.com/AlanUnderwood";>@​AlanUnderwood
   Empty argument tag should add empty string instead of null (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/150";>#150)
 https://github.com/Anders-E";>@​Anders-E
   Fixes https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/160";>#160,
 ensure the java classloader is a child first one and supports to excludes some 
gathered classpath element to solve manually conflicts (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/161";>#161)
 https://github.com/rmannibucau";>@​rmannibucau
   
   📦 Dependency updates
   
   Bump commons-io from 1.1 to 2.7 in /src/it/projects/project6/project5lib 
(https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/320";>#320)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-mainclass (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/313";>#313)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/longModulepath 
with spaces (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/312";>#312)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-module+mainclass (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/311";>#311)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/projects/jigsaw (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/310";>#310)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in /src/it/mrm/java_module (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/309";>#309)
 https://github.com/dependabot";>@​dependabot
   Bump mojo-parent from 68 to 69 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/314";>#314)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 1.1 to 3.0.16 in 
/src/it/projects/java_module-export (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/308";>#308)
 https://github.com/dependabot";>@​dependabot
   Bump mrm-maven-plugin from 1.3.0 to 1.4.1 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/307";>#307)
 https://github.com/dependabot";>@​dependabot
   Bump mojo-parent from 67 to 68 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/305";>#305)
 https://github.com/dependabot";>@​dependabot
   Bump groovy from 3.0.10 to 3.0.11 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/302";>#302)
 https://github.com/dependabot";>@​dependabot
   Bump maven-invoker-plugin from 3.2.2 to 3.3.0 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/301";>#301)
 https://github.com/dependabot";>@​dependabot
   Bump mockito-core from 4.5.1 to 4.6.1 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/303";>#303)
 https://github.com/dependabot";>@​dependabot
   Bump plexus-utils from 3.4.1 to 3.4.2 (https://github-redirect.dependabot.com/mojohaus/exec-maven-plugin/issues/299";>#299)
 https://github.com/dependabot";>@​dependab

[GitHub] [commons-scxml] garydgregory merged pull request #59: Bump jackson-core from 2.13.2 to 2.13.4



garydgregory merged PR #59:
URL: https://github.com/apache/commons-scxml/pull/59


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] dependabot[bot] opened a new pull request, #62: Bump groovy from 3.0.10 to 3.0.12



dependabot[bot] opened a new pull request, #62:
URL: https://github.com/apache/commons-scxml/pull/62

   Bumps [groovy](https://github.com/apache/groovy) from 3.0.10 to 3.0.12.
   
   Commits
   
   See full diff in https://github.com/apache/groovy/commits";>compare view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.groovy:groovy&package-manager=maven&previous-version=3.0.10&new-version=3.0.12)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory merged pull request #60: Bump jackson-databind from 2.13.2.2 to 2.13.4



garydgregory merged PR #60:
URL: https://github.com/apache/commons-scxml/pull/60


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] dependabot[bot] commented on pull request #61: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #61:
URL: https://github.com/apache/commons-scxml/pull/61#issuecomment-1249413681

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory closed pull request #61: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #61: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-scxml/pull/61


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-scxml] garydgregory commented on pull request #61: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #61:
URL: https://github.com/apache/commons-scxml/pull/61#issuecomment-1249413614

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-net] dependabot[bot] commented on pull request #111: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #111:
URL: https://github.com/apache/commons-net/pull/111#issuecomment-1249412962

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-net] garydgregory closed pull request #111: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #111: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-net/pull/111


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-net] garydgregory commented on pull request #111: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #111:
URL: https://github.com/apache/commons-net/pull/111#issuecomment-1249412789

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-logging] garydgregory commented on pull request #105: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #105:
URL: https://github.com/apache/commons-logging/pull/105#issuecomment-1249411440

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-logging] dependabot[bot] commented on pull request #105: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #105:
URL: https://github.com/apache/commons-logging/pull/105#issuecomment-1249411487

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-logging] garydgregory closed pull request #105: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #105: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-logging/pull/105


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-exec] garydgregory commented on pull request #63: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #63:
URL: https://github.com/apache/commons-exec/pull/63#issuecomment-1249411057

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-exec] dependabot[bot] commented on pull request #63: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #63:
URL: https://github.com/apache/commons-exec/pull/63#issuecomment-1249411104

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-exec] garydgregory closed pull request #63: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #63: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-exec/pull/63


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-daemon] garydgregory commented on pull request #53: Bump spotbugs-maven-plugin from 4.7.1.1 to 4.7.2.0



garydgregory commented on PR #53:
URL: https://github.com/apache/commons-daemon/pull/53#issuecomment-1249406270

   @dependabot rebase


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-crypto] dependabot[bot] commented on pull request #180: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #180:
URL: https://github.com/apache/commons-crypto/pull/180#issuecomment-1249405487

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-crypto] garydgregory closed pull request #180: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #180: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-crypto/pull/180


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-crypto] garydgregory commented on pull request #180: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #180:
URL: https://github.com/apache/commons-crypto/pull/180#issuecomment-1249405424

   Bump mockito-core from 4.7.0 to 4.8.0 #137


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-fileupload] dependabot[bot] commented on pull request #165: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #165:
URL: 
https://github.com/apache/commons-fileupload/pull/165#issuecomment-1249404463

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-fileupload] garydgregory closed pull request #165: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #165: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-fileupload/pull/165


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-fileupload] garydgregory commented on pull request #165: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #165:
URL: 
https://github.com/apache/commons-fileupload/pull/165#issuecomment-1249404412

   Bump mockito-core from 4.7.0 to 4.8.0 #137


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-collections] dependabot[bot] commented on pull request #337: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #337:
URL: 
https://github.com/apache/commons-collections/pull/337#issuecomment-1249404098

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-collections] garydgregory closed pull request #337: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #337: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-collections/pull/337


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-collections] garydgregory commented on pull request #337: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #337:
URL: 
https://github.com/apache/commons-collections/pull/337#issuecomment-1249404046

   Bump mockito-core from 4.7.0 to 4.8.0 #137


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbutils] garydgregory merged pull request #137: Bump mockito-core from 4.7.0 to 4.8.0



garydgregory merged PR #137:
URL: https://github.com/apache/commons-dbutils/pull/137


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbutils] dependabot[bot] commented on pull request #138: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #138:
URL: https://github.com/apache/commons-dbutils/pull/138#issuecomment-1249402628

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbutils] garydgregory closed pull request #138: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #138: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-dbutils/pull/138


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbutils] garydgregory commented on pull request #138: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #138:
URL: https://github.com/apache/commons-dbutils/pull/138#issuecomment-1249402570

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbcp] dependabot[bot] commented on pull request #216: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #216:
URL: https://github.com/apache/commons-dbcp/pull/216#issuecomment-1249402219

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbcp] garydgregory closed pull request #216: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory closed pull request #216: Bump ossf/scorecard-action from 1.1.2 to 
2.0.3
URL: https://github.com/apache/commons-dbcp/pull/216


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-dbcp] garydgregory commented on pull request #216: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



garydgregory commented on PR #216:
URL: https://github.com/apache/commons-dbcp/pull/216#issuecomment-1249402167

   The newer version is not authorized by Apache Infra.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



[GitHub] [commons-pool] dependabot[bot] commented on pull request #171: Bump ossf/scorecard-action from 1.1.2 to 2.0.3



dependabot[bot] commented on PR #171:
URL: https://github.com/apache/commons-pool/pull/171#issuecomment-1249401854

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`. You can also ignore 
all major, minor, or patch releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

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



  1   2   >