Jacob Overgaard
726412a655
Add launch tasks for VS Code ( #17772 )
...
* feat: add two launch tasks to start a vite server and attach to an existing vite server
* build(deps-dev): install and use cross-env for vite commands
* build: add mocked launch task
* build: add prompt to check if msw should be on or off
* build: defaults
* build: rename launch task
* build: add compound to start backend and frontend at the same time
2024-12-16 10:46:24 +01:00
Nikolaj Geisle
838294efe1
V13: Clear username cache ( #17815 )
...
* Clear member username cache on delete
* Also refresh cache on update
2024-12-16 10:36:26 +02:00
Mads Rasmussen
70272f1a1a
Chore: Remove client tests that doesn't do anything but trouble ( #17813 )
...
* remove tests
* Delete upgrader-view.test.ts
2024-12-16 09:03:13 +01:00
Niels Lyngsø
419a8e1166
Feature: media server validation ( #17591 )
...
* implement validation for media and prepare for member
* remove import
* use repository response type
---------
Co-authored-by: Mads Rasmussen <madsr@hey.com >
2024-12-13 15:38:08 +01:00
Mads Rasmussen
e87d1fc2dc
Revert "Delete upgrader-view.test.ts"
...
This reverts commit ab58499d92 .
2024-12-13 13:48:40 +01:00
Mads Rasmussen
ab58499d92
Delete upgrader-view.test.ts
2024-12-13 13:47:27 +01:00
Niels Lyngsø
9b27184708
Merge pull request #17755 from umbraco/v15/feature/first-round-of-data-marks
...
Feature: Adding first round of data marks
2024-12-13 13:30:05 +01:00
Mads Rasmussen
a85f82fcf7
make msw quiet in tests ( #17809 )
2024-12-13 09:51:51 +01:00
Andreas Zerbst
e61bbe0dc3
Update src/Umbraco.Web.UI.Client/src/packages/core/section/section-sidebar/section-sidebar.element.ts
...
Co-authored-by: Nhu Dinh <150406148+nhudinh0309@users.noreply.github.com >
2024-12-13 08:38:26 +01:00
Bjarke Berg
0b9855c045
Merge pull request #17762 from umbraco/v15/task/media-picker-min-max-validation
...
V15 min/max validator for mediapicker
2024-12-13 08:28:27 +01:00
Sven Geusens
cd25c9a318
Merge branch 'release/15.1.1' into v15/dev
...
# Conflicts:
# src/Umbraco.Core/Extensions/PublishedContentExtensions.cs
# src/Umbraco.Web.UI.Client/package-lock.json
# src/Umbraco.Web.UI.Client/package.json
# version.json
2024-12-12 16:36:45 +01:00
Niels Lyngsø
4f3dd044f6
Merge pull request #17804 from umbraco/v15/hotfix/rte-blocks
...
V15: RTE blocks do not work in an empty RTE editor
2024-12-12 12:53:48 +01:00
Niels Lyngsø
2d428cc0fc
Hotfix: ensure we export all extension types ( #17787 )
...
* export all Extension Manifest Types
* clean up
* lint fix
2024-12-12 12:36:33 +01:00
Bjarke Berg
09200198a0
Merge pull request #17794 from umbraco/v15/bugfix/corrupt-examine-index-dashboard
...
Make sure Examine dashboard still functions when an index is corrupt
2024-12-12 11:54:34 +01:00
Jacob Overgaard
5c54e033cc
fix: duplicate logic from block list to accept blocks in an otherwise undefined value field
2024-12-12 11:45:27 +01:00
Sven Geusens
f833350218
Fix broken logger in tests
2024-12-12 11:06:43 +01:00
Kenn Jacobsen
c26b45db59
Don't overwrite ancestor configurations for public access ( #17797 )
...
* Don't overwrite ancestor configurations for public access (#17709 )
* Fix spacings
2024-12-12 10:46:25 +01:00
Sven Geusens
2dbdaa1056
Fix breaking change
2024-12-12 10:03:04 +01:00
Nikolaj Geisle
64982a1afd
Check if language has changed when updating domains ( #17790 )
2024-12-12 08:47:35 +01:00
Andreas Zerbst
fd08ed3032
Updated last data-marks
2024-12-12 08:29:35 +01:00
Bjarke Berg
4f6fda796f
Merge pull request #17779 from umbraco/v15/hotfix/fix-friendly-content-extension-performance
...
* Refactor .Children to use PublishStatusQuery
* Fix descendants
* Fix ancestors
* Fix siblings
* Handle empty string in published status service
* Fix unit test
* Fixes issue found in tests
---------
Co-authored-by: Bjarke Berg <mail@bergmania.dk >
2024-12-11 19:18:49 +01:00
Bjarke Berg
c22dc2f12e
Fixes issue found in tests
2024-12-11 18:40:46 +01:00
Nikolaj Geisle
d6f493737a
Fix unit test
2024-12-11 17:48:11 +01:00
Niels Lyngsø
968cb1a981
Hotfix: Browser navigation between Documents ( #17783 )
...
use `replaceState` over `pushState`
2024-12-11 16:32:38 +01:00
Niels Lyngsø
5f291bab22
no need to redirect when removing tab. router handles this fine
2024-12-11 16:16:14 +01:00
Niels Lyngsø
eec7b01f1c
use push state
2024-12-11 16:14:57 +01:00
Niels Lyngsø
66c13e5dae
Merge pull request #17781 from umbraco/v15/hotfix/tinymce-links
...
V15: TinyMce triggers navigation when clicking links
2024-12-11 15:59:43 +01:00
Bjarke Berg
721eee27c7
Handle empty string in published status service
2024-12-11 15:50:00 +01:00
Mads Rasmussen
89061f1486
V15: Chore: Fix msw in client test runner ( #17777 )
...
* remove unused
* Update index.ts
* add local files
* use fetch instead of import
2024-12-11 15:46:27 +01:00
Jacob Overgaard
ccd365104a
fix: trigger only on a-tags inside our own block elements
...
Tinymce inserts links using the a-tag, which is triggering our navigation because we cannot control tinymce's rendering. We can however control which links we trigger on the for the 'click' event by using `composedPath()` and ensuring that we are inside one of the block entry elements.
2024-12-11 15:42:28 +01:00
Jacob Overgaard
5bf07bda9b
chore: formatting
2024-12-11 15:41:22 +01:00
Andreas Zerbst
87e8a305b6
Switched to actions and colon
2024-12-11 15:16:56 +01:00
Zeegaan
0928379aeb
Fix siblings
2024-12-11 15:12:09 +01:00
Zeegaan
c6a420579e
Fix ancestors
2024-12-11 14:56:44 +01:00
Niels Lyngsø
5322e382f3
Merge pull request #17774 from umbraco/15.1/hotfix/block-editors-discard-changes-on-startup
...
* prevent the block list editor from setting an empty value on startup
* prevent block grid from setting and initial empty block object value
* fix import
---------
Co-authored-by: Niels Lyngsø <niels.lyngso@gmail.com >
Co-authored-by: Niels Lyngsø <nsl@umbraco.dk >
2024-12-11 14:53:54 +01:00
Niels Lyngsø
5cffe11651
Merge branch 'release/15.1' into 15.1/hotfix/block-editors-discard-changes-on-startup
2024-12-11 14:53:22 +01:00
Niels Lyngsø
ffd1d471d7
fix import
2024-12-11 14:51:00 +01:00
Sven Geusens
9b562018fb
Bump versions
2024-12-11 14:09:38 +01:00
Zeegaan
b916490ef3
Fix descendants
2024-12-11 14:04:55 +01:00
Sven Geusens
2f8866a65a
Bump client versions
2024-12-11 13:59:12 +01:00
Sven Geusens
6458a552e1
Merge branch 'release/15.1' into v15/dev
...
# Conflicts:
# build/azure-pipelines.yml
2024-12-11 13:56:24 +01:00
Mads Rasmussen
8ccc394f88
prevent block grid from setting and initial empty block object value
2024-12-11 12:14:33 +01:00
Mads Rasmussen
d5144540f7
prevent the block list editor from setting an empty value on startup
2024-12-11 12:09:17 +01:00
Zeegaan
869838db0c
Refactor .Children to use PublishStatusQuery
2024-12-11 11:16:11 +01:00
Sven Geusens
bb2fe14248
Added a link with more information regarding corrupt indexes
2024-12-11 10:28:12 +01:00
Nhu Dinh
de92f1caac
V15 QA Fixing the failing tests in the pipeline ( #17718 )
...
* Updated tests for content with media picker
* Fixed tests for content with multi url picker
* Skip tests for update action permission as it is removed now
* Fixed tests for list view media
* Fixed notification
* Updated method name due to api helper changes
* Fixed tests for welcome
* Fixed test for deleting a tab in a document type
* Updated expectation test result due to UI changes
* Updated create stylesheet method
* Fixed tests due to the action for selecting media item changes
* Bumped version
* Fixed expected result
* Fixed due to test helper changes
* Added more waits
2024-12-11 10:44:28 +07:00
Jacob Overgaard
2cfd52a941
build: overwrite existing files to quiet the extractor
2024-12-10 15:31:17 +01:00
Jacob Overgaard
888c96e777
build: change the fetchDepth to version the backoffice package
2024-12-10 15:14:58 +01:00
Sven Geusens
7aa0ff0985
rebuilder bugfix
2024-12-10 13:43:54 +01:00
Sven Geusens
73f7f4c0ba
Handle examine corrupt index status
2024-12-10 13:42:39 +01:00