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]

September 2026

  • 1 participants
  • 2257 discussions
[[email protected]][Issue] Updates for XRENDERING-815: XWiki syntax renderer doesn't escape closing macro syntax in various attributes
by XWiki Notifications 10 Sep '26

10 Sep '26
1 0
0 0
[xwiki/xwiki-dev-llm] 7ef996: [Misc] Correct the SonarQube java:S2386 denylist e...
by XWiki Notifications 10 Sep '26

10 Sep '26
Branch: refs/heads/claude/cool-tesla-09kzzr Home: https://github.com/xwiki/xwiki-dev-llm Commit: 7ef99673a552157885ea76e2c1a712400bf7f475 https://github.com/xwiki/xwiki-dev-llm/commit/7ef99673a552157885ea76e2c1a71… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki/okf/sonarqube/index.md Log Message: ----------- [Misc] Correct the SonarQube java:S2386 denylist entry The entry writes off the rule for the break its issue *message* would cause, but the rule fires on the member's value being mutable, not on its declaration - so making the value immutable clears it with no declaration change and no Revapi break. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-dev-llm/settings/notifications
1 0
0 0
[xwiki/xwiki-commons] 268cd2: [Misc] Fix the SonarQube java:S2386 issues of Velo...
by XWiki Notifications 10 Sep '26

10 Sep '26
Branch: refs/heads/claude/nifty-bell-09kzzr Home: https://github.com/xwiki/xwiki-commons Commit: 268cd294466fa802a526c23009f8b38468ff37e3 https://github.com/xwiki/xwiki-commons/commit/268cd294466fa802a526c23009f8b… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-commons-core/xwiki-commons-velocity/src/main/java/org/xwiki/velocity/internal/util/VelocityParser.java Log Message: ----------- [Misc] Fix the SonarQube java:S2386 issues of VelocityParser * The rule fires on the mutable value of a public static final field, not on its declaration, so making the five VELOCITYDIRECTIVE_* sets immutable clears it without the visibility reduction the issue message suggests, which would be a Revapi break. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] e36e2b: [Misc] Fix the SonarQube java:S2097 issues by type...
by XWiki Notifications 10 Sep '26

10 Sep '26
Branch: refs/heads/claude/clever-feynman-09kzzr-judgement Home: https://github.com/xwiki/xwiki-platform Commit: e36e2b47f5b2846f4397bfe4bcc1583afb860123 https://github.com/xwiki/xwiki-platform/commit/e36e2b47f5b2846f4397bfe4bcc1… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-bridge/src/main/java/org/xwiki/bridge/event/AbstractActionExecutionEvent.java M xwiki-platform-core/xwiki-platform-notifications/xwiki-platform-notifications-preferences/xwiki-platform-notifications-preferences-api/src/main/java/org/xwiki/notifications/preferences/internal/AbstractNotificationPreference.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/objects/NumberProperty.java M xwiki-platform-core/xwiki-platform-resource/xwiki-platform-resource-api/src/main/java/org/xwiki/resource/events/AbstractResourceReferenceHandlerEvent.java Log Message: ----------- [Misc] Fix the SonarQube java:S2097 issues by type-testing in equals() * Three equals() implementations cast their argument without a type test, so equals() on an unrelated object throws ClassCastException (and, for XWikiDocument, equals(null) throws NullPointerException) where the Object#equals contract requires false. * The two event classes are false positives - getClass().isAssignableFrom() is the type test - and are resolved with @SuppressWarnings plus the reason, per the XWiki convention. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Commit: 78f9e2791413505da7145775f923ee2adf35f85f https://github.com/xwiki/xwiki-platform/commit/78f9e2791413505da7145775f923… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-annotation/xwiki-platform-annotation-maintainer/src/main/java/org/xwiki/annotation/maintainer/internal/CharacterDiffService.java Log Message: ----------- [Misc] Fix the SonarQube java:S4973 issues of CharacterDiffService * Difference's start/end offsets were compared to Difference.NONE with == and !=, i.e. by reference on boxed integers; it only works today because NONE falls inside the Integer cache. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Commit: 69e04c4326dc592fa19d85cacaac00293f4f3452 https://github.com/xwiki/xwiki-platform/commit/69e04c4326dc592fa19d85cacaac… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-handlers/xwiki-platform-extension-handler-xar/src/main/java/org/xwiki/extension/xar/internal/handler/packager/PackageConfiguration.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/doc/XWikiAttachmentArchive.java Log Message: ----------- [Misc] Fix the SonarQube java:S2225 issues by not returning null from clone() * Both classes implement Cloneable, so the CloneNotSupportedException branch that returned null is unreachable; it is now an IllegalStateException carrying the cause. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Commit: 1d35b18d6e0f082bbd9f6d89bbcccbe80591c233 https://github.com/xwiki/xwiki-platform/commit/1d35b18d6e0f082bbd9f6d89bbcc… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/internal/model/reference/CompactStringEntityReferenceSerializer.java Log Message: ----------- [Misc] Fix the SonarQube java:S1221 issue by renaming equal() to isEqual() * The method is one character away from equals() without overriding it. It is protected in an internal package and its only caller is in the same class. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Commit: 1a48ca59fd0c5b2bfa38dc5b67db042a1fc673f2 https://github.com/xwiki/xwiki-platform/commit/1a48ca59fd0c5b2bfa38dc5b67db… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/main/java/org/xwiki/rest/internal/RangeIterable.java M xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/test/java/org/xwiki/rest/internal/RangeIterableTest.java Log Message: ----------- [Misc] Fix the SonarQube java:S2272 issue of RangeIterable * next() now throws NoSuchElementException past the end of the iteration, as Iterator#next() requires, instead of letting list.get() throw IndexOutOfBoundsException. * RangeIterableTest pinned the old exception type; it now asserts the contractual one. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Commit: fc3294249b12ab0fc962e8d17b018f04b77ec455 https://github.com/xwiki/xwiki-platform/commit/fc3294249b12ab0fc962e8d17b01… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/web/Utils.java Log Message: ----------- [Misc] Fix the SonarQube java:S2674 issue of Utils#getContent * A single InputStream#read() call was assumed to fill the whole buffer, so a short read silently produced a partially-filled byte array. IOUtils#readFully loops and reports the shortfall as an IOException, which the existing handler already turns into an XWikiException. Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 Compare: https://github.com/xwiki/xwiki-platform/compare/e36e2b47f5b2%5E...fc3294249… 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] ea863e: [Misc] Fix various SonarQube issues in xwiki-platform
by XWiki Notifications 10 Sep '26

