Skip to content

chore(deps): update all non-major dependencies#941

Merged
danielroe merged 1 commit into
mainfrom
renovate/all-minor-patch
Jul 20, 2026
Merged

chore(deps): update all non-major dependencies#941
danielroe merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Apr 6, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@capacitor/camera 8.0.28.2.1 age confidence devDependencies minor
@capacitor/cli (source) 8.3.08.4.2 age confidence dependencies minor
@ionic/core (source) 8.8.28.8.14 age confidence devDependencies patch
@ionic/vue 8.8.28.8.14 age confidence dependencies patch
@ionic/vue-router 8.8.28.8.14 age confidence dependencies patch
@nuxt/content (source) 3.12.03.15.0 age confidence dependencies minor
@nuxt/eslint-config (source) 1.15.21.16.0 age confidence devDependencies minor
@nuxt/ui (source) 4.6.04.10.0 age confidence dependencies minor
@types/node (source) 24.12.024.13.3 age confidence devDependencies minor
@unhead/vue (source) 2.1.152.1.16 age confidence dependencies patch
@vue/test-utils 2.4.62.4.11 age confidence devDependencies patch
MatteoGabriele/agentscan-action v2.0.1v2.2.0 age confidence action minor
better-sqlite3 12.8.012.11.1 age confidence dependencies minor
bumpp 11.0.111.1.0 age confidence devDependencies minor
danielroe/uppt v0.5.4v0.5.5 age confidence action patch
docus 5.8.15.12.3 age confidence dependencies minor
expect-type 1.3.01.4.0 age confidence devDependencies minor
lint-staged 17.0.417.1.0 age confidence devDependencies minor
playwright-core (source) 1.58.21.61.1 age confidence devDependencies minor
pnpm (source) 11.1.211.15.1 age confidence packageManager minor
tailwindcss (source) 4.2.24.3.3 age confidence dependencies minor
typescript (source) 6.0.26.0.3 age confidence devDependencies patch
unhead (source) 2.1.132.1.16 age confidence devDependencies patch
unimport 6.0.26.3.0 age confidence dependencies minor
vue-tsc (source) 3.2.63.3.7 age confidence devDependencies minor

Release Notes

ionic-team/capacitor-camera (@​capacitor/camera)

v8.2.1

Compare Source

