9e891933d8
* fix(utils): fix resources map becomes directory closes #10187 Fixes the behavior of mapped resources generating extra directory, for example: `"../resources/user.json": "resources/user.json"` generates this resource `resources/user.json/user.json` where it should generate `resources/user.json` This PR includes a refactor of the Iterator implementation which splits it into more scoped functions and relis on recursing instead of a loop which makes the code a lot more readable and easier to maintain. * clippy * cover more cases * clippy * fix glob into directory, not resolving target correctly * return error when resource origin path doesn't exist * fix resources example build * Update .changes/resources-map-becoming-dirs.md --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app> |
||
---|---|---|
.. | ||
add-notarize-error.md | ||
allow-commands-by-default.md | ||
android-dev-open-adb-fix.md | ||
android-gradle-8-9.md | ||
android-port-forward-fixes.md | ||
asset-resolver-dev-fallback.md | ||
brotli-6.md | ||
change-default-export-option-debugging.md | ||
change-pr-10435.md | ||
change-pr-10498.md | ||
change-pr-10619.md | ||
check-android-lib-symbols.md | ||
cli-add-no-fmt.md | ||
cli-android-template-androidtv.md | ||
cli-desktop-port-exposure.md | ||
cli-make-app-dir-consistent.md | ||
cli-mobile-checks.md | ||
cli-signtool-path.md | ||
config.json | ||
core-plugin-namespace.md | ||
dev-url-localhost-mobile.md | ||
feat-remove-target-sdk.md | ||
fix-adb.md | ||
fix-cli-dev-server-android.md | ||
fix-cli-panic-bun.md | ||
fix-colon-in-file-path.md | ||
fix-conf-parsing-error-filepath.md | ||
fix-config-override.md | ||
fix-ios-bun-support.md | ||
fix-ipc-fallback.md | ||
fix-manifest-migration.md | ||
fix-missing-codesign-error-macos.md | ||
fix-usage-without-compression.md | ||
fix-v1-frontend-migration.md | ||
get-window-async.md | ||
improve-cli-init.md | ||
infer-signing-identity.md | ||
ios-custom-project-template.md | ||
ios-default-minversion.md | ||
ios-frameworks.md | ||
isolation-main-frame-origin.md | ||
linux-option-gtk-app-id.md | ||
migrate-plugins.md | ||
migrate-prevent-duplications.md | ||
migrate-vue-svelte.md | ||
min-ios-version.md | ||
only-validate-ios-lib-debug.md | ||
permissions-add-target-specific.md | ||
plugin-builder-failable.md | ||
pre.json | ||
rc-migration.md | ||
README.md | ||
refactor-ipc-error.md | ||
refactor-ipc-response.md | ||
remove-open-command.md | ||
remove-unsecure-configs.md | ||
resources-map-becoming-dirs.md | ||
universal-bin-build-fails.md | ||
update-tao-wry.md | ||
utils-autogenerated-command-return-list.md | ||
utils-fix-plugin-reference.md | ||
v1-migrate-updater.md | ||
v1-migration-improvement.md |
Changes
via https://github.com/jbolda/covector
As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version number, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a .md
, but we recommend that it represents the overall change for organizational purposes.
When you select the version bump required, you do not need to consider dependencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process.
Use the following format:
---
'package-a': 'patch:enhance'
'package-b': 'patch:enhance'
---
Change summary goes here
Summaries do not have a specific character limit, but are text only. These summaries are used within the (future implementation of) changelogs. They will give context to the change and also point back to the original PR if more details and context are needed.
Changes will be designated as a major
, minor
or patch
as further described in semver.
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, but will be discussed prior to usage (as extra steps will be necessary in consideration of merging and publishing).
Additionally you could specify a tag for the change file to group it with other changes by prefixing the bump with :<tag>
, for example:
---
'package-a': 'patch:enhance'
---
Change summary goes here
which will group this change file with other changes that specify the bug
tag.
For list of available tags, see the changeTags
key in ./config.json