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

  • 58741 discussions
[xwiki/xwiki-dev-llm] 4118db: [Misc] Extract a generic xwiki-backport skill with...
by XWiki Notifications 05 Jul '26

05 Jul '26
Branch: refs/heads/add-testneeded-backport-skill Home: https://github.com/xwiki/xwiki-dev-llm Commit: 4118db4ee1bf4a7349cc98ccf3973226cb10c52c https://github.com/xwiki/xwiki-dev-llm/commit/4118db4ee1bf4a7349cc98ccf3973… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-05 (Sun, 05 Jul 2026) Changed paths: M .claude-plugin/marketplace.json M README.md M xwiki/.claude-plugin/plugin.json M xwiki/okf/index.md M xwiki/skills/xwiki-backport-testneeded/SKILL.md A xwiki/skills/xwiki-backport/SKILL.md Log Message: ----------- [Misc] Extract a generic xwiki-backport skill with pom-version and Java-version checks Add xwiki-backport, a skill for backporting any change to an older branch. It carries the generic mechanics (cherry-pick -x oldest-first in a worktree, adapt-to-branch, verify, push/PR) and two checks that were missing and that break real backports: - Module pom versions: a new module cherry-picks verbatim with the source branch's parent version, so it builds as that version and resolves siblings from the frozen remote snapshot instead of the reactor. A clean cherry-pick never conflicts on it, so it must be swept for explicitly. Latent: individual PRs pass CI, the branch breaks later. - Java level: a newer source branch may use APIs the older branch's Java level lacks (e.g. Java 21 List.getFirst()/getLast()/reversed()); compiles on the source, fails only on the older branch. Refactor xwiki-backport-testneeded to delegate the mechanics to xwiki-backport and keep only the testneeded-specific layer (issue sweep, testneeded label, @since policy for test-support classes, consolidated master PR). Register the new skill (README, OKF index) and bump the plugin version to 0.8.0. Co-Authored-By: Claude Opus 4.8 (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] cb0f02: [Misc] Suppress false-positive java:S2077 SQL inje...
by XWiki Notifications 05 Jul '26

05 Jul '26
Branch: refs/heads/misc-sonar-s2077-hibernate-ddl Home: https://github.com/xwiki/xwiki-platform Commit: cb0f02ee5aab06d86acf763d215f31036b7442cc https://github.com/xwiki/xwiki-platform/commit/cb0f02ee5aab06d86acf763d215f… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-05 (Sun, 05 Jul 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/store/XWikiHibernateStore.java Log Message: ----------- [Misc] Suppress false-positive java:S2077 SQL injection warnings in XWikiHibernateStore The schema/user names used in the CREATE/DROP SCHEMA/USER DDL statements are escaped as quoted SQL identifiers (dialect quoting with internal-quote doubling) via HibernateAdapter#escapeDatabaseName. DDL statements cannot use bind parameters for identifiers, so identifier quoting is the correct protection against SQL injection. Suppress the rule on the two enclosing methods with an explanatory comment as per the XWiki SonarQube convention. 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] 014392: XWIKI-20411: Add automated test for "Name strategi...
by XWiki Notifications 05 Jul '26

05 Jul '26
Branch: refs/heads/stable-17.10.x Home: https://github.com/xwiki/xwiki-platform Commit: 014392e23e5ddc4541a61813f7cb1ca931cf257f https://github.com/xwiki/xwiki-platform/commit/014392e23e5ddc4541a61813f7cb… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-05 (Sun, 05 Jul 2026) Changed paths: M xwiki-platform-core/xwiki-platform-administration/xwiki-platform-administration-test/xwiki-platform-administration-test-pageobjects/src/main/java/org/xwiki/administration/test/po/TemplateProviderViewPage.java M xwiki-platform-core/xwiki-platform-test/xwiki-platform-test-ui/src/main/java/org/xwiki/test/ui/po/PageTypePicker.java M xwiki-platform-distribution/xwiki-platform-distribution-flavor/xwiki-platform-distribution-flavor-test/xwiki-platform-distribution-flavor-test-docker/pom.xml Log Message: ----------- XWIKI-20411: Add automated test for "Name strategies automatic character replacement validation" Fix the stable-17.10.x build after backporting this issue. The flavor-test-docker module kept the master parent version 18.5.0-SNAPSHOT, so it resolved xwiki-platform-test-docker:18.5.0-SNAPSHOT from the remote repository (a frozen master snapshot without the standardFlavor attribute) instead of the reactor's 17.10.10-SNAPSHOT build. Align it with the branch version. Also replace List.getFirst() (a Java 21 API that does not compile on this Java 17 branch, introduced by the XWIKI-18260 backport) with get(0) in PageTypePicker and TemplateProviderViewPage. Co-Authored-By: Claude Opus 4.8 (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-platform] 0ca063: XWIKI-20411: Add automated test for "Name strategi...
by XWiki Notifications 05 Jul '26