Bug Fixes
  • android: explicitly grant URI permissions for legacy camera capture (#​60) (df4b6d7)

v8.2.0

Compare Source

Bug Fixes
  • bump ioncamera-android to 1.0.1 to resolve duplicate webPath on Android gallery multi-select (#​49) (1bb0cd4)
  • bump IONCameraLib to 1.0.3 to resolve iOS 15 SwiftUI core crash (#​46) (8fb9688)
  • bump IONCameraLib to 1.0.4 to apply presentationStyle in chooseFromGallery (#​50) (8c50403)
Features
  • add CameraErrorCode enum for type-safe error handling (#​45) (11abcbe)

8.1.0 (2026-04-13)

This minor plugin version introduces significant API changes and deprecations. While backward compatibility is maintained, migration is strongly recommended. Please read the release notes in full, and refer to https://capacitorjs.com/docs/apis/camera for full documentation, including migration guides.

Deprecations
  • getPhoto method is deprecated. Use takePhoto for a camera photo, or chooseFromGallery to select from the gallery. For creating a prompt for the user to select which source, use @capacitor/action-sheet or any UI component of your choosing.
  • pickImages method is deprecated. Use chooseFromGallery instead. Refer to the Camera API documentation for more information on migrating.
  • Photo, GalleryImageOptions, and CameraResultType are deprecated, only use them if you are still using the deprecated getPhoto and/or pickImages.
  • These deprecated items will be removed in a future major version of the Camera Plugin, please consider migrating to the new ones.
Features
  • New takePhoto method added. It allows capturing a photo with the device's camera.
  • New recordVideo method added. It allows recording a video with the device's camera. Currently not available in Web. Addresses capacitor-plugins#229.
  • New playVideo method added. It opens a native player to play the provided video. Currently not available in Web.
  • New chooseFromGallery method added. Use it to select photos and/or videos from the device.
  • New MediaResult and MediaMetadata interfaces, which are returned by takePhoto, recordVideo and chooseFromGallery (metadata only if input parameter includeMetadata is true). Besides providing most of the existing functionality from deprecated getPhoto / pickImages, it can include additional metadata like creation date, video duration, among others.
  • New editPhoto method added. Opens an in-app screen to edit a provided base64 encoded image. Supported editing features include image cropping and rotation. Currently not available in Web.
  • New editURIPhoto method added. Opens an in-app screen to edit a provided image from a URI. You may use the URIs returned by takePhoto and chooseFromGallery as input to editURIPhoto. Supported editing features include image cropping and rotation. Currently not available in Web.
  • New Error structure when promise is rejected in new methods: code in OS-PLUG-CAMR-XXXX format + message. Refer to plugin documentation for available errors. Existing methods from version 8.0.2 and older retain the same error structure as before for backwards-compatibility.
  • New methods implementation in new native libraries: https://github.com/ionic-team/ion-android-camera and https://github.com/ionic-team/ion-ios-camera.
Bug Fixes
  • android: Restrict pickImages limit to maximum number supported by the device (clone of capacitor-plugins#2309)

8.0.2 (2026-03-06)

Bug Fixes
  • camera: Allow cancelation of sheet in Web, requires pwa-elements 3.4.0 or higher (#​2284) (06cf611)

8.0.1 (2026-02-12)

Bug Fixes

v8.1.0

Compare Source

This minor plugin version introduces significant API changes and deprecations. While backward compatibility is maintained, migration is strongly recommended. Please read the release notes in full, and refer to https://capacitorjs.com/docs/apis/camera for full documentation, including migration guides.

Deprecations
  • getPhoto method is deprecated. Use takePhoto for a camera photo, or chooseFromGallery to select from the gallery. For creating a prompt for the user to select which source, use @capacitor/action-sheet or any UI component of your choosing.
  • pickImages method is deprecated. Use chooseFromGallery instead. Refer to the Camera API documentation for more information on migrating.
  • Photo, GalleryImageOptions, and CameraResultType are deprecated, only use them if you are still using the deprecated getPhoto and/or pickImages.
  • These deprecated items will be removed in a future major version of the Camera Plugin, please consider migrating to the new ones.
Features
  • New takePhoto method added. It allows capturing a photo with the device's camera.
  • New recordVideo method added. It allows recording a video with the device's camera. Currently not available in Web. Addresses capacitor-plugins#229.
  • New playVideo method added. It opens a native player to play the provided video. Currently not available in Web.
  • New chooseFromGallery method added. Use it to select photos and/or videos from the device.
  • New MediaResult and MediaMetadata interfaces, which are returned by takePhoto, recordVideo and chooseFromGallery (metadata only if input parameter includeMetadata is true). Besides providing most of the existing functionality from deprecated getPhoto / pickImages, it can include additional metadata like creation date, video duration, among others.
  • New editPhoto method added. Opens an in-app screen to edit a provided base64 encoded image. Supported editing features include image cropping and rotation. Currently not available in Web.
  • New editURIPhoto method added. Opens an in-app screen to edit a provided image from a URI. You may use the URIs returned by takePhoto and chooseFromGallery as input to editURIPhoto. Supported editing features include image cropping and rotation. Currently not available in Web.
  • New Error structure when promise is rejected in new methods: code in OS-PLUG-CAMR-XXXX format + message. Refer to plugin documentation for available errors. Existing methods from version 8.0.2 and older retain the same error structure as before for backwards-compatibility.
  • New methods implementation in new native libraries: https://github.com/ionic-team/ion-android-camera and https://github.com/ionic-team/ion-ios-camera.
Bug Fixes
  • android: Restrict pickImages limit to maximum number supported by the device (clone of capacitor-plugins#2309)
ionic-team/capacitor (@​capacitor/cli)

v8.4.2

Compare Source

Bug Fixes
  • android: explicitly grant URI permissions for image capture intent (#​8526) (6f2d328)

v8.4.1

Compare Source

Bug Fixes

v8.4.0

Compare Source

Bug Fixes
Features

8.3.4 (2026-05-12)

Note: Version bump only for package capacitor

8.3.3 (2026-05-08)

Bug Fixes

8.3.2 (2026-05-07)

Bug Fixes
  • cli: add cSettings support for compiler flags in generated Package.swift (#​8448) (0bd0676)
  • cli: add system framework and weak framework support in SPM Package.swift (#​8447) (3232f0f)
  • cli: correct Capacitor plugin SPM compat check (#​8440) (e5ccc45)
  • cli: generate binaryTarget entries for custom xcframeworks in Package.swift (#​8445) (1f7e33f)
  • cli: generate resource entries in Package.swift (#​8455) (790bd27)
  • cli: handle Cordova plugins without iOS source files (#​8443) (0da130e)
  • cli: link plugin dependencies in Package.swift (#​8457) (b3c769e)
  • ios: support Cordova plugins with Package.swift (#​8438) (139943b)
  • SystemBars: avoid extra view padding on API <= 34 (#​8439) (5b135a7)

8.3.1 (2026-04-16)

Bug Fixes

v8.3.4

Compare Source

Note: Version bump only for package capacitor

v8.3.3

Compare Source

Bug Fixes

v8.3.2

Compare Source

Bug Fixes
  • cli: add cSettings support for compiler flags in generated Package.swift (#​8448) (0bd0676)
  • cli: add system framework and weak framework support in SPM Package.swift (#​8447) (3232f0f)
  • cli: correct Capacitor plugin SPM compat check (#​8440) (e5ccc45)
  • cli: generate binaryTarget entries for custom xcframeworks in Package.swift (#​8445) (1f7e33f)
  • cli: generate resource entries in Package.swift (#​8455) (790bd27)
  • cli: handle Cordova plugins without iOS source files (#​8443) (0da130e)
  • cli: link plugin dependencies in Package.swift (#​8457) (b3c769e)
  • ios: support Cordova plugins with Package.swift (#​8438) (139943b)
  • SystemBars: avoid extra view padding on API <= 34 (#​8439) (5b135a7)

v8.3.1

Compare Source

Bug Fixes
ionic-team/ionic-framework (@​ionic/core)

v8.8.14

Compare Source

Bug Fixes

v8.8.13

Compare Source

Bug Fixes

v8.8.12

Compare Source

Bug Fixes

v8.8.11

Compare Source

Bug Fixes

v8.8.10

Compare Source

Bug Fixes
  • modal: prevent sheet gesture crash with late-bound breakpoints (#​31202) (c61265a)

v8.8.9

Compare Source

Bug Fixes

v8.8.8

Compare Source

Bug Fixes

v8.8.7

Compare Source

Bug Fixes

v8.8.6

Compare Source

Bug Fixes
  • action-sheet: restore action-sheet-selected class on non-radio buttons (#​31109) (c18502f), closes #​31090
  • datetime: prevent hidden-state observer from tearing down ready class on initial entry (#​31108) (30b479a)
  • segment: segment drag would set disabled segment button checked (#​31112) (44be424)

v8.8.5

Compare Source

Bug Fixes

v8.8.4

Compare Source

Bug Fixes

v8.8.3

Compare Source

Bug Fixes
nuxt/content (@​nuxt/content)

v3.15.0

Compare Source

Features
Bug Fixes
  • content: support validator detection with pnpm enableGlobalVirtualStore (#​3791) (6b2720b)
  • hmr: update all matching collections when a file changes (#​3802) (06f8edb)
  • search: softer heading-level boost curve and tuned defaults (#​3801) (00d25a5)
  • vercel: use tmp directory to clone contents (#​3810) (793d59a)

v3.14.0

Compare Source

Features
Bug Fixes
  • docs: update Nuxt version from 3 to 4 in template features (#​3780) (1f24029)
  • path-meta: slugify function did not pass to transformer (#​3794) (778d7db)
  • preview: skip collections without source in preview template (#​3771) (8aabefd)

v3.13.0

Compare Source

Bug Fixes
  • get mdc configs by calling mdc:configSources hook (#​3736) (57f5552)
  • preview: move formatDate/formatDateTime into runtime subtree (#​3749) (4a76b2a)
nuxt/eslint (@​nuxt/eslint-config)

v1.16.0

Compare Source

   🚀 Features
    View changes on GitHub
nuxt/ui (@​nuxt/ui)

v4.10.0

Compare Source

Features
Bug Fixes
  • AuthForm: track password visibility per field (#​6638) (0faeb92)
  • BlogPost/ChangelogVersion: format date in UTC to prevent hydration mismatch (#​6722) (fe5bb23)
  • Button: allow inline event handlers with non-void return types (#​6668) (269080a)
  • Carousel: prevent reset when plugin props use inline objects (f41d11e), closes #​6221
  • ChatMessages: re-evaluate streaming indicator on each render (#​6673) (5c986dd)
  • components: forward $attrs to root element when to prop is absent (#​6628) (d3b5f1d)
  • components: forward data-slot to component root (#​6643) (c9c5232)
  • components: respect prefers-reduced-motion in animations (#​6723) (f951529)
  • ContentNavigation: key items by identity to prevent leading icon flash (#​6640) (09fb52b)
  • defineShortcuts: add missing arrowdown to shiftable keys (#​6702) (2128414)
  • defineShortcuts: defer standalone shortcuts that prefix a chain (#​6703) (76ee176)
  • Editor: prevent suggestion menu blinking on keystroke (#​6712) (7e6d8b0)
  • FileUpload: add aria-disabled attribute when disabled (#​6653) (c3b2996)
  • inertia: make useRoute().fullPath reactive across navigations (#​6696) (c256997)
  • Link: apply rel prop to internal links (#​6677) (276302e)
  • Link: fall back to original path when localePath fails (#​6637) (906e8fd)
  • LocaleSelect: add missing keys in emoji mapping (#​6629) (fab73ab)
  • module: avoid unhead v2-only hookOnce in colors plugin (#​6658) (e4ca579)
  • SelectMenu/InputMenu: only re-highlight first item with create-item (#​6689) (a71dece)
  • Separator: forward fall-through attributes to root (#​6641) (88baabc)
  • theme: use logical properties for RTL (#​6724) (3179012)
  • types: type prose components in app config (#​6711) (d56e39a)
  • useComponentProps: let app config defaultVariants override withDefaults (#​6686) (f5e58fb)
  • useFileUpload: keep dropzone type filter reactive to accept (#​6699) (000aba4)
  • useResizable: recover from corrupted persisted storage (#​6704) (4c60745)
  • useResizable: share resize logic between mouse and touch (#​6705) (730a54c)

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on Monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@netlify

netlify Bot commented Apr 6, 2026

Copy link
Copy Markdown

Deploy Preview for friendly-lamington-fb5690 failed. Why did it fail? →

Name Link
🔨 Latest commit 2eb2c46
🔍 Latest deploy log https://app.netlify.com/projects/friendly-lamington-fb5690/deploys/6a5dd658d6cbeb000826177c

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 22 times, most recently from 79f1a8d to 36ba579 Compare April 13, 2026 15:53
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c18b42a to 8881197 Compare April 15, 2026 20:12
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 19 times, most recently from 66f3412 to 8bda586 Compare April 27, 2026 12:45
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 3510cb5 to 19c095c Compare April 30, 2026 20:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant