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
  • 2237 discussions
[[email protected]][Issue] Updates for XCOMMONS-3772: Don't run javac lint checks on generated sources
by XWiki Notifications 07 Sep '26

07 Sep '26
1 0
0 0
[xwiki/xwiki-dev-llm] c8a986: [Misc] Route JIRA description and comment writes t...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/jira-cli-list-formatting Home: https://github.com/xwiki/xwiki-dev-llm Commit: c8a986b3d6da0e09d7c0c7c1619b26d279b4138b https://github.com/xwiki/xwiki-dev-llm/commit/c8a986b3d6da0e09d7c0c7c1619b2… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki/okf/servers/jira.md M xwiki/skills/xwiki-jira/SKILL.md Log Message: ----------- [Misc] Route JIRA description and comment writes through REST jira-cli runs text bodies through a Markdown->JIRA-wiki converter that drops the blank line before a list, so the first item is glued onto the preceding paragraph and renders as prose. That happens for valid Markdown too, which the previous guidance did not cover: it said to pass Markdown and let jira-cli convert, and only sent raw wiki markup to REST. * Make the backend decision depend on the operation rather than on whether jira-cli is installed: any description or comment goes through REST, jira-cli keeps reads, searches and field/status changes * Rewrite the jira-cli body gotcha to name both failure modes, the escaping one and the list one * Note that omitting -p/--project silently creates the issue in the config's default project, folded into the existing --project note * Drop the "use --template - and pipe the body on stdin" advice, which contradicted the above Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> 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-platform] 1249b9: XCOMMONS-3772: Don't run javac lint checks on gene...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/XCOMMONS-3772 Home: https://github.com/xwiki/xwiki-platform Commit: 1249b9ec4896257359addca92c9cc82228195509 https://github.com/xwiki/xwiki-platform/commit/1249b9ec4896257359addca92c9c… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-query/xwiki-platform-query-jpql-parser/pom.xml Log Message: ----------- XCOMMONS-3772: Don't run javac lint checks on generated sources * Compile the SableCC-generated parser and AST nodes of xwiki-platform-query-jpql-parser in their own maven-compiler-plugin execution with -Xlint:none, and restrict the default execution to src/main/java, so that the 100 rawtypes warnings the generated code raises go away while the hand-written sources keep being fully checked * Fix the indentation of the closing properties tag Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
[xwiki/xwiki-rendering] 0dcf47: XCOMMONS-3772: Don't run javac lint checks on gene...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/XCOMMONS-3772 Home: https://github.com/xwiki/xwiki-rendering Commit: 0dcf47e6ed1e7f25d6c64550acdbe07aef425a1f https://github.com/xwiki/xwiki-rendering/commit/0dcf47e6ed1e7f25d6c64550acd… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki-rendering-wikimodel/pom.xml Log Message: ----------- XCOMMONS-3772: Don't run javac lint checks on generated sources * Compile the JavaCC-generated scanners of xwiki-rendering-wikimodel in their own maven-compiler-plugin execution with -Xlint:none, and restrict the default execution to src/main/java, so that the 12 warnings the generated scanners raise (6 this-escape and 6 static) go away while the hand-written sources keep being fully checked * Pass the hand-written source root on -sourcepath with -implicit:none for the generated execution, since the generated scanners and the hand-written sources reference each other and so cannot simply be compiled in sequence Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-rendering/settings/notifications
1 0
0 0
[xwiki/xwiki-commons] 263e7e: XCOMMONS-3772: Don't run javac lint checks on gene...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/XCOMMONS-3772 Home: https://github.com/xwiki/xwiki-commons Commit: 263e7e95c2ac112d2c991df809e2cd4cafba7132 https://github.com/xwiki/xwiki-commons/commit/263e7e95c2ac112d2c991df809e2c… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki-commons-core/xwiki-commons-repository/xwiki-commons-repository-model/pom.xml M xwiki-commons-pom/pom.xml Log Message: ----------- XCOMMONS-3772: Don't run javac lint checks on generated sources * Add a xwiki.compiler.xlint property to xwiki-commons-pom, used for javac's -Xlint option, so that a module can switch off the lint categories it cannot be clean for. Document that it is only meant for modules where that is what we mean, since -Xlint applies to a whole javac invocation and not to a source path * Stop setting the compiler plugin's showDeprecation option: it passed an unconditional -deprecation to javac, which won over any -Xlint:-deprecation set by a module. Deprecation is already part of -Xlint, so nothing else changes * Switch deprecation and dep-ann off in xwiki-commons-repository-model, which contains no hand-written source: the XSD documents 2 elements as deprecated and XJC turns that into a javadoc @deprecated tag without the matching @Deprecated annotation, then generates fluent accessors that call the deprecated getters Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
1 0
0 0
[xwiki-contrib/application-releasenotes] abab1f: [Misc] Retry opening the screenshots picker sugges...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/misc-attachment-picker-flicker Home: https://github.com/xwiki-contrib/application-releasenotes Commit: abab1f148a5f632a071662dabc46bad3bd717356 https://github.com/xwiki-contrib/application-releasenotes/commit/abab1f148a… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M application-releasenotes-test/application-releasenotes-test-docker/src/test/it/org/xwiki/releasenotes/test/ui/ReleaseNotesIT.java Log Message: ----------- [Misc] Retry opening the screenshots picker suggestions in the functional test * ReleaseNotesIT#screenshotsAreEditedThroughAnAttachmentPicker failed once on CI with a TimeoutException in SuggestInputElement#waitForNonTypedSuggestions, while every other test of the class passed and master was green. * The archived video shows why: after the inline form finishes loading, not a single frame changes for 15 seconds, then the frame holding the click changes by almost nothing and the next 30 seconds are the wait timing out. The widget gets neither the focus ring nor a caret nor a dropdown, so the pointer event never reached it. Nothing was still loading or moving, so no extra wait can help. * Retry the click while the dropdown is not open, and only then wait for the suggestions. The click is guarded by the dropdown state because clicking a widget whose dropdown is already open would close it again. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/application-releasenotes/settings/notifica…
1 0
0 0
[[email protected]][Issue] Updates for CRISTALNC-61: Support wiki in Teams Folders
by XWiki Notifications 07 Sep '26

