lists.xwiki.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

notifications

Thread Start a new thread
Download
Threads by month
  • ----- 2026 -----
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
[email protected]

June 2024

  • 1 participants
  • 1409 discussions
[[email protected]][Issue] Updates for XAFORUM-252: Errors and pop ups when removing a comment
by XWiki Notifications 12 Jun '24

12 Jun '24
1 0
0 0
[xwiki-contrib/application-forum] a421e3: XAFORUM-252: Errors and pop ups when removing a co...
by XWiki Notifications 12 Jun '24

12 Jun '24
Branch: refs/heads/master Home: https://github.com/xwiki-contrib/application-forum Commit: a421e3e9da7b0fcd6263d858e5b8e803561972d5 https://github.com/xwiki-contrib/application-forum/commit/a421e3e9da7b0fcd6… Author: Alex Cotiugă <ancotiuga(a)gmail.com> Date: 2024-06-12 (Wed, 12 Jun 2024) Changed paths: M application-forum-ui/src/main/resources/ForumCode/JavascriptExtension.xml M application-forum-ui/src/main/resources/ForumCode/Macros.xml Log Message: ----------- XAFORUM-252: Errors and pop ups when removing a comment To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/application-forum/settings/notifications
1 0
0 0
[[email protected]][Issue] Updates for XAFORUM-264: "Failed to display the user name" error on a comment for an answer
by XWiki Notifications 12 Jun '24

12 Jun '24
1 0
0 0
[[email protected]][Issue] Updates for XAFORUM-264: "Failed to display the user name" error on a comment for an answer
by XWiki Notifications 12 Jun '24

12 Jun '24
1 0
0 0
[xwiki-contrib/application-forum] 1d764c: XAFORUM-264:"Failed to display the user name" erro...
by XWiki Notifications 12 Jun '24

12 Jun '24
Branch: refs/heads/master Home: https://github.com/xwiki-contrib/application-forum Commit: 1d764c6680cfc06f229c72ec4510b34aa56e7d08 https://github.com/xwiki-contrib/application-forum/commit/1d764c6680cfc06f2… Author: Alex Cotiugă <ancotiuga(a)gmail.com> Date: 2024-06-12 (Wed, 12 Jun 2024) Changed paths: M application-forum-ui/src/main/resources/ForumCode/Macros.xml Log Message: ----------- XAFORUM-264:"Failed to display the user name" error on a comment for an answer To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/application-forum/settings/notifications
1 0
0 0
[xwiki-contrib/ai-llm] 3f3483: LLMAI-73: Implement a separate indexing queue with...
by XWiki Notifications 11 Jun '24

