Re: [PR] build(deps-dev): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4585:
URL: https://github.com/apache/myfaces-tobago/pull/4585#issuecomment-1840182051

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4588:
URL: https://github.com/apache/myfaces-tobago/pull/4588#issuecomment-1840181287

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4571:
URL: https://github.com/apache/myfaces-tobago/pull/4571#issuecomment-1840182292

   @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: dev-unsubscr...@myfaces.apache.org

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



[jira] [Commented] (MYFACES-4645) Conversion error for select items of type String

2023-12-04 Thread Thomas Andraschko (Jira)


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

Thomas Andraschko commented on MYFACES-4645:


a deeper analysis and comparison to mojarra would be great

> Conversion error for select items of type String
> 
>
> Key: MYFACES-4645
> URL: https://issues.apache.org/jira/browse/MYFACES-4645
> Project: MyFaces Core
>  Issue Type: Bug
>  Components: General
>Affects Versions: 4.0.1
>Reporter: Manuel K
>Priority: Major
> Attachments: image-2023-12-04-13-30-22-019.png, 
> primefaces-test-duplicate-conversion-error.zip
>
>
> An error occurs when using select items of type String in combination with 
> the OmniFaces SelectItemsIndexConverter. MyFaces seems to attempt to convert 
> the submitted value twice, which leads to a NumberFormatException on the 
> second try.
> I suspect the following if-statement in 
> _org.apache.myfaces.core.api.shared.SelectItemsUtil_ to be the culprit, but 
> of course have no idea why it is needed in other cases or how to fix the 
> problem:
> !image-2023-12-04-13-30-22-019.png!
> Please see the attached reproducer, which produces the error when selecting a 
> value in the SelectOneMenu when run with 
> {noformat}
> mvn clean jetty:run -Pmyfaces40{noformat}



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


Re: [PR] build(deps-dev): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4585:
URL: https://github.com/apache/myfaces-tobago/pull/4585#issuecomment-1838702418

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4571:
URL: https://github.com/apache/myfaces-tobago/pull/4571#issuecomment-1838702550

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4588:
URL: https://github.com/apache/myfaces-tobago/pull/4588#issuecomment-1838702299

   @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: dev-unsubscr...@myfaces.apache.org

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



[jira] [Created] (MYFACES-4646) Incorrect formatting on String built by ValidatorException

2023-12-04 Thread Markus Jung (Jira)
Markus Jung created MYFACES-4646:


 Summary: Incorrect formatting on String built by ValidatorException
 Key: MYFACES-4646
 URL: https://issues.apache.org/jira/browse/MYFACES-4646
 Project: MyFaces Core
  Issue Type: Bug
Reporter: Markus Jung


See this example test:
{code:java}
@Test
public void facesMessageEmptyDetail()
{
FacesMessage message = new FacesMessage("Summary", "");
ValidatorException exception = new ValidatorException(message);

assertEquals("Summary", exception.getMessage());
} {code}
 

It currenty fails as the Exception message being built is "Summary: " because 
ValidatorException#facesMessageToString only [only checks for 
null|https://github.com/apache/myfaces/blob/main/api/src/main/java/jakarta/faces/validator/ValidatorException.java#L78],
 empty strings are not being taken care of.