10 Sep '26
Branch: refs/heads/claude/clever-feynman-09kzzr Home: https://github.com/xwiki/xwiki-platform Commit: ea863ed77b93c2e77d7630b5c212e7cbb6706b06 https://github.com/xwiki/xwiki-platform/commit/ea863ed77b93c2e77d7630b5c212… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-10 (Thu, 10 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-display/xwiki-platform-display-html/src/test/java/org/xwiki/rendering/display/html/script/HTMLDisplayerScriptServiceTest.java M xwiki-platform-core/xwiki-platform-mail/xwiki-platform-mail-send/xwiki-platform-mail-send-default/src/main/java/org/xwiki/mail/internal/factory/AbstractMessageIterator.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/doc/XWikiDocument.java M xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/main/java/org/xwiki/rest/internal/url/AbstractParametrizedRestURLGenerator.java M xwiki-platform-core/xwiki-platform-security/xwiki-platform-security-authorization/xwiki-platform-security-authorization-api/src/test/java/org/xwiki/security/authorization/internal/DefaultAuthorizationSettlerTest.java M xwiki-platform-core/xwiki-platform-wysiwyg/xwiki-platform-wysiwyg-api/src/test/java/org/xwiki/wysiwyg/internal/cleaner/HTMLCleanerTest.java Log Message: ----------- [Misc] Fix various SonarQube issues in xwiki-platform * java:S1607 move the reason a test is disabled into the @Disabled annotation * java:S1223 rename a test method that reads like a constructor * java:S8745 merge the two @BeforeEach methods of HTMLCleanerTest, whose relative order JUnit 5 does not guarantee although one needs the other * java:S2272 make AbstractMessageIterator#next() throw NoSuchElementException past the end * java:S4973 compare two Boolean by value rather than by reference * java:S3038 remove an abstract method already declared by the implemented interface Co-Authored-By: Vincent Massol <vincent(a)massol.net> Co-Authored-By: Claude Opus 5 <noreply(a)anthropic.com> Claude-Session: https://claude.ai/code/session_01ChPn88cFpNHMHk8Y2i1XB2 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 WIKIEDITOR-87: Syntax Highlighting and/or Autocompletion failed to load
by XWiki Notifications 09 Sep '26

09 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24763: The property action buttons of the class editor are smaller than the minimum target size
by XWiki Notifications 09 Sep '26

09 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24855: Improve typography on "Supported By"
by XWiki Notifications 09 Sep '26

09 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24855: Improve typography on "Supported By"
by XWiki Notifications 09 Sep '26

09 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for CONFLUENCE-542: Placeholder Text Converted from Confluence is Rendered as-is
by XWiki Notifications 09 Sep '26

09 Sep '26
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • ...
  • 226
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.