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

  • 58355 discussions
[xwiki/xwiki-commons] d367bc: XCOMMONS-3731: Upgrade to Objenesis 3.6
by XWiki Notifications 03 Aug '26

03 Aug '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-commons Commit: d367bc7f74f5c8bc8ca57ebd9d2fc3ff5e7b0e44 https://github.com/xwiki/xwiki-commons/commit/d367bc7f74f5c8bc8ca57ebd9d2fc… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3731: Upgrade to Objenesis 3.6 Commit: 4ad2c249f94350f0735316b92a7fc77e3755d590 https://github.com/xwiki/xwiki-commons/commit/4ad2c249f94350f0735316b92a7fc… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3732: Upgrade to Groovy 5.0.8 Commit: 06fd02549c3d9817dfa6c615849aaebd158dc3d9 https://github.com/xwiki/xwiki-commons/commit/06fd02549c3d9817dfa6c615849aa… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3713: Upgrade to AWS SDK 2.50.2 Commit: 58816f0789d6b82638f06843c5af0a334bd6aa26 https://github.com/xwiki/xwiki-commons/commit/58816f0789d6b82638f06843c5af0… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3733: Upgrade to Apache HTTPClient 5.6.3 Commit: c87369dbcccb0e1976c5af66a3309c6b0b9713de https://github.com/xwiki/xwiki-commons/commit/c87369dbcccb0e1976c5af66a3309… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3734: Upgrade to Apache Commons Codec 1.22.1 Commit: 0283eb9f73478b039df77fad7a3d875f8629e22e https://github.com/xwiki/xwiki-commons/commit/0283eb9f73478b039df77fad7a3d8… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3735: Upgrade to Maven Bundle plugin 6.1.0 Commit: 96216e7af8a95f3c9ca063a82f727e19199bba1a https://github.com/xwiki/xwiki-commons/commit/96216e7af8a95f3c9ca063a82f727… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M pom.xml Log Message: ----------- XCOMMONS-3736: Upgrade to JSpecify 1.0.1 Compare: https://github.com/xwiki/xwiki-commons/compare/4e11d1b6b7c1...96216e7af8a9 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
1 0
0 0
[xwiki/xwiki-dev-llm] 9cf9e8: [Misc] Record that a log argument is an object, no...
by XWiki Notifications 03 Aug '26

03 Aug '26
Branch: refs/heads/misc-logging-arguments Home: https://github.com/xwiki/xwiki-dev-llm Commit: 9cf9e8c673fb94caac9535c2203cf2b2b1c32c34 https://github.com/xwiki/xwiki-dev-llm/commit/9cf9e8c673fb94caac9535c2203cf… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M xwiki/instructions/xwiki-org.md A xwiki/okf/conventions/logging.md M xwiki/okf/index.md Log Message: ----------- [Misc] Record that a log argument is an object, not text A logging pass over commons and platform removed explicit toString() calls on log arguments as "redundant, since SLF4J calls toString() itself". That reasoning is wrong for XWiki, because SLF4J is not the only consumer of a log event: AbstractJobStatus captures every warn/error on a job thread, the LogEvent keeps the raw Object[], SafeMessageConverter XStream-serializes each argument as a full object graph whenever XStreamUtils.isSerializable() accepts it (which defaults to true), SafeArrayConverter turns any read failure into null, and consumers read arguments by type -- the log displayers render references as links and Importer casts getArgumentArray()[0] to EntityReference. So both directions are wrong in different cases, which is what the new conventions/logging.md records: the decision table for when to keep an argument typed (references, extension ids, enums, components, collections) and when to force an eager String (arbitrary sources, live resources such as a Hibernate Session, mutable builders, requests, an object whose toString() is deliberately narrower than its fields, a Class from an extension jar), plus the two wrong justifications for removing a toString() and how java:S2629 actually behaves -- String-typed arguments only, no-arg getters and catch blocks exempt -- so that a suppression is only added where one is really needed. The always-on instructions only gain the topic name in the OKF map: this matters when working on a logging call, which is when the OKF gets consulted, so it does not belong in what every session pays for. 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
[jira@xwiki.org][Issue] Updates for XCOMMONS-3713: Upgrade to AWS SDK 2.50.2
by XWiki Notifications 03 Aug '26

03 Aug '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XCOMMONS-3731: Upgrade to Objenesis 3.6
by XWiki Notifications 03 Aug '26

03 Aug '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XCOMMONS-3733: Upgrade to Apache HTTPClient 5.6.3
by XWiki Notifications 03 Aug '26

