Conversation
* fix(bundler): make .desktop and .DirIcon relative symlinks * fmt * Update .changes/appimage-diricon.md Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> * Update .changes/appimage-diricon.md --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* chore(ci): migrate to use `--use-napi-cross` * Disable all other workflows * Remove docker related if and setup zig * Clean up matrix * Try mirror in binding tests from https://github.com/napi-rs/package-template/blob/main/.github/workflows/CI.yml * Disable publish and run on pull requests * Try setting up target cc and riscv gcc(++) * Revert target_cc, napi sets it already * Try installing gcc-aarch64-linux-gnu as we did for riscv64gc-unknown-linux-gnu * Focus on aarch64-unknown-linux-gnu * No `--use-napi-cross` * Revert "Focus on aarch64-unknown-linux-gnu" This reverts commit 45f6880. * Use `--cross-compile` for all linux targets * Setup zip for all linux targets * Bring back `--frozen-lockfile --ignore-scripts` * Remove unused bsd comments * Try enabling corepack * Move pnpm install to inside docker run * Try running in sh... Seems like we're running pnpm outside of docker * Reenable publish to just before npm publish * Restore old test binding code * Run musl test in docker * Just test the binding on musl and armv7 for now * Change shell to sh * `cd` into `packages/cli` * Still need `set -e` * Use long option for docker and cd through `--workdir` * Update napi to latest * Revert "Disable publish and run on pull requests" This reverts commit 8fd8d19. * Revert "Disable all other workflows" This reverts commit 0756947.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* chore(deps): update rust crate ctor to v1 * Use declarative macro * Add change file * Actually std isn't needed either --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
* feat: bump MSRV to 1.83 previous MSRV change was introduced by #11205 to follow the ecosystem and keep our dependencies up to date we must update our MSRV currently our agreed standard is to keep MSRV to "latest - 3", which currently is 1.83 * bump to 1.90 --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
* Update time * Clippy and address MSRV todo comments * Suppress RUSTSEC-2026-0194 * Ok, there're 2 quick-xml CVEs
* fix: mock runtime run on main thread dead locks * Try testing API example * Revert "Try testing API example" This reverts commit 1d04b9f. * Revert API example changes * Run unit tests in examples * Revert `not(test)` * Split out the example tests * Condition got reversed * Only android uses cross * Test api example * Install cross through `taiki-e/install-action@v2` * Install through cargo binstall instead * Revert "Install through cargo binstall instead" This reverts commit 2aec390. * Revert "Install cross through `taiki-e/install-action@v2`" This reverts commit b88035a. * Add change file
* chore(deps): update rust crate cargo_toml to v1 * Bump `embed-resource` and `tauri-winres` * Add change file --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
* deps: apple-codesign, x509-certificate * chore: cleanup ignored vulnerabilities * Add change file
* fix: wait for window creation no matter if on main thread * Add change file * Avoid unwrap * Same for `create_webview`
* Removed a few clones * A few more * Move back make_event_handler and take context * Add change file
Co-authored-by: Tony <legendmastertony@gmail.com> Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
…ocalhost on mobile (#16103) * fix(cli): keep devUrl query and fragment and treat IPv6 loopback as localhost on mobile * lint
… cmd /c (#16119) * fix(cli): run package managers directly on Windows instead of through cmd /c * Apply suggestion from @Legend-Master --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
* feat(core): add androidEmbedding config automatically configures the project to support Activity embedding and generate split rules from config * cr
The remove_window_listeners cleanup has a race with the destroyed event - we must let it run completely before doing the cleanup
#15681 follow up (ensures directories are always written in the same order)
The options server secret filter added in #16099 drops every variable whose name contains CREDENTIAL or SECRET, which also removed Cargo settings that only select how credentials are obtained: CARGO_REGISTRY_CREDENTIAL_PROVIDER, CARGO_REGISTRIES_<name>_CREDENTIAL_PROVIDER, CARGO_REGISTRY_GLOBAL_CREDENTIAL_PROVIDERS, CARGO_CREDENTIAL_ALIAS_* and CARGO_REGISTRIES_<name>_SECRET_KEY_SUBJECT. Builds started from Android Studio or Xcode then failed to authenticate against private registries. These variables name commands or public identifiers, not secrets, so they are now forwarded. Registry tokens and secret keys are still filtered out.
* fix(cli): harden updater key generation and signing * cr
* fix(cli): list all locked crate versions in tauri info * Update crates/tauri-cli/src/helpers/cargo_manifest.rs [skip ci] Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com> * error handling --------- Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
* fix(bundler): update linuxdeploy and linuxdeploy-plugin-gtk * actually use inline scripts again * fmt * fix(bundler): refresh cached plugin scripts, bundle on Fedora and Arch - Rewrite the embedded linuxdeploy-plugin-gtk/gstreamer scripts whenever the cached copy differs. A script left in the tools cache by an older CLI was used forever, so existing users kept `GDK_BACKEND=x11` and got no GIO module bundling. - Find gio-querymodules with search_tool: Fedora only ships gio-querymodules-64, which made the gtk plugin exit with 127. - Skip the gdk-pixbuf loaders when their directory does not exist (gdk-pixbuf 2.44 with glycin on Arch), instead of failing on `cp ''`. - Drop the old libgiognutls/GIO_EXTRA_MODULES block, now covered by GIO_MODULE_DIR. It found two copies of the module and exported a newline-separated value that included the build machine's AppDir path. * typo * chore: add change file [skip ci] --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
…#16064) * fix(bundler): recognize deb and rpm as self-contained updater targets The self-contained updater check excluded RPM and the "no updater-enabled targets" warning omitted deb/rpm, although both are signed as updater artifacts and supported by the updater plugin. * cr * cr
change file from 078a0e0 is not needed - bug fix for a change not released yet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )