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
notifications@xwiki.org

  • 1 participants
  • 59336 discussions
[jira@xwiki.org][Issue] Updates for XWIKI-13089: Facets don't take into account rights filtering of results
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-24268: Hibernate attachment versioning store loses the initial 1.1 version when an attachment is first updated
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XRENDERING-802: Prepared macro content leads to duplicated IDs when inserted
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-23943: Section anchors become external links when exported to PDF if the target section heading comes from the content of a macro supporting wiki syntax
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-24286: The security scanner can fail in case of malformed review with empty reviews
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[xwiki/xwiki-platform] 862dc2: [Misc] Try to fix the failing test on CI.
by XWiki Notifications 27 Apr '26

27 Apr '26
Branch: refs/heads/stable-17.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 862dc211ea1a820c7ec586c2919776ce80ddc56c https://github.com/xwiki/xwiki-platform/commit/862dc211ea1a820c7ec586c29197… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-04-27 (Mon, 27 Apr 2026) Changed paths: M xwiki-platform-core/xwiki-platform-flamingo/xwiki-platform-flamingo-skin/xwiki-platform-flamingo-skin-test/xwiki-platform-flamingo-skin-test-docker/src/test/it/org/xwiki/flamingo/test/docker/EditIT.java Log Message: ----------- [Misc] Try to fix the failing test on CI. Root cause analysis: Firefox 125+ only shows the beforeunload confirmation dialog when navigation is triggered by a synchronous user gesture. The Save & View flow triggers navigation via an async AJAX callback (onSuccess sets window.location), which no longer qualifies as a user gesture. Firefox silently navigates without showing the dialog — so return false and even event.preventDefault() in onbeforeunload both fail to produce a dialog. New strategy: Instead of fighting the browser to show a dialog, we override maybeRedirect on the AjaxSaveAndContinue instance to be a no-op. This way: 1. The AJAX save completes normally 2. The "Saved" notification is displayed (with 30-second timeout) 3. The form is disabled (set by disableEditors() before the AJAX request) 4. Navigation is not triggered — no beforeunload dialog needed 5. Both assertions (waitForNotificationSuccessMessage("Saved") and assertFalse(editWiki.isEnabled())) can be checked cleanly 6. Then setup.gotoPage(reference) navigates back to the editor normally The test still validates exactly what it was designed to verify: that the "Saved" notification appears and the form is disabled when Save & View is clicked. Also note: the @IgnoreBrowser(value = "chrome") annotation is now unnecessary since we no longer use alert handling. 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] 4c3b45: XWIKI-24286: The security scanner can fail in case...
by XWiki Notifications 27 Apr '26

27 Apr '26
Branch: refs/heads/stable-17.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 4c3b456c38d3182a482843abc204e622be8994a6 https://github.com/xwiki/xwiki-platform/commit/4c3b456c38d3182a482843abc204… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-04-27 (Mon, 27 Apr 2026) Changed paths: M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-security/xwiki-platform-extension-security-index/src/main/java/org/xwiki/extension/security/internal/ReviewMapFilter.java M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-security/xwiki-platform-extension-security-index/src/test/java/org/xwiki/extension/security/internal/ReviewMapFilterTest.java Log Message: ----------- XWIKI-24286: The security scanner can fail in case of malformed review with empty reviews (cherry picked from commit 4f0f7f6f49922d380f6f28a99c23bff1b2018b63) (cherry picked from commit 650b6991adf77168c784d1e9f5353deef1610a61) 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] 650b69: XWIKI-24286: The security scanner can fail in case...
by XWiki Notifications 27 Apr '26

27 Apr '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 650b6991adf77168c784d1e9f5353deef1610a61 https://github.com/xwiki/xwiki-platform/commit/650b6991adf77168c784d1e9f535… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-04-27 (Mon, 27 Apr 2026) Changed paths: M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-security/xwiki-platform-extension-security-index/src/main/java/org/xwiki/extension/security/internal/ReviewMapFilter.java M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-security/xwiki-platform-extension-security-index/src/test/java/org/xwiki/extension/security/internal/ReviewMapFilterTest.java Log Message: ----------- XWIKI-24286: The security scanner can fail in case of malformed review with empty reviews (cherry picked from commit 4f0f7f6f49922d380f6f28a99c23bff1b2018b63) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-24286: The security scanner can fail in case of malformed review with empty reviews
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for CONFLUENCE-520: Provide an API to read tasks from the confluence package
by XWiki Notifications 27 Apr '26

27 Apr '26
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 1005
  • 1006
  • 1007
  • 1008
  • 1009
  • 1010
  • 1011
  • ...
  • 5934
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.