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 -----
  • 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]

August 2026

  • 1 participants
  • 2088 discussions
[xwiki/xwiki-platform] ae8493: XWIKI-24680: Renaming an attachment without changi...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/XWIKI-24680 Home: https://github.com/xwiki/xwiki-platform Commit: ae84935d40f10e7402b40fc9ac4218110dc1ffc2 https://github.com/xwiki/xwiki-platform/commit/ae84935d40f10e7402b40fc9ac42… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/src/main/java/org/xwiki/attachment/internal/refactoring/job/MoveAttachmentJob.java M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/src/test/java/org/xwiki/attachment/internal/refactoring/job/MoveAttachmentJobTest.java M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-test/xwiki-platform-attachment-test-docker/src/test/it/org/xwiki/attachment/test/ui/docker/MoveAttachmentIT.java Log Message: ----------- XWIKI-24680: Renaming an attachment without changing its location deletes the attachment * Use a single document instance when the source and the destination of the move are the same document, so that the renamed attachment is added to the instance that is saved instead of to a discarded clone. * Convert MoveAttachmentJobTest to @OldcoreTest so that the job loads, modifies and saves actual XWikiDocument instances through the store, and assert what the job persists rather than which mock it interacts with. * Add a functional test renaming an attachment without changing its location, a case that was only ever covered in combination with a move to another page. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> Commit: a9519eb350dfde3ee56f40853f16bf7e141da92f https://github.com/xwiki/xwiki-platform/commit/a9519eb350dfde3ee56f40853f16… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/pom.xml M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/src/test/java/org/xwiki/attachment/internal/refactoring/job/MoveAttachmentJobTest.java M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-test/xwiki-platform-attachment-test-docker/src/test/it/org/xwiki/attachment/test/ui/docker/MoveAttachmentIT.java Log Message: ----------- XWIKI-24680: Renaming an attachment without changing its location deletes the attachment * Restore the assertions on the calls performed by the job that the conversion to @OldcoreTest had dropped: which document is saved with which comment, that the rolled back document is saved with the rollback comment, which document the existing redirection is removed from, and that no document is saved at all when the rights are missing. * Assert that the job leaves the document instance held by the store untouched, which is what the verifications on XWikiDocument#clone() used to cover. * Resolve the document authors with the real user reference components instead of mocking the resolver, since the previous assertion on GuestUserReference held even when no author was set. * Assert the redirection object in the test covering the failure to save the target document. * Perform the rename of the functional test with a different user than the one who uploaded the attachment, and assert that the rename preserves the attachment author, version and history while the document author becomes the user performing the rename. * Assert that the redirection created by the rename is effective and not merely recorded, by downloading the attachment under its old name. * Drop the page reload that immediately followed the creation of the page in the rename test. Co-Authored-By: Claude Opus 5 (1M context) <noreply(a)anthropic.com> Compare: https://github.com/xwiki/xwiki-platform/compare/8d3e14f67de8...a9519eb350df 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-24648: Realtime user list in CKEditor and wiki editor flickers when other users move the caret
by XWiki Notifications 11 Aug '26

11 Aug '26
1 0
0 0
[xwiki/xwiki-platform] 8d3e14: XWIKI-24680: Moving an attachment deletes the atta...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/XWIKI-24680 Home: https://github.com/xwiki/xwiki-platform Commit: 8d3e14f67de82b4323fd5c3fa96026dffc27d593 https://github.com/xwiki/xwiki-platform/commit/8d3e14f67de82b4323fd5c3fa960… Author: Vincent Massol <vincent(a)massol.net> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/pom.xml M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-api/src/test/java/org/xwiki/attachment/internal/refactoring/job/MoveAttachmentJobTest.java M xwiki-platform-core/xwiki-platform-attachment/xwiki-platform-attachment-test/xwiki-platform-attachment-test-docker/src/test/it/org/xwiki/attachment/test/ui/docker/MoveAttachmentIT.java Log Message: ----------- XWIKI-24680: Moving an attachment deletes the attachment without creating the new one * Restore the assertions on the calls performed by the job that the conversion to @OldcoreTest had dropped: which document is saved with which comment, that the rolled back document is saved with the rollback comment, which document the existing redirection is removed from, and that no document is saved at all when the rights are missing. * Assert that the job leaves the document instance held by the store untouched, which is what the verifications on XWikiDocument#clone() used to cover. * Resolve the document authors with the real user reference components instead of mocking the resolver, since the previous assertion on GuestUserReference held even when no author was set. * Assert the redirection object in the test covering the failure to save the target document. * Perform the rename of the functional test with a different user than the one who uploaded the attachment, and assert that the rename preserves the attachment author, version and history while the document author becomes the user performing the rename. * Assert that the redirection created by the rename is effective and not merely recorded, by downloading the attachment under its old name. * Drop the page reload that immediately followed the creation of the page in the rename test. 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-platform] 680b43: XWIKI-24648: Realtime user list in CKEditor and wi...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/backport/stable-18.4.x/pr-6040 Home: https://github.com/xwiki/xwiki-platform Commit: 680b4331a808eabe524fa2e9ada0dcf5dd47e58a https://github.com/xwiki/xwiki-platform/commit/680b4331a808eabe524fa2e9ada0… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-realtime/xwiki-platform-realtime-webjar/src/main/webjar/toolbar.js Log Message: ----------- XWIKI-24648: Realtime user list in CKEditor and wiki editor flickers when other users move the caret (#6040) * Skip the coeditor list update when none of the displayed information changed. The user data published by each coeditor also holds their caret position, which is polled every 3 seconds, so the whole list was emptied and rebuilt every few seconds while somebody else was moving the caret across block elements, making the coeditors visibly disappear and re-appear, both on the toolbar and in an open coeditors dropdown. * Reconcile the coeditor list in place instead of emptying it and re-creating every entry, so that a genuine join or leave doesn't recreate the elements of the coeditors that didn't change. The avatar source is now always set, falling back on the default avatar from the template, since a reused element may hold the avatar of a coeditor that had one. Co-authored-by: Claude Opus 5 (1M context) <noreply(a)anthropic.com> (cherry picked from commit 13f10cae2762eb0fe417ea8e400e5e1c60b47a9a) 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-24685: When the move of an attachment fails, a redirection to an attachment that was never created is left behind
by XWiki Notifications 11 Aug '26

