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 -----
  • September
  • 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]

  • 58878 discussions
[[email protected]][Issue] Updates for XWIKI-23824: Double search result after upgrade to 17.10.0
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-23634: JSX resources loaded twice when loading docextra tab UIX
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-23788: Support the enforce required rights property in Live Data
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
[xwiki/xwiki-platform] d50c31: XWIKI-23788: Support the enforce required rights p...
by XWiki Notifications 18 Dec '25

18 Dec '25
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: d50c3126a8027bb952e1ab6a8ae310885bc55ad4 https://github.com/xwiki/xwiki-platform/commit/d50c3126a8027bb952e1ab6a8ae3… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-livetable/src/main/java/org/xwiki/livedata/internal/livetable/ModelBridge.java M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-livetable/src/main/resources/liveTableLiveDataConfiguration.json M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-livetable/src/test/java/org/xwiki/livedata/internal/livetable/ModelBridgeTest.java M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-docker/src/test/it/org/xwiki/livedata/test/ui/LiveDataIT.java M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-pageobjects/src/main/java/org/xwiki/livedata/test/po/TableLayoutElement.java M xwiki-platform-core/xwiki-platform-livetable/xwiki-platform-livetable-ui/src/main/resources/XWiki/DocumentClass.xml M xwiki-platform-core/xwiki-platform-livetable/xwiki-platform-livetable-ui/src/main/resources/XWiki/LiveTableResultsMacros.xml Log Message: ----------- XWIKI-23788: Support the enforce required rights property in Live Data (#4947) * Return the flag in the standard LiveTable results. * Add the metadata in the DocumentClass. * Add the metadata in the liveTableLiveDataConfiguration. * Add support for saving the flag in Live Data. * Add a unit test. * Add an integration test. * Add support for filtering boolean columns in TableLayoutElement. * Split the huge and too complex filter method into several methods. * Support editing document properties in TableLayoutElement. To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 011fa4: XWIKI-23700: Creating a page from a template doesn...
by XWiki Notifications 18 Dec '25

18 Dec '25
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 011fa45f922161d79363f8c534c1b5c58b424319 https://github.com/xwiki/xwiki-platform/commit/011fa45f922161d79363f8c534c1… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M xwiki-platform-core/xwiki-platform-administration/xwiki-platform-administration-test/xwiki-platform-administration-test-docker/pom.xml M xwiki-platform-core/xwiki-platform-administration/xwiki-platform-administration-test/xwiki-platform-administration-test-docker/src/test/it/org/xwiki/administration/test/ui/PageTemplatesIT.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/XWikiException.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/doc/XWikiDocument.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/web/CreateActionRequestHandler.java A xwiki-platform-core/xwiki-platform-oldcore/src/main/java/org/xwiki/internal/web/PageTemplateRequiredRightsChecker.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/resources/ApplicationResources.properties M xwiki-platform-core/xwiki-platform-oldcore/src/main/resources/META-INF/components.txt M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/doc/XWikiDocumentMockitoTest.java M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/web/CreateActionTest.java A xwiki-platform-core/xwiki-platform-oldcore/src/test/java/org/xwiki/internal/web/PageTemplateRequiredRightsCheckerTest.java M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/resources/templates/createinline.vm Log Message: ----------- XWIKI-23700: Creating a page from a template doesn't copy required rights (#4946) * Copy the enforce flag when applying a page template, add a unit test to verify this. * Add a unit test for PageTemplateRequiredRightsChecker to verify that the right checking works correctly in particular with different scopes. * Don't list templates that enforce required rights that the user doesn't have at the current location as using them would result in an error when saving. * Display an error when the user selects a template that cannot be used at the selected target location. * Add UI tests to verify that templates the user cannot use are excluded and that the error message is displayed as expected. To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-commons] 22c8b3: XCOMMONS-3383: Upgrade to WebDriverManager 6.1.1 (...
by XWiki Notifications 18 Dec '25

