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]

  • 58331 discussions
[[email protected]][Issue] Updates for XWIKI-24331: Extension page WCAG fails: contrast and text alternative
by XWiki Notifications 12 May '26

12 May '26
1 0
0 0
[xwiki/xwiki-platform] f048c3: XWIKI-24331: Extension page WCAG fails: contrast a...
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: f048c3c95760c153ee9e9c1e52b5a0fe15f02e4c https://github.com/xwiki/xwiki-platform/commit/f048c3c95760c153ee9e9c1e52b5… Author: LucasC <lucas.charpentier(a)xwiki.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/resources/ApplicationResources.properties M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/resources/templates/extension.vm M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/extension/extension.css M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/widgets/buttonGroup.css M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/widgets/buttonGroup.js Log Message: ----------- XWIKI-24331: Extension page WCAG fails: contrast and text alternative (#5486) * Updated the colors of the extension search bar to use standard colors. This fixes the contrast issue the advanced search link had. * Updated the two CSS sheets to use CSS variables instead of the Colibri color theme ones. * Fixed contrast of the `supported by` sections. * Updated the nature of the multi supporter node to reflect its role as a toggle to display more. * Changed the visibility of the text alternative of the search extension button so that it can be useful for SRs. * Changed the role of the `.extension-search-more` so that they would accept the `aria-extended` attribute added by the bootstrap collapse. * Removed an unnecessary space 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] 90703b: [XWIKI] Fix SonarQube S2387: Rename RightMap.keySe...
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/claude/focused-carson-LadW1 Home: https://github.com/xwiki/xwiki-platform Commit: 90703b6319257396dac9ab4f62316aaf163e2865 https://github.com/xwiki/xwiki-platform/commit/90703b6319257396dac9ab4f6231… Author: Claude <noreply(a)anthropic.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-security/xwiki-platform-security-authorization/xwiki-platform-security-authorization-api/src/main/java/org/xwiki/security/authorization/RightMap.java Log Message: ----------- [XWIKI] Fix SonarQube S2387: Rename RightMap.keySet field to avoid shadowing AbstractMap.keySet The private field 'keySet' in RightMap was shadowing the 'keySet' field in its parent class AbstractMap, which is flagged by SonarQube rule S2387 as a BLOCKER issue. Renamed the field to 'cachedKeySet' to clarify its purpose as a cached value and eliminate the shadowing. https://claude.ai/code/session_012AtaFRwNqcM6w4eFRtvn2v Commit: 9682012b67c7fea83aa888cd5c6367f12d66e79c https://github.com/xwiki/xwiki-platform/commit/9682012b67c7fea83aa888cd5c63… Author: Claude <noreply(a)anthropic.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggest.js Log Message: ----------- [XWIKI] Fix SonarQube S3516: getSuggestions should not always return the same value The getSuggestions function in suggest.js was always returning false regardless of what action was taken. SonarQube rule S3516 flags this as a BLOCKER since a function that always returns the same value usually indicates a bug. Returned true when a new AJAX request is scheduled (the else branch), keeping false for all other cases where no new request is made (input unchanged, too short, or served from cache). https://claude.ai/code/session_012AtaFRwNqcM6w4eFRtvn2v Compare: https://github.com/xwiki/xwiki-platform/compare/90703b631925%5E...9682012b6… 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] bf2b37: [XWIKI] Fix SonarQube S3516: getSuggestions should...
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/fix/sonar-suggest-always-returns-false Home: https://github.com/xwiki/xwiki-platform Commit: bf2b3797029b89141e9967a57217d242a7ddaa48 https://github.com/xwiki/xwiki-platform/commit/bf2b3797029b89141e9967a57217… Author: Claude <noreply(a)anthropic.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggest.js Log Message: ----------- [XWIKI] Fix SonarQube S3516: getSuggestions should not always return the same value The getSuggestions function in suggest.js was always returning false regardless of what action was taken. SonarQube rule S3516 flags this as a BLOCKER since a function that always returns the same value usually indicates a bug. Returned true when a new AJAX request is scheduled (the else branch), keeping false for all other cases where no new request is made (input unchanged, too short, or served from cache). https://claude.ai/code/session_012AtaFRwNqcM6w4eFRtvn2v 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-24331: Extension page WCAG fails: contrast and text alternative
by XWiki Notifications 12 May '26

12 May '26
1 0
0 0
[xwiki/xwiki-platform] d10fea: [XWIKI] Fix SonarQube S2387: Rename RightMap.keySe...
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/fix/sonar-rightmap-keyset-shadow Home: https://github.com/xwiki/xwiki-platform Commit: d10feacbb6e2407b15474c1c60c6f53e11fe2ebd https://github.com/xwiki/xwiki-platform/commit/d10feacbb6e2407b15474c1c60c6… Author: Claude <noreply(a)anthropic.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-security/xwiki-platform-security-authorization/xwiki-platform-security-authorization-api/src/main/java/org/xwiki/security/authorization/RightMap.java Log Message: ----------- [XWIKI] Fix SonarQube S2387: Rename RightMap.keySet field to avoid shadowing AbstractMap.keySet The private field 'keySet' in RightMap was shadowing the 'keySet' field in its parent class AbstractMap, which is flagged by SonarQube rule S2387 as a BLOCKER issue. Renamed the field to 'cachedKeySet' to clarify its purpose as a cached value and eliminate the shadowing. https://claude.ai/code/session_012AtaFRwNqcM6w4eFRtvn2v 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] 09c05d: XWIKI-24158: Enable realtime editing for BlockNote...
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 09c05d36dac27d2b9ca04eba0dc86372bb6e3935 https://github.com/xwiki/xwiki-platform/commit/09c05d36dac27d2b9ca04eba0dc8… Author: Marius Dumitru Florea <marius(a)xwiki.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M xwiki-platform-core/xwiki-platform-blocknote/xwiki-platform-blocknote-test/xwiki-platform-blocknote-test-docker/src/test/it/org/xwiki/blocknote/test/ui/CollaborationIT.java M xwiki-platform-core/xwiki-platform-blocknote/xwiki-platform-blocknote-test/xwiki-platform-blocknote-test-pageobjects/src/main/java/org/xwiki/blocknote/test/po/BlockNoteRichTextArea.java Log Message: ----------- XWIKI-24158: Enable realtime editing for BlockNote editor * Add integration test to prove local undo/redo works with realtime editing. 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-24256: Upgrade to Junrar 7.5.10
by XWiki Notifications 12 May '26

12 May '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24333: Upgrade to Netty 4.2.13.Final
by XWiki Notifications 12 May '26

12 May '26
1 0
0 0
[xwiki/xwiki-platform] 417360: XWIKI-24333: Upgrade to Netty 4.2.13.Final
by XWiki Notifications 12 May '26

12 May '26
Branch: refs/heads/stable-17.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 417360d062e263a5bcb36119896e352817a50ab8 https://github.com/xwiki/xwiki-platform/commit/417360d062e263a5bcb36119896e… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-05-12 (Tue, 12 May 2026) Changed paths: M pom.xml Log Message: ----------- XWIKI-24333: Upgrade to Netty 4.2.13.Final (cherry picked from commit 5304d6d3fef0aa7aaa9031f5e8ac25a76104a9b5) To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • ...
  • 5834
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.