11 Aug '26
1 0
0 0
[[email protected]][Issue] Updates for XWIKI-24673: Race condition in XWiki cache store can lead to existing documents reported as not-existing
by XWiki Notifications 11 Aug '26

11 Aug '26
1 0
0 0
[xwiki/xwiki-platform] 5454ab: XWIKI-24648: Realtime user list in CKEditor and wi...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/backport/stable-17.10.x/pr-6040 Home: https://github.com/xwiki/xwiki-platform Commit: 5454abae5b4173870abc4fa8d628af3a64087748 https://github.com/xwiki/xwiki-platform/commit/5454abae5b4173870abc4fa8d628… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-realtime/xwiki-platform-realtime-webjar/src/main/webjar/toolbar.js Log Message: ----------- XWIKI-24648: Realtime user list in CKEditor and wiki editor flickers when other users move the caret (#6040) * Skip the coeditor list update when none of the displayed information changed. The user data published by each coeditor also holds their caret position, which is polled every 3 seconds, so the whole list was emptied and rebuilt every few seconds while somebody else was moving the caret across block elements, making the coeditors visibly disappear and re-appear, both on the toolbar and in an open coeditors dropdown. * Reconcile the coeditor list in place instead of emptying it and re-creating every entry, so that a genuine join or leave doesn't recreate the elements of the coeditors that didn't change. The avatar source is now always set, falling back on the default avatar from the template, since a reused element may hold the avatar of a coeditor that had one. Co-authored-by: Claude Opus 5 (1M context) <noreply(a)anthropic.com> (cherry picked from commit 13f10cae2762eb0fe417ea8e400e5e1c60b47a9a) 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] 13f10c: XWIKI-24648: Realtime user list in CKEditor and wi...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 13f10cae2762eb0fe417ea8e400e5e1c60b47a9a https://github.com/xwiki/xwiki-platform/commit/13f10cae2762eb0fe417ea8e400e… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-realtime/xwiki-platform-realtime-webjar/src/main/webjar/toolbar.js Log Message: ----------- XWIKI-24648: Realtime user list in CKEditor and wiki editor flickers when other users move the caret (#6040) * Skip the coeditor list update when none of the displayed information changed. The user data published by each coeditor also holds their caret position, which is polled every 3 seconds, so the whole list was emptied and rebuilt every few seconds while somebody else was moving the caret across block elements, making the coeditors visibly disappear and re-appear, both on the toolbar and in an open coeditors dropdown. * Reconcile the coeditor list in place instead of emptying it and re-creating every entry, so that a genuine join or leave doesn't recreate the elements of the coeditors that didn't change. The avatar source is now always set, falling back on the default avatar from the template, since a reused element may hold the avatar of a coeditor that had one. 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-platform] eebf4b: XWIKI-24673: Race condition in XWiki cache store c...
by XWiki Notifications 11 Aug '26

11 Aug '26
Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: eebf4bb60050f0e24fb98968df58a4b77f999682 https://github.com/xwiki/xwiki-platform/commit/eebf4bb60050f0e24fb98968df58… Author: Michael Hamann <michael.hamann(a)xwiki.com> Date: 2026-08-11 (Tue, 11 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/store/XWikiCacheStore.java M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/store/XWikiCacheStoreTest.java Log Message: ----------- XWIKI-24673: Race condition in XWiki cache store can lead to existing documents reported as not-existing (#6117) * Use CacheLoaderGroup to synchronize loads between the exists and the page cache. * Add a unit test verifying the race condition. 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 CONFLUENCE-540: Broken MathJax Code Block Migration
by XWiki Notifications 11 Aug '26

11 Aug '26
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • ...
  • 209
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.