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 XWIKI-24994: Upgrade to micromark-extension-gfm-table 2.1.2
by XWiki Notifications 15 Sep '26

15 Sep '26
1 0
0 0
[xwiki/xwiki-platform] c7dfdb: XWIKI-24994: Upgrade to micromark-extension-gfm-ta...
by XWiki Notifications 15 Sep '26

15 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: c7dfdbbacc50c3b22d93768f3e64202f499ab3f0 https://github.com/xwiki/xwiki-platform/commit/c7dfdbbacc50c3b22d93768f3e64… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M pnpm-lock.yaml M pnpm-workspace.yaml Log Message: ----------- XWIKI-24994: Upgrade to micromark-extension-gfm-table 2.1.2 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] 61764f: XWIKI-24875: Trusted domains aren't updated after ...
by XWiki Notifications 15 Sep '26

15 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 61764fdd472baf6bb17f4cc6dd939d3eebff05e8 https://github.com/xwiki/xwiki-platform/commit/61764fdd472baf6bb17f4cc6dd93… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-url/xwiki-platform-url-default/pom.xml M xwiki-platform-core/xwiki-platform-url/xwiki-platform-url-default/src/main/java/org/xwiki/url/internal/DefaultURLSecurityManager.java M xwiki-platform-core/xwiki-platform-url/xwiki-platform-url-default/src/main/java/org/xwiki/url/internal/XWikiServerClassListener.java M xwiki-platform-core/xwiki-platform-url/xwiki-platform-url-default/src/test/java/org/xwiki/url/internal/DefaultURLSecurityManagerTest.java A xwiki-platform-core/xwiki-platform-url/xwiki-platform-url-default/src/test/java/org/xwiki/url/internal/XWikiServerClassListenerTest.java Log Message: ----------- XWIKI-24875: Trusted domains aren't updated after wiki descriptor change * fix the events XWikiServerClassListener listens to: the reference of an xobject event is the reference of the xobject, so the LocalDocumentReference of the xclass that was used never matched them and the cache of trusted domains was never invalidated. Use BaseObjectReference.anyEvents() instead, like AbstractDocumentConfigurationSource does. * keep the trusted domains in a memoizing supplier that is replaced on invalidation. This publishes the set safely, which the previous code didn't do as the field wasn't volatile, and it ensures that a computation that is running while the cache is invalidated cannot store the outdated descriptors it is based on. As the cache was never invalidated so far, these race conditions couldn't be surfaced before. * modernize the creation of the lists in DefaultURLSecurityManagerTest. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> Commit: ce30a4bae7dde98569f000f7baa881eeac7189b6 https://github.com/xwiki/xwiki-platform/commit/ce30a4bae7dde98569f000f7baa8… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M xwiki-platform-core/xwiki-platform-test/xwiki-platform-test-rest/src/main/java/org/xwiki/test/extension/JobExecutor.java Log Message: ----------- XCOMMONS-3481: Stop using http client 3 in the build * fix the timeout of the job execution used to provision the flavor in docker tests: the HTTP client 3 that was used before had no socket timeout, while HTTP client 5 defaults to 3 minutes. As the job is executed synchronously (async=false), the whole flavor installation has to fit into that single request, which it doesn't on a loaded CI agent, so the setup failed with a SocketTimeoutException. Pass an explicit timeout of 15 minutes instead. * close the client once the request has been executed. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> Commit: 43cfe3b4fe4e75a189e300cc798d6366c512cc56 https://github.com/xwiki/xwiki-platform/commit/43cfe3b4fe4e75a189e300cc798d… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M pnpm-lock.yaml M pnpm-workspace.yaml M pom.xml M xwiki-platform-core/xwiki-platform-feed/xwiki-platform-feed-api/src/main/java/com/xpn/xwiki/plugin/feed/SyndEntryDocumentSource.java M xwiki-platform-core/xwiki-platform-feed/xwiki-platform-feed-api/src/test/java/com/xpn/xwiki/plugin/feed/SyndEntryDocumentSourceTest.java M xwiki-platform-core/xwiki-platform-image/xwiki-platform-image-processing/xwiki-platform-image-processing-api/pom.xml M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-docker/pom.xml M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-docker/src/test/it/org/xwiki/livedata/test/ui/AllIT.java A xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-test/xwiki-platform-livedata-test-docker/src/test/it/org/xwiki/livedata/test/ui/LiveDataInplaceEditIT.java A xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-webjar/src/main/node/src/__tests__/main.test.js M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-webjar/src/main/node/src/main.js A xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-webjar/src/main/node/src/services/__tests__/init.test.js M xwiki-platform-core/xwiki-platform-livedata/xwiki-platform-livedata-webjar/src/main/node/src/services/init.js M xwiki-platform-core/xwiki-platform-node/src/main/node/core/livedata/livedata-xwiki/src/XWikiLiveDataSource.ts M xwiki-platform-core/xwiki-platform-node/src/main/node/core/livedata/livedata-xwiki/src/liveDataSource.test.ts M xwiki-platform-core/xwiki-platform-notifications/xwiki-platform-notifications-test/xwiki-platform-notifications-test-docker/pom.xml M xwiki-platform-core/xwiki-platform-test/pom.xml Log Message: ----------- Merge branch 'master' of github.com:xwiki/xwiki-platform Compare: https://github.com/xwiki/xwiki-platform/compare/57708b15b654...43cfe3b4fe4e 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-24993: The anchor of a link to another page is dropped from the URL unless a query string is also set
by XWiki Notifications 15 Sep '26

15 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24992: Upgrade mantine to 9.6.1
by XWiki Notifications 15 Sep '26

15 Sep '26
1 0
0 0
[xwiki/xwiki-platform] 57708b: [Misc] Update dependency @microsoft/api-extractor ...
by XWiki Notifications 15 Sep '26

15 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 57708b15b6544004bb599798bf7c86fefdd5dca6 https://github.com/xwiki/xwiki-platform/commit/57708b15b6544004bb599798bf7c… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M pnpm-lock.yaml M pnpm-workspace.yaml Log Message: ----------- [Misc] Update dependency @microsoft/api-extractor to v7.59.1 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] 6bc061: [Misc] Update dependency @types/node to v24.13.4
by XWiki Notifications 15 Sep '26

15 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 6bc061b18085a4543b845529f1264a43d6fabce9 https://github.com/xwiki/xwiki-platform/commit/6bc061b18085a4543b845529f126… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M pnpm-lock.yaml M pnpm-workspace.yaml Log Message: ----------- [Misc] Update dependency @types/node to v24.13.4 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-24991: Upgrade to Selenium 4.49.0
by XWiki Notifications 15 Sep '26

15 Sep '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24992: Upgrade mantine to 9.6.1
by XWiki Notifications 15 Sep '26

15 Sep '26
1 0
0 0
[xwiki/xwiki-platform] 96fb0c: XWIKI-24992: Upgrade mantine to 9.6.1
by XWiki Notifications 15 Sep '26

15 Sep '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 96fb0c90c5563697fa615ef8f51f92b67255fe21 https://github.com/xwiki/xwiki-platform/commit/96fb0c90c5563697fa615ef8f51f… Author: Manuel Leduc <manuel.leduc(a)xwiki.com> Date: 2026-09-15 (Tue, 15 Sep 2026) Changed paths: M pnpm-lock.yaml M pnpm-workspace.yaml Log Message: ----------- XWIKI-24992: Upgrade mantine to 9.6.1 * Update the @mantine/core and @mantine/hooks catalog entries to 9.6.1 To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • ...
  • 224
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.