11 Jun '24
Branch: refs/heads/main Home: https://github.com/xwiki-contrib/ai-llm Commit: 3f348337ef8b0e98cdf606e4178236bbcb325704 https://github.com/xwiki-contrib/ai-llm/commit/3f348337ef8b0e98cdf606e41782… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/Collection.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/IndexTaskConsumer.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DefaultCollection.java A application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DocumentIndexer.java M application-ai-llm-index/application-ai-llm-index-api/src/main/resources/META-INF/components.txt Log Message: ----------- LLMAI-73: Implement a separate indexing queue with a UI for its status * Introduce a separate component for indexing a document to clean up the code. * Introduce an API for getting the author of a collection and use that for getting the embedding model. Commit: f5b3796003af94d760b62ba5b6bb83f9b3a85356 https://github.com/xwiki-contrib/ai-llm/commit/f5b3796003af94d760b62ba5b6bb… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/Collection.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/Document.java A application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/DocumentStore.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/IndexWorker.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/CurrentUserCollection.java R application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/CurrentUserDocument.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DefaultCollection.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DefaultCollectionManager.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DefaultDocument.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/DocumentIndexer.java A application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/InternalDocumentStore.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/rest/AbstractCollectionResource.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/rest/DefaultCollectionResource.java M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/internal/rest/DefaultDocumentResource.java M application-ai-llm-index/application-ai-llm-index-api/src/main/resources/META-INF/components.txt A application-ai-llm-index/application-ai-llm-index-api/src/test/java/org/xwiki/contrib/llm/IndexWorkerTest.java M application-ai-llm-index/application-ai-llm-index-api/src/test/java/org/xwiki/contrib/llm/internal/rest/DefaultCollectionResourceTest.java M application-ai-llm-index/application-ai-llm-index-api/src/test/java/org/xwiki/contrib/llm/internal/rest/DefaultDocumentResourceTest.java Log Message: ----------- LLMAI-74: Make the document store replaceable * Introduce a new DocumentStore component. * Move right checking for documents into the DocumentStore. * Support and use limit queries for listing documents. * Move document operations to the document store. * Move saving documents to the document store. * Move updating the index after deleting a document to an event listener. * Remove the no longer needed CurrentUserDocument. Commit: 141bcc2964b50e37c6c17a4ecbd19385794efde6 https://github.com/xwiki-contrib/ai-llm/commit/141bcc2964b50e37c6c17a4ecbd1… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M application-ai-llm-index/application-ai-llm-index-api/src/main/java/org/xwiki/contrib/llm/script/CollectionManagerScriptService.java M application-ai-llm-index/application-ai-llm-index-api/src/main/resources/ApplicationResources.properties M application-ai-llm-index/application-ai-llm-index-ui/src/main/resources/AI/Collections/Code/CollectionsClass.xml M application-ai-llm-index/application-ai-llm-index-ui/src/main/resources/AI/Collections/Code/CollectionsSheet.xml M application-ai-llm-index/application-ai-llm-index-ui/src/main/resources/AI/Collections/Code/CollectionsTranslations.xml Log Message: ----------- LLMAI-74: Make the document store replaceable * Add the UI for configuring the document store. Compare: https://github.com/xwiki-contrib/ai-llm/compare/fac8341748f3...141bcc2964b5 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/ai-llm/settings/notifications
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-21286: Upgrade to JSqlParser 4.9
by XWiki Notifications 11 Jun '24

11 Jun '24
1 0
0 0
[xwiki/xwiki-platform] 926191: XWIKI-22230: Upgrade to Netty 4.1.111.Final
by XWiki Notifications 11 Jun '24

11 Jun '24
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 9261911e8ee4a85f3bf59a19a8f11183a18287e4 https://github.com/xwiki/xwiki-platform/commit/9261911e8ee4a85f3bf59a19a8f1… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22230: Upgrade to Netty 4.1.111.Final Commit: 9523a17962d48ea8f63a6867f30b0ae8d95531a0 https://github.com/xwiki/xwiki-platform/commit/9523a17962d48ea8f63a6867f30b… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22231: Upgrade to Calcite 1.37.0 Commit: 1383547b1c7e256e9ec4b4a78e4877c7e4dda937 https://github.com/xwiki/xwiki-platform/commit/1383547b1c7e256e9ec4b4a78e48… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22232: Upgrade to Calcite Avatica 1.25.0 Commit: 76ab99555b17a69ee3cb81e7dde375a2ca5d8ee8 https://github.com/xwiki/xwiki-platform/commit/76ab99555b17a69ee3cb81e7dde3… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22233: Upgrade to HSQLDB 2.7.3 Commit: ba0dca1364a3b1e64206919b6e753e0861a60f5f https://github.com/xwiki/xwiki-platform/commit/ba0dca1364a3b1e64206919b6e75… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22234: Upgrade to c3p0 v0.10.1 Commit: 75161d0c5f8598fcf256851e90e886fceaeb0810 https://github.com/xwiki/xwiki-platform/commit/75161d0c5f8598fcf256851e90e8… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22235: Upgrade to Liquibase 4.28.0 Commit: 44b7467cb933ca50a2a0bb6055d885936629bdf9 https://github.com/xwiki/xwiki-platform/commit/44b7467cb933ca50a2a0bb6055d8… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2024-06-11 (Tue, 11 Jun 2024) Changed paths: M pom.xml Log Message: ----------- XWIKI-22236: Upgrade to MChange Commons 0.3.1 Compare: https://github.com/xwiki/xwiki-platform/compare/cabd5752e410...44b7467cb933 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-22235: Upgrade to Liquibase 4.28.0
by XWiki Notifications 11 Jun '24

11 Jun '24
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-22234: Upgrade to c3p0 v0.10.1
by XWiki Notifications 11 Jun '24

11 Jun '24
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • ...
  • 141
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.