Actually, if you create a FacesMessage with detail=null it will [return the 
summary as the 
detail|https://github.com/apache/myfaces/blob/main/api/src/main/java/jakarta/faces/application/FacesMessage.java#L218]



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


Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4584:
URL: https://github.com/apache/myfaces-tobago/pull/4584


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4573: build(deps): bump 
com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0
URL: https://github.com/apache/myfaces-tobago/pull/4573


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4589: build(deps): bump 
com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0
URL: https://github.com/apache/myfaces-tobago/pull/4589


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4573:
URL: https://github.com/apache/myfaces-tobago/pull/4573#issuecomment-1838613409

   Looks like com.github.eirslett:frontend-maven-plugin is up-to-date now, so 
this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4589:
URL: https://github.com/apache/myfaces-tobago/pull/4589#issuecomment-1838613345

   Looks like com.github.eirslett:frontend-maven-plugin is up-to-date now, so 
this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4586: build(deps): bump 
org.owasp:dependency-check-maven from 8.4.3 to 9.0.2
URL: https://github.com/apache/myfaces-tobago/pull/4586


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4590: build(deps): bump 
org.owasp:dependency-check-maven from 8.4.3 to 9.0.2
URL: https://github.com/apache/myfaces-tobago/pull/4590


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4590:
URL: https://github.com/apache/myfaces-tobago/pull/4590#issuecomment-1838612808

   Looks like org.owasp:dependency-check-maven is up-to-date now, so this is no 
longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4572:
URL: https://github.com/apache/myfaces-tobago/pull/4572#issuecomment-1838612562

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4573:
URL: https://github.com/apache/myfaces-tobago/pull/4573#issuecomment-1838612363

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4584:
URL: https://github.com/apache/myfaces-tobago/pull/4584#issuecomment-1838612206

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump com.github.eirslett:frontend-maven-plugin from 1.14.2 to 1.15.0 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4589:
URL: https://github.com/apache/myfaces-tobago/pull/4589#issuecomment-1838611401

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4590:
URL: https://github.com/apache/myfaces-tobago/pull/4590#issuecomment-1838611214

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4572:
URL: https://github.com/apache/myfaces-tobago/pull/4572#issuecomment-1838614768

   Looks like org.owasp:dependency-check-maven is up-to-date now, so this is no 
longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4572: build(deps): bump 
org.owasp:dependency-check-maven from 8.4.3 to 9.0.2
URL: https://github.com/apache/myfaces-tobago/pull/4572


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4587:
URL: https://github.com/apache/myfaces-tobago/pull/4587


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4586:
URL: https://github.com/apache/myfaces-tobago/pull/4586#issuecomment-1838612879

   Looks like org.owasp:dependency-check-maven is up-to-date now, so this is no 
longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4571:
URL: https://github.com/apache/myfaces-tobago/pull/4571#issuecomment-1838612770

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4585:
URL: https://github.com/apache/myfaces-tobago/pull/4585#issuecomment-1838612026

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.2 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4586:
URL: https://github.com/apache/myfaces-tobago/pull/4586#issuecomment-1838611796

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump logback.version from 1.2.12 to 1.2.13 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4588:
URL: https://github.com/apache/myfaces-tobago/pull/4588#issuecomment-1838611592

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4587:
URL: https://github.com/apache/myfaces-tobago/pull/4587#issuecomment-1838582628

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] fix: rebuild theme and update dependencies [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4599:
URL: https://github.com/apache/myfaces-tobago/pull/4599


-- 
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: dev-unsubscr...@myfaces.apache.org

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



[PR] fix: rebuild theme and update dependencies [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn opened a new pull request, #4599:
URL: https://github.com/apache/myfaces-tobago/pull/4599

   (no comment)


-- 
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: dev-unsubscr...@myfaces.apache.org

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



[jira] [Commented] (MYFACES-4644) Automatic extensionless mapping does not work on Java Facelet

2023-12-04 Thread Thomas Andraschko (Jira)


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

Thomas Andraschko commented on MYFACES-4644:


TBH
we should at least in 5.0 switch to a CDI extension
makes the whole thing faster

> Automatic extensionless mapping does not work on Java Facelet
> -
>
> Key: MYFACES-4644
> URL: https://issues.apache.org/jira/browse/MYFACES-4644
> Project: MyFaces Core
>  Issue Type: Bug
>Affects Versions: 4.0.1, 4.1.0, 5.0.0
>Reporter: Volodymyr Siedlecki
>Priority: Major
>
> Reported against Mojarra, but also affects MyFaces.
> https://github.com/eclipse-ee4j/mojarra/issues/5362
> MyFaces fails to find the page:
> ```
> Error 404: java.io.FileNotFoundException: SRVE0190E: File not found: 
> /hello-facelet 
> ```



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


Re: [PR] Bump actions/setup-java from 3 to 4 [myfaces-master-pom]

2023-12-04 Thread via GitHub


melloware merged PR #86:
URL: https://github.com/apache/myfaces-master-pom/pull/86


-- 
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: dev-unsubscr...@myfaces.apache.org

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



[jira] [Created] (MYFACES-4645) Conversion error for select items of type String

2023-12-04 Thread Manuel K (Jira)
Manuel K created MYFACES-4645:
-

 Summary: Conversion error for select items of type String
 Key: MYFACES-4645
 URL: https://issues.apache.org/jira/browse/MYFACES-4645
 Project: MyFaces Core
  Issue Type: Bug
  Components: General
Affects Versions: 4.0.1
Reporter: Manuel K
 Attachments: image-2023-12-04-13-30-22-019.png, 
primefaces-test-duplicate-conversion-error.zip

An error occurs when using select items of type String in combination with the 
OmniFaces SelectItemsIndexConverter. MyFaces seems to attempt to convert the 
submitted value twice, which leads to a NumberFormatException on the second try.

I suspect the following if-statement to be the culprit, but of course have no 
idea why it is needed in other cases or how to fix the problem:

!image-2023-12-04-13-30-22-019.png!

Please see the attached reproducer, which produces the error when selecting a 
value in the SelectOneMenu when run with 
{noformat}
mvn clean jetty:run -Pmyfaces40{noformat}



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


Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4596:
URL: https://github.com/apache/myfaces-tobago/pull/4596


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): update [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4598:
URL: https://github.com/apache/myfaces-tobago/pull/4598


-- 
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: dev-unsubscr...@myfaces.apache.org

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



[jira] [Created] (TOBAGO-2267) Ajax request outside sheet breaks lazy loading within sheet

2023-12-04 Thread Marcus Kroeger (Jira)
Marcus Kroeger created TOBAGO-2267:
--

 Summary: Ajax request outside sheet breaks lazy loading within 
sheet
 Key: TOBAGO-2267
 URL: https://issues.apache.org/jira/browse/TOBAGO-2267
 Project: MyFaces Tobago
  Issue Type: Bug
  Components: Core
Affects Versions: 6.1.0, 5.9.0
Reporter: Marcus Kroeger


When e.g. searching using a tc:in outside the sheet which triggers a reload of 
the sheet the values get shown correctly. When emtying the search the lazy 
loaded sheet does not show all values anymore.



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


[PR] build(deps): update [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn opened a new pull request, #4598:
URL: https://github.com/apache/myfaces-tobago/pull/4598

   * logback
   * dependency-check


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @types/bootstrap from 5.2.9 to 5.2.10 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4591:
URL: https://github.com/apache/myfaces-tobago/pull/4591#issuecomment-1838236684

   Looks like @types/bootstrap is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @types/jest from 29.5.8 to 29.5.10 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4595: build(deps-dev): bump @types/jest 
from 29.5.8 to 29.5.10 in /tobago-theme
URL: https://github.com/apache/myfaces-tobago/pull/4595


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @typescript-eslint/parser from 6.11.0 to 6.13.1 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4594:
URL: https://github.com/apache/myfaces-tobago/pull/4594#issuecomment-1838236564

   Looks like @typescript-eslint/parser is up-to-date now, so this is no longer 
needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @types/bootstrap from 5.2.9 to 5.2.10 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4591: build(deps-dev): bump 
@types/bootstrap from 5.2.9 to 5.2.10 in /tobago-theme
URL: https://github.com/apache/myfaces-tobago/pull/4591


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @typescript-eslint/parser from 6.11.0 to 6.13.1 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4594: build(deps-dev): bump 
@typescript-eslint/parser from 6.11.0 to 6.13.1 in /tobago-theme
URL: https://github.com/apache/myfaces-tobago/pull/4594


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump typescript from 5.2.2 to 5.3.2 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4593: build(deps-dev): bump typescript 
from 5.2.2 to 5.3.2 in /tobago-theme
URL: https://github.com/apache/myfaces-tobago/pull/4593


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump rollup from 4.4.1 to 4.6.1 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4592:
URL: https://github.com/apache/myfaces-tobago/pull/4592#issuecomment-1838236501

   Looks like rollup is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump rollup from 4.4.1 to 4.6.1 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4592: build(deps-dev): bump rollup from 
4.4.1 to 4.6.1 in /tobago-theme
URL: https://github.com/apache/myfaces-tobago/pull/4592


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump clean-css-cli from 5.6.2 to 5.6.3 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4581: build(deps-dev): bump clean-css-cli 
from 5.6.2 to 5.6.3 in /tobago-example/tobago-example-demo
URL: https://github.com/apache/myfaces-tobago/pull/4581


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump rollup from 4.4.1 to 4.6.1 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4583: build(deps-dev): bump rollup from 
4.4.1 to 4.6.1 in /tobago-example/tobago-example-demo
URL: https://github.com/apache/myfaces-tobago/pull/4583


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump clean-css-cli from 5.6.2 to 5.6.3 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4581:
URL: https://github.com/apache/myfaces-tobago/pull/4581#issuecomment-1838236234

   Looks like clean-css-cli is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump typescript from 5.2.2 to 5.3.2 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] closed pull request #4580: build(deps-dev): bump typescript 
from 5.2.2 to 5.3.2 in /tobago-example/tobago-example-demo
URL: https://github.com/apache/myfaces-tobago/pull/4580


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump @types/jest from 29.5.8 to 29.5.10 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4595:
URL: https://github.com/apache/myfaces-tobago/pull/4595#issuecomment-1838236552

   Looks like @types/jest is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump typescript from 5.2.2 to 5.3.2 in /tobago-theme [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4593:
URL: https://github.com/apache/myfaces-tobago/pull/4593#issuecomment-1838236549

   Looks like typescript is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): bump actions/setup-java from 3 to 4 [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn commented on PR #4596:
URL: https://github.com/apache/myfaces-tobago/pull/4596#issuecomment-1838236496

   @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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump rollup from 4.4.1 to 4.6.1 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4583:
URL: https://github.com/apache/myfaces-tobago/pull/4583#issuecomment-1838236230

   Looks like rollup is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps-dev): bump typescript from 5.2.2 to 5.3.2 in /tobago-example/tobago-example-demo [myfaces-tobago]

2023-12-04 Thread via GitHub


dependabot[bot] commented on PR #4580:
URL: https://github.com/apache/myfaces-tobago/pull/4580#issuecomment-1838236177

   Looks like typescript is up-to-date now, so this is no longer needed.


-- 
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: dev-unsubscr...@myfaces.apache.org

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



Re: [PR] build(deps): update [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn merged PR #4597:
URL: https://github.com/apache/myfaces-tobago/pull/4597


-- 
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: dev-unsubscr...@myfaces.apache.org

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



[PR] build(deps): update [myfaces-tobago]

2023-12-04 Thread via GitHub


henningn opened a new pull request, #4597:
URL: https://github.com/apache/myfaces-tobago/pull/4597

   (no comment)


-- 
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: dev-unsubscr...@myfaces.apache.org

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