Branch: refs/heads/master
Home: https://github.com/xwiki/xwiki-platform
Commit: a39e5c4e48a863422213f0c72586466403d8a62b
https://github.com/xwiki/xwiki-platform/commit/a39e5c4e48a863422213f0c72586…
Author: Marius Dumitru Florea <marius(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M xwiki-platform-core/xwiki-platform-appwithinminutes/xwiki-platform-appwithinminutes-test/xwiki-platform-appwithinminutes-test-docker/src/test/it/org/xwiki/appwithinminutes/test/ui/UserClassFieldIT.java
M xwiki-platform-core/xwiki-platform-flamingo/xwiki-platform-flamingo-skin/xwiki-platform-flamingo-skin-resources/src/main/resources/flamingo/macros.vm
M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java
M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/objects/classes/PropertyClassTest.java
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/resources/templates/macros.vm
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggestPropertyValues.js
Log Message:
-----------
XWIKI-23115: Page displayer in edit mode shows the document's full name instead of its title (#4058) (#4096)
* The provided fix is not enough for AWM's class editor, which needs to preview class fields before they are saved, and for this it uses a class field template that is cloned and modified by setting its name and object (xclass). The field.className we were using before is updated when the field name/xclass changes, but it's not the case for field.reference . We need to invalidate the reference cache in PropertyClass when the values used in createReference() are modified.
* Improve the functional test to be able to run it multiple times on the same XWiki instance.
* Even if the REST API accepts passing an absolute class reference (/rest/wikis/test/classes/test:Path.To.Class) I think it's cleaner to try to pass a local reference, to avoid the redundancy with the wiki path element.
(cherry picked from commit 7c29f342115e94777de8cc9c0435a5f49bf35889)
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
Branch: refs/heads/stable-16.10.x
Home: https://github.com/xwiki/xwiki-platform
Commit: b01d0adb8a2a5846fa78540821fae02cf42ce4b1
https://github.com/xwiki/xwiki-platform/commit/b01d0adb8a2a5846fa78540821fa…
Author: Marius Dumitru Florea <marius(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M xwiki-platform-core/xwiki-platform-appwithinminutes/xwiki-platform-appwithinminutes-test/xwiki-platform-appwithinminutes-test-docker/src/test/it/org/xwiki/appwithinminutes/test/ui/UserClassFieldIT.java
M xwiki-platform-core/xwiki-platform-flamingo/xwiki-platform-flamingo-skin/xwiki-platform-flamingo-skin-resources/src/main/resources/flamingo/macros.vm
M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java
M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/objects/classes/PropertyClassTest.java
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/resources/templates/macros.vm
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggestPropertyValues.js
Log Message:
-----------
XWIKI-23115: Page displayer in edit mode shows the document's full name instead of its title (#4058) (#4096)
* The provided fix is not enough for AWM's class editor, which needs to preview class fields before they are saved, and for this it uses a class field template that is cloned and modified by setting its name and object (xclass). The field.className we were using before is updated when the field name/xclass changes, but it's not the case for field.reference . We need to invalidate the reference cache in PropertyClass when the values used in createReference() are modified.
* Improve the functional test to be able to run it multiple times on the same XWiki instance.
* Even if the REST API accepts passing an absolute class reference (/rest/wikis/test/classes/test:Path.To.Class) I think it's cleaner to try to pass a local reference, to avoid the redundancy with the wiki path element.
(cherry picked from commit 7c29f342115e94777de8cc9c0435a5f49bf35889)
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
Branch: refs/heads/stable-16.4.x
Home: https://github.com/xwiki/xwiki-platform
Commit: 7c29f342115e94777de8cc9c0435a5f49bf35889
https://github.com/xwiki/xwiki-platform/commit/7c29f342115e94777de8cc9c0435…
Author: Marius Dumitru Florea <marius(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M xwiki-platform-core/xwiki-platform-appwithinminutes/xwiki-platform-appwithinminutes-test/xwiki-platform-appwithinminutes-test-docker/src/test/it/org/xwiki/appwithinminutes/test/ui/UserClassFieldIT.java
M xwiki-platform-core/xwiki-platform-flamingo/xwiki-platform-flamingo-skin/xwiki-platform-flamingo-skin-resources/src/main/resources/flamingo/macros.vm
M xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/objects/classes/PropertyClass.java
M xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/objects/classes/PropertyClassTest.java
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/resources/templates/macros.vm
M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggestPropertyValues.js
Log Message:
-----------
XWIKI-23115: Page displayer in edit mode shows the document's full name instead of its title (#4058) (#4096)
* The provided fix is not enough for AWM's class editor, which needs to preview class fields before they are saved, and for this it uses a class field template that is cloned and modified by setting its name and object (xclass). The field.className we were using before is updated when the field name/xclass changes, but it's not the case for field.reference . We need to invalidate the reference cache in PropertyClass when the values used in createReference() are modified.
* Improve the functional test to be able to run it multiple times on the same XWiki instance.
* Even if the REST API accepts passing an absolute class reference (/rest/wikis/test/classes/test:Path.To.Class) I think it's cleaner to try to pass a local reference, to avoid the redundancy with the wiki path element.
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications
Branch: refs/heads/main
Home: https://github.com/xwiki-contrib/application-notification-word
Commit: 9b01d66b867ead4926d62ca6dd7933799d982140
https://github.com/xwiki-contrib/application-notification-word/commit/9b01d…
Author: Simon Urli <simon.urli(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M application-notification-word-default/src/main/java/org/xwiki/contrib/wordnotification/internal/notification/AbstractMentionedWordsRecordableEvent.java
M application-notification-word-default/src/main/java/org/xwiki/contrib/wordnotification/internal/notification/MentionedWordsEventListener.java
M application-notification-word-default/src/main/java/org/xwiki/contrib/wordnotification/internal/notification/MentionedWordsRecordableEvent.java
M application-notification-word-default/src/main/java/org/xwiki/contrib/wordnotification/internal/notification/MentionedWordsRecordableEventConverter.java
M application-notification-word-default/src/main/java/org/xwiki/contrib/wordnotification/internal/notification/RemovedWordsRecordableEvent.java
M application-notification-word-default/src/test/java/org/xwiki/contrib/wordnotification/internal/notification/MentionedWordsEventListenerTest.java
Log Message:
-----------
WORDNOTIF-13: Notifications about a word put in comments is displayed with superadmin as author
* Cleanly set the author of the event, instead of setting it in the
context
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/application-notification-word/settings/not…
Branch: refs/heads/main
Home: https://github.com/xwiki-contrib/cristal
Commit: 1df2f8b7ba5956bde2c4b2db8920a895aec54063
https://github.com/xwiki-contrib/cristal/commit/1df2f8b7ba5956bde2c4b2db892…
Author: ClementEXWiki <clement.eraud(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M core/uniast/src/ast.ts
M core/uniast/src/markdown/md-to-uniast.ts
M core/uniast/src/markdown/uniast-to-md.ts
R editors/blocknote-headless/src/blocknote/blocks/BlockQuote.tsx
M editors/blocknote-headless/src/blocknote/bn-to-uniast.ts
M editors/blocknote-headless/src/blocknote/index.ts
M editors/blocknote-headless/src/blocknote/uniast-to-bn.ts
M editors/blocknote-headless/src/vue/c-blocknote-view.vue
Log Message:
-----------
CRISTAL-519: Upgrade to blocknote to 0.29.1
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/cristal/settings/notifications
Branch: refs/heads/feature-classloaderutils
Home: https://github.com/xwiki/xwiki-commons
Commit: 69f84cf2e59b5266b4ef1bc135ea5b5746e2febf
https://github.com/xwiki/xwiki-commons/commit/69f84cf2e59b5266b4ef1bc135ea5…
Author: Thomas Mortagne <thomas.mortagne(a)gmail.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M xwiki-commons-core/xwiki-commons-classloader/xwiki-commons-classloader-api/pom.xml
A xwiki-commons-core/xwiki-commons-classloader/xwiki-commons-classloader-api/src/main/java/org/xwiki/classloader/internal/ClassLoaderUtils.java
A xwiki-commons-core/xwiki-commons-classloader/xwiki-commons-classloader-api/src/test/java/org/xwiki/classloader/internal/ClassLoaderUtilsTest.java
Log Message:
-----------
XCOMMONS-3327: Provide an internal helper to safely access ClassLoader resources
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-commons/settings/notifications
Branch: refs/heads/main
Home: https://github.com/xwiki-contrib/cristal
Commit: 362fea60c33fa68cd77101dfe7ee0266c952cd4c
https://github.com/xwiki-contrib/cristal/commit/362fea60c33fa68cd77101dfe7e…
Author: Manuel Leduc <manuel.leduc(a)xwiki.com>
Date: 2025-04-30 (Wed, 30 Apr 2025)
Changed paths:
M editors/blocknote-headless/package.json
M editors/blocknote/package.json
M editors/tiptap/package.json
M pnpm-lock.yaml
M realtime/package.json
Log Message:
-----------
Revert "CRISTAL-528: Upgrade to hocuspocus 3.1.0"
This reverts commit b90cf91b because blocknote depends on hocuspocus 2.x
To unsubscribe from these emails, change your notification settings at https://github.com/xwiki-contrib/cristal/settings/notifications