mateuszmigas / painting-droid

AI-powered cross-platform painting app inspired by the legendary MS Paint.
https://www.paintingdroid.com
GNU General Public License v3.0
123 stars 4 forks source link

Bump the all-deps group in /apps/desktop with 5 updates #150

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the all-deps group in /apps/desktop with 5 updates:

Package From To
tauri 2.0.0-rc.0 2.0.0-rc.2
serde 1.0.206 1.0.208
serde_json 1.0.124 1.0.125
keyring 3.0.5 3.2.0
tauri-build 2.0.0-rc.2 2.0.0-rc.3

Updates tauri from 2.0.0-rc.0 to 2.0.0-rc.2

Release notes

Sourced from tauri's releases.

@​tauri-apps/cli v2.0.0-rc.2

[2.0.0-rc.2]

New Features

Enhancements

Bug Fixes

What's Changed

  • a3cd9779a (#10480 by @​lucasfernog) Removed the [android|ios] open command. It is recommended to use [android|ios] dev --open or [android|ios] build --open instead.

Dependencies

  • Upgraded to tauri-cli@2.0.0-rc.2

tauri-cli v2.0.0-rc.2

Updating git repository https://github.com/tauri-apps/schemars.git Updating crates.io index Locking 500 packages to latest compatible versions Adding addr2line v0.22.0 (latest: v0.24.1) Adding base64 v0.21.7 (latest: v0.22.1) Adding bit-set v0.5.3 (latest: v0.8.0) Adding bit-vec v0.6.3 (latest: v0.8.0) Adding bitflags v1.3.2 (latest: v2.6.0) Adding brotli v3.5.0 (latest: v6.0.0) Adding brotli-decompressor v2.5.1 (latest: v4.0.1) Adding cairo-rs v0.18.5 (latest: v0.20.0) Adding cairo-sys-rs v0.18.2 (latest: v0.20.0) Adding cargo_toml v0.17.2 (latest: v0.20.4) Adding cfb v0.7.3 (latest: v0.10.0) Adding cfg-expr v0.15.8 (latest: v0.16.0) Adding convert_case v0.4.0 (latest: v0.6.0) Adding cssparser v0.27.2 (latest: v0.34.0) Adding derive_more v0.99.18 (latest: v1.0.0) Adding encode_unicode v0.3.6 (latest: v1.0.0) Adding env_logger v0.8.4 (latest: v0.11.5) Adding foreign-types v0.3.2 (latest: v0.5.0) Adding foreign-types-shared v0.1.1 (latest: v0.3.1) Adding gdk-pixbuf v0.18.5 (latest: v0.20.0) Adding gdk-pixbuf-sys v0.18.0 (latest: v0.20.0)

... (truncated)

Commits
  • ab4e56f apply version updates (#10532)
  • f5dfc02 fix(core/cli): Add custom default implementation for ios config (#10533)
  • 5f56cb0 feat(cli): Upgrade gradle to 8.9 and gradle-android to 8.5.1 (#10507)
  • 00e5a6a fix(cli): allow actions: write for version-or-publish to fix cli publishing...
  • 10e30c5 fix: 'ndecorated' typo in window shadow description (#10527)
  • 393428e apply version updates (#10524)
  • 9ed8fe8 fix(cli): allow write on pull-requests for version-or-publish
  • 8dc81b6 feat(core): add option for custom Xcode project template (XcodeGen) (#10496)
  • 02c00ab feat(core): add config for the minimum iOS version (#10495)
  • 5be7607 chore(deps) Update Tauri Codegen to v1.7.0 (#10513)
  • Additional commits viewable in compare view


Updates serde from 1.0.206 to 1.0.208

Release notes

Sourced from serde's releases.

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 026e91a Release 1.0.208
  • bfbedac Merge pull request #2802 from jonhoo/flatten-unit-struct
  • 4036ff8 Support (de-)serializing flattened unit struct
  • 1b4da41 Release 1.0.207
  • f61d452 Touch up PR 2795
  • f986609 Merge pull request #2795 from Mingun/has-flatten-rework
  • 77a6a9d Take into account only not skipped flatten fields when choose serialization form
  • 547d843 Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...
  • 005cb84 Fail with an understandable message is number of fields for serialization is ...
  • fd5b5e9 Correctly calculate has_flatten attribute in all cases for deserialization
  • Additional commits viewable in compare view


Updates serde_json from 1.0.124 to 1.0.125

Release notes

Sourced from serde_json's releases.

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)
Commits
  • 6130f9b Release 1.0.125
  • cc7a160 Touch up PR 1175
  • 0f942e5 Merge pull request 1175 from iex-rs/faster-backslash-u
  • d8921cd Merge pull request #1172 from iex-rs/faster-hex
  • b4bc643 Merge pull request #1176 from dtolnay/miriname
  • 94a2aad Improve job names for miri jobs
  • 8073fc1 Merge pull request #1174 from iex-rs/miri-on-ci
  • 96ae604 Correct WTF-8 parsing
  • 236cc82 Simplify unicode escape handling
  • 2f28d10 Use the same UTF-8/WTF-8 impl for surrogates
  • Additional commits viewable in compare view


Updates keyring from 3.0.5 to 3.2.0

Release notes

Sourced from keyring's releases.

v3.2.0: Improve secret-service handling of targets

As reported in #201 and now fixed in #204, the secret-service credential store implementation could not disambiguate credentials that were created with different targets unless the collections containing those targets had already been unlocked.

The fix for this issue introduces a compatibility break: secret-service credentials created by the keyring v1 implementation, which were readable using platform-independent code in keyring v2, are no longer readable without using platform-specific code in v3. The necessary platform-specific code is very simple, and it has been added to the CLI (both for documentation purposes and to allow the CLI to access v1 credentials). The comments in issue #204 explain why the decision was made to add this secret-service-specific compatibility break; these include the fact that keyring v2 was released 18 months ago so only those users who haven't changed their password in a very long time would still have a v1 credential in their secret-service store.

The README has been updated to address this compatibility break and to provide recommendations for keyring clients who want to update their code to make sure users with old credentials are not impacted.

v3.1.0: enhance the CLI

As reported in #201, the CLI had a couple of problems:

  • It didn't allow empty user names, even on platforms where that's supported.
  • Its debugging output on Ambiguous errors provided no information about the underlying platform credentials.

The first issue was just a bug, now fixed.

The second issue stemmed from the fact that platform-independent code couldn't get at the details of the underlying platform-specific credentials. To fix this, the CredentialAPI had to be extended to provide access to the underlying platform credential's implementation of the std::fmt::Debug trait, and each of the keying credential stores extended to implement the new API.

To make this API extension backward-compatible, a default implementation was provided that did what the former code did: it revealed nothing. But that allows this release to be a SerVer-compatible dot release, rather than a major release.

Commits
  • 9cb38f1 Merge pull request #205 from brotskydotcom/issue-204
  • 13f069f Bump version to 3.2.
  • 5a5797c Fix compile for non-secret-service builds.
  • 114a815 Fix typo/bug in the secret service multi-map utilities.
  • 689ab47 Enhance the CLI to be able to find v1 secret-service credentials.
  • 6c643c2 Always include the target when searching for credentials.
  • 0b2ced7 Merge pull request #203 from brotskydotcom/issue-201
  • fc10542 Bump version to 3.1.0.
  • 8b0374d Make debug formatting useful on credentials.
  • 8f95997 Allow empty user in CLI.
  • Additional commits viewable in compare view


Updates tauri-build from 2.0.0-rc.2 to 2.0.0-rc.3

Release notes

Sourced from tauri-build's releases.

tauri-build v2.0.0-rc.3

Updating git repository https://github.com/tauri-apps/schemars.git Updating crates.io index Locking 511 packages to latest compatible versions Adding addr2line v0.22.0 (latest: v0.24.1) Adding base64 v0.21.7 (latest: v0.22.1) Adding bit-set v0.5.3 (latest: v0.8.0) Adding bit-vec v0.6.3 (latest: v0.8.0) Adding bitflags v1.3.2 (latest: v2.6.0) Adding cairo-rs v0.18.5 (latest: v0.20.1) Adding cairo-sys-rs v0.18.2 (latest: v0.20.0) Adding cargo_toml v0.17.2 (latest: v0.20.4) Adding cfb v0.7.3 (latest: v0.10.0) Adding cfg-expr v0.15.8 (latest: v0.16.0) Adding convert_case v0.4.0 (latest: v0.6.0) Adding core-foundation v0.9.4 (latest: v0.10.0) Adding core-graphics v0.23.2 (latest: v0.24.0) Adding core-graphics-types v0.1.3 (latest: v0.2.0) Adding cssparser v0.27.2 (latest: v0.34.0) Adding derive_more v0.99.18 (latest: v1.0.0) Adding encode_unicode v0.3.6 (latest: v1.0.0) Adding env_logger v0.8.4 (latest: v0.11.5) Adding fluent-uri v0.1.4 (latest: v0.2.0) Adding foreign-types v0.3.2 (latest: v0.5.0) Adding foreign-types-shared v0.1.1 (latest: v0.3.1) Adding gdk-pixbuf v0.18.5 (latest: v0.20.1) Adding gdk-pixbuf-sys v0.18.0 (latest: v0.20.1) Adding generator v0.7.5 (latest: v0.8.2) Adding generic-array v0.14.7 (latest: v1.1.0) Adding getrandom v0.1.16 (latest: v0.2.15) Adding gimli v0.29.0 (latest: v0.31.0) Adding gio v0.18.4 (latest: v0.20.1) Adding gio-sys v0.18.1 (latest: v0.20.1) Adding glib v0.18.5 (latest: v0.20.1) Adding glib-macros v0.18.5 (latest: v0.20.1) Adding glib-sys v0.18.1 (latest: v0.20.1) Adding gobject-sys v0.18.0 (latest: v0.20.1) Adding hashbrown v0.12.3 (latest: v0.14.5) Adding heck v0.4.1 (latest: v0.5.0) Adding hermit-abi v0.3.9 (latest: v0.4.0) Adding html5ever v0.26.0 (latest: v0.28.0) Adding idna v0.5.0 (latest: v1.0.2) Adding image v0.24.9 (latest: v0.25.2) Adding indexmap v1.9.3 (latest: v2.4.0) Adding infer v0.15.0 (latest: v0.16.0) Adding itoa v0.4.8 (latest: v1.0.11) Adding jni-sys v0.3.0 (latest: v0.4.0) Adding jsonptr v0.4.7 (latest: v0.6.0) Adding libloading v0.7.4 (latest: v0.8.5) Adding linux-raw-sys v0.4.14 (latest: v0.6.5)

... (truncated)

Commits
  • dcc62e6 fix(macos-sign): add kv feature to the log crate
  • 167a0fe fix(ci): missing id-token write permission for provenance
  • 1142289 fix(tauri-runtime-wry): docs.rs build
  • 85c2d63 fix(ci): set NPM_CONFIG_PROVENANCE to true
  • 07a5f50 fix(ci): run pnpm publish with --no-git-checks
  • 3066771 fix(ci): wrong prepublish scripts for @​tauri-apps/api
  • 3522fbd Apply Version Updates From Current Changes (#10561)
  • dd5b081 fix(ci): install pnpm on integration tests
  • 01f6aa3 build: migrate repo to use pnpm as the package manager (#10607)
  • 9e89193 fix(utils): fix resources map becomes directory (#10293)
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 2 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
painting-droid-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 19, 2024 7:51am