07 Sep '26
1 0
0 0
[xwiki/xwiki-commons] 96ce5f: XCOMMONS-3755: Upgrade to Surefire and Failsafe M...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-commons Commit: 96ce5fd7c721fb54eeb39f695f657c0d3302a8f7 https://github.com/xwiki/xwiki-commons/commit/96ce5fd7c721fb54eeb39f695f657… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3755: Upgrade to Surefire and Failsafe Maven Plugin 3.6.0 * fix the include configuration Commit: 17ef159df72a5596b744078071a98eef29fffaa6 https://github.com/xwiki/xwiki-commons/commit/17ef159df72a5596b744078071a98… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/pom.xml M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/main/java/org/xwiki/job/internal/AbstractJobStatusFolderResolver.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/main/java/org/xwiki/job/internal/DefaultJobStatusStore.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/main/java/org/xwiki/job/internal/JobStatusFolderResolver.java A xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/test/java/org/xwiki/job/internal/AbstractJobStatusFolderResolverTest.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/test/java/org/xwiki/job/internal/DefaultJobStatusStoreTest.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/test/java/org/xwiki/job/internal/Version1JobStatusFolderResolverTest.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/test/java/org/xwiki/job/internal/Version2JobStatusFolderResolverTest.java M xwiki-commons-core/xwiki-commons-job/xwiki-commons-job-default/src/test/java/org/xwiki/job/internal/Version3JobStatusFolderResolverTest.java Log Message: ----------- XCOMMONS-3751: Improve support of older serialized job paths Compare: https://github.com/xwiki/xwiki-commons/compare/2ebad436a7a0...17ef159df72a 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] 847e5f: [Misc] Don't save screenshots and recordings for a...
by XWiki Notifications 07 Sep '26

07 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 847e5fe7b3c83280675d4af0383e49b03950c414 https://github.com/xwiki/xwiki-platform/commit/847e5fe7b3c83280675d4af0383e… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-09-07 (Mon, 07 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-test/xwiki-platform-test-docker/src/main/java/org/xwiki/test/docker/internal/junit5/XWikiDockerExtension.java Log Message: ----------- [Misc] Don't save screenshots and recordings for aborted tests Aborted tests aren't failures to debug, so no need to save a screenshot or screen recording for them. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> 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-24823: Office macro bypasses view right on attachments
by XWiki Notifications 07 Sep '26

07 Sep '26
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • ...
  • 224
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.