Closed amrbashir closed 2 days ago
There are 8 changes which include tauri-bundler with minor, tauri-cli with minor, @tauri-apps/cli with minor, tauri with minor, tauri-runtime with minor, tauri-runtime-wry with minor, @tauri-apps/api with patch, tauri-utils with patch
Add another change file through the GitHub UI by following this link.
Read about change files or the docs at github.com/jbolda/covector
closes #11614
Remove UNC manually, instead of
dunce::simplified
becausepath
could have*
in it and that's not allowed on Windows anddunce::simplified
will check that and returnpath
as is without simplification resulting in a missing pattern in scopefor the scope pattern
\\?\C:\path\to\dir\**
, we expect the scope to have:\\?\C:\path\to\dir\**
C:\path\to\dir\**
but if we use
dunce::simplified
, it will see**
as invalid path component on Windows and will not simplify the path resulting in a scope that only has\\?\C:\path\to\dir\**