18 Dec '25
Branch: refs/heads/stable-17.4.x Home: https://github.com/xwiki/xwiki-commons Commit: 22c8b39b03d61c76c846ada1e02f449eb71a6ded https://github.com/xwiki/xwiki-commons/commit/22c8b39b03d61c76c846ada1e02f4… Author: Mend Renovate <bot(a)renovateapp.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3383: Upgrade to WebDriverManager 6.1.1 (#1391) (cherry picked from commit 48e4fa43e7a713720dd72b89fca3c2503aff32ac) Commit: b46aa76283787ac9f96611936b998ff0abc07930 https://github.com/xwiki/xwiki-commons/commit/b46aa76283787ac9f96611936b998… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3394: Upgrade to WebDriverManager 6.2.0 (cherry picked from commit 0f585d2fca46eb12d43965e7de340ad953998a08) Commit: a9724fa95ea372f4fedd44ea4e8fa8a1b20530ee https://github.com/xwiki/xwiki-commons/commit/a9724fa95ea372f4fedd44ea4e8fa… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3412: Upgrade to WebDriverManager 6.3.1 (cherry picked from commit 12d0356dee6019cd08320ba59f03537f0cf37fd5) Commit: 80be4f06998cec701557c8fadcdfff9842c5d0ea https://github.com/xwiki/xwiki-commons/commit/80be4f06998cec701557c8fadcdff… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3440: Upgrade to WebDriverManager 6.3.2 (cherry picked from commit 5389beba916ba743ad547c626421f92882bf3fe8) Commit: 4a114734eac8f66e5cceb20e1fe5a4c351a17110 https://github.com/xwiki/xwiki-commons/commit/4a114734eac8f66e5cceb20e1fe5a… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3473: Upgrade to WebDriverManager 6.3.3 (cherry picked from commit 7da5097093af2c1b236ba42863f639165692cb64) Compare: https://github.com/xwiki/xwiki-commons/compare/88ff7263cd1c...4a114734eac8 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
1 0
0 0
[xwiki/xwiki-commons] 49846c: XCOMMONS-3266: Upgrade to WebDriverManager 5.9.3
by XWiki Notifications 18 Dec '25

18 Dec '25
Branch: refs/heads/stable-16.10.x Home: https://github.com/xwiki/xwiki-commons Commit: 49846c32bccca2e8b73aae3935747002e14ae778 https://github.com/xwiki/xwiki-commons/commit/49846c32bccca2e8b73aae3935747… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3266: Upgrade to WebDriverManager 5.9.3 (cherry picked from commit cd16bc216b1a230eb4b259360585c01fb1bf7d85) Commit: bc76273e4a36b805be93b567dc23f5d32f281759 https://github.com/xwiki/xwiki-commons/commit/bc76273e4a36b805be93b567dc23f… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3293: Upgrade to WebDriverManager 6.0.0 (cherry picked from commit d8600c2fd27a1e21ed56135461a7d36683aa41e1) Commit: 3dd596ae4f3c264e302966f7034924e9d464dc91 https://github.com/xwiki/xwiki-commons/commit/3dd596ae4f3c264e302966f703492… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3293: Upgrade to WebDriverManager 6.0.1 (cherry picked from commit 3f956b53ca8a581d2fc768026a0194b33b882bc7) Commit: 5965829901159f1a668777f5877e1322741e613a https://github.com/xwiki/xwiki-commons/commit/5965829901159f1a668777f5877e1… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3324: Upgrade to WebDriverManager 6.1.0 (cherry picked from commit 0d969b44693a222fc2f83953ed7d72124002074f) Commit: 296d869a2d67d63a3f234a80612a598323d4c6cb https://github.com/xwiki/xwiki-commons/commit/296d869a2d67d63a3f234a80612a5… Author: Mend Renovate <bot(a)renovateapp.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3383: Upgrade to WebDriverManager 6.1.1 (#1391) (cherry picked from commit 48e4fa43e7a713720dd72b89fca3c2503aff32ac) Commit: b37d02682d316909ba914c235277e6491374d38f https://github.com/xwiki/xwiki-commons/commit/b37d02682d316909ba914c235277e… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3394: Upgrade to WebDriverManager 6.2.0 (cherry picked from commit 0f585d2fca46eb12d43965e7de340ad953998a08) Commit: 8c552dfdf82b84b5b96d064b0011f24c83e3a612 https://github.com/xwiki/xwiki-commons/commit/8c552dfdf82b84b5b96d064b0011f… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3412: Upgrade to WebDriverManager 6.3.1 (cherry picked from commit 12d0356dee6019cd08320ba59f03537f0cf37fd5) Commit: 10b7b014a5c8c1144f62053a5f9335c3cc28ff7e https://github.com/xwiki/xwiki-commons/commit/10b7b014a5c8c1144f62053a5f933… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3440: Upgrade to WebDriverManager 6.3.2 (cherry picked from commit 5389beba916ba743ad547c626421f92882bf3fe8) Commit: adb1e5134f39a20bffd8799c68fe754742265974 https://github.com/xwiki/xwiki-commons/commit/adb1e5134f39a20bffd8799c68fe7… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2025-12-18 (Thu, 18 Dec 2025) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3473: Upgrade to WebDriverManager 6.3.3 (cherry picked from commit 7da5097093af2c1b236ba42863f639165692cb64) Compare: https://github.com/xwiki/xwiki-commons/compare/cda281aed43c...adb1e5134f39 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-23640: Upgrade to Selenium 4.38.0
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-23245: Upgrade to Selenium 4.33.0
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-18698: Mentions are displayed in the event stream of a wiki as addressed to the current user when they're actually not
by XWiki Notifications 18 Dec '25

18 Dec '25
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 1541
  • 1542
  • 1543
  • 1544
  • 1545
  • 1546
  • 1547
  • ...
  • 5888
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.