05 Jul '26
Branch: refs/heads/stable-18.4.x Home: https://github.com/xwiki/xwiki-platform Commit: 0ca063358f2b9ec451c3ef9c5f61351b80602dc1 https://github.com/xwiki/xwiki-platform/commit/0ca063358f2b9ec451c3ef9c5f61… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-05 (Sun, 05 Jul 2026) Changed paths: M xwiki-platform-core/xwiki-platform-logging/xwiki-platform-logging-test/pom.xml M xwiki-platform-core/xwiki-platform-logging/xwiki-platform-logging-test/xwiki-platform-logging-test-docker/pom.xml M xwiki-platform-core/xwiki-platform-logging/xwiki-platform-logging-test/xwiki-platform-logging-test-pageobjects/pom.xml M xwiki-platform-core/xwiki-platform-model/xwiki-platform-model-validation/xwiki-platform-model-validation-test/pom.xml M xwiki-platform-core/xwiki-platform-model/xwiki-platform-model-validation/xwiki-platform-model-validation-test/xwiki-platform-model-validation-test-docker/pom.xml M xwiki-platform-core/xwiki-platform-model/xwiki-platform-model-validation/xwiki-platform-model-validation-test/xwiki-platform-model-validation-test-pageobjects/pom.xml M xwiki-platform-distribution/xwiki-platform-distribution-flavor/xwiki-platform-distribution-flavor-test/xwiki-platform-distribution-flavor-test-docker/pom.xml Log Message: ----------- XWIKI-20411: Add automated test for "Name strategies automatic character replacement validation" Fix the stable-18.4.x build after backporting this issue (and XWIKI-22081, XWIKI-21853). The new logging-test, model-validation-test and flavor-test-docker modules kept the master parent version 18.5.0-SNAPSHOT, so they built as 18.5.0-SNAPSHOT artifacts and resolved xwiki-platform-test-docker:18.5.0-SNAPSHOT from the remote repository (a frozen master snapshot without the standardFlavor attribute) instead of the reactor's 18.4.3-SNAPSHOT build, breaking the compilation of NameStrategiesDefaultConfigurationIT. Align these poms with the branch version. Co-Authored-By: Claude Opus 4.8 (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-platform] b86dd6: [Misc] Define constants for duplicated string lite...
by XWiki Notifications 05 Jul '26

05 Jul '26
Branch: refs/heads/claude/sleepy-faraday-jyj3el Home: https://github.com/xwiki/xwiki-platform Commit: b86dd6934459945adf8f798638cadcc71a90c0e6 https://github.com/xwiki/xwiki-platform/commit/b86dd6934459945adf8f798638ca… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-05 (Sun, 05 Jul 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/XWikiContext.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/internal/mandatory/XWikiPreferencesDocumentInitializer.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/plugin/packaging/Package.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/web/ExportURLFactory.java M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/web/Utils.java Log Message: ----------- [Misc] Define constants for duplicated string literals reported by SonarQube * Fix 24 java:S1192 SonarCloud issues (define a constant instead of duplicating a string literal) across 6 oldcore classes: XWiki preferences initializer, Package, XWikiDocument, ExportURLFactory, XWikiContext and Utils. Co-Authored-By: Vincent Massol <vincent(a)massol.net> 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-24486: LinkIT#createLinkForNotExistingPage is flickering
by XWiki Notifications 04 Jul '26

04 Jul '26
1 0
0 0
[xwiki/xwiki-platform] 95de9e: XWIKI-24486: LinkIT#createLinkForNotExistingPage i...
by XWiki Notifications 04 Jul '26

04 Jul '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 95de9ea25b58ec4fdf7b9926697f43413c79d7ab https://github.com/xwiki/xwiki-platform/commit/95de9ea25b58ec4fdf7b9926697f… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-07-04 (Sat, 04 Jul 2026) Changed paths: M xwiki-platform-core/xwiki-platform-ckeditor/xwiki-platform-ckeditor-test/xwiki-platform-ckeditor-test-docker/src/test/it/org/xwiki/ckeditor/test/ui/LinkIT.java M xwiki-platform-core/xwiki-platform-ckeditor/xwiki-platform-ckeditor-test/xwiki-platform-ckeditor-test-pageobjects/src/main/java/org/xwiki/ckeditor/test/po/LinkTreeElement.java Log Message: ----------- XWIKI-24486: LinkIT#createLinkForNotExistingPage is flickering 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-24486: LinkIT#createLinkForNotExistingPage is flickering
by XWiki Notifications 04 Jul '26

04 Jul '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-24172: RecycleBinIT#restore is flickering
by XWiki Notifications 04 Jul '26

04 Jul '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XWIKI-23749: UserProfileIT.changeAvatarImage is flickering
by XWiki Notifications 04 Jul '26

04 Jul '26
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • ...
  • 5875
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.