03 Aug '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XCOMMONS-3734: Upgrade to Apache Commons Codec 1.22.1
by XWiki Notifications 03 Aug '26

03 Aug '26
1 0
0 0
[jira@xwiki.org][Issue] Updates for XCOMMONS-3732: Upgrade to Groovy 5.0.8
by XWiki Notifications 03 Aug '26

03 Aug '26
1 0
0 0
[xwiki/xwiki-platform] c85b51: [Misc] Make the optional OSV list fields never nul...
by XWiki Notifications 03 Aug '26

03 Aug '26
Branch: refs/heads/misc-osv-optional-list-fields Home: https://github.com/xwiki/xwiki-platform Commit: c85b51555960a96524df73a52db981b25298f529 https://github.com/xwiki/xwiki-platform/commit/c85b51555960a96524df73a52db9… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-08-03 (Mon, 03 Aug 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/analyzer/osv/model/response/AffectObject.java M xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-security/xwiki-platform-extension-security-index/src/main/java/org/xwiki/extension/security/internal/analyzer/osv/model/response/VulnObject.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/analyzer/osv/model/response/AffectObjectTest.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/analyzer/osv/model/response/VulnObjectTest.java Log Message: ----------- [Misc] Make the optional OSV list fields never null instead of null-checking the getters Following Simon's review: returning List.of() from the getter when the field is absent made the returned list immutable in that case and mutable (the live internal list) otherwise, and left the field itself null. The ranges, affected and references fields are now initialized to an empty list and the getters are back to returning the field directly. The setters store null as an empty list too, so that an explicit null in the JSON response (which Jackson routes to the setter, bypassing the field initializer) cannot reintroduce the NPE. VulnObject#getAliases() is aligned to the same pattern, replacing its lazy initialization in the getter. Its observable behaviour is unchanged since it was already never returning null. 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] 2248e2: Update dependency com.gradle:common-custom-user-da...
by XWiki Notifications 03 Aug '26

03 Aug '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-rendering Commit: 2248e21d98daf33a6bce4c571e7376eb0dd81d45 https://github.com/xwiki/xwiki-rendering/commit/2248e21d98daf33a6bce4c571e7… Author: Mend Renovate <bot(a)renovateapp.com> Date: 2026-07-31 (Fri, 31 Jul 2026) Changed paths: M .mvn/extensions.xml Log Message: ----------- Update dependency com.gradle:common-custom-user-data-maven-extension to v2.4.0 Commit: a8d6029da9f0a8c1e8e4ba1bb843d22199720ef6 https://github.com/xwiki/xwiki-rendering/commit/a8d6029da9f0a8c1e8e4ba1bb84… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M .mvn/extensions.xml Log Message: ----------- Merge pull request #395 from renovate-bot/renovate/com.gradle-common-custom-user-data-maven-extension-2.x Update dependency com.gradle:common-custom-user-data-maven-extension to v2.4.0 Compare: https://github.com/xwiki/xwiki-rendering/compare/80c4e16bf436...a8d6029da9f0 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-rendering/settings/notifications
1 0
0 0
[xwiki/xwiki-platform] 6f6fa9: Update dependency com.gradle:common-custom-user-da...
by XWiki Notifications 03 Aug '26

03 Aug '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 6f6fa90b5d2594623d494763698112833f456b99 https://github.com/xwiki/xwiki-platform/commit/6f6fa90b5d2594623d4947636981… Author: Mend Renovate <bot(a)renovateapp.com> Date: 2026-07-31 (Fri, 31 Jul 2026) Changed paths: M .mvn/extensions.xml Log Message: ----------- Update dependency com.gradle:common-custom-user-data-maven-extension to v2.4.0 Commit: 1d3ef75ec2107f89bd2715aebcda89ccbbd6fe32 https://github.com/xwiki/xwiki-platform/commit/1d3ef75ec2107f89bd2715aebcda… Author: Thomas Mortagne <thomas.mortagne(a)gmail.com> Date: 2026-08-03 (Mon, 03 Aug 2026) Changed paths: M .mvn/extensions.xml Log Message: ----------- Merge pull request #6051 from renovate-bot/renovate/com.gradle-common-custom-user-data-maven-extension-2.x Update dependency com.gradle:common-custom-user-data-maven-extension to v2.4.0 Compare: https://github.com/xwiki/xwiki-platform/compare/b6eb4ad13498...1d3ef75ec210 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • ...
  • 5836
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.