From 027490e895d3dbb1de2505d84ec1b168eeb5b761 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 20:10:57 +0000 Subject: [PATCH 1/2] Update tightenco/ziggy requirement from ^1.0.4 to ^2.2.1 Updates the requirements on [tightenco/ziggy](https://github.com/tighten/ziggy) to permit the latest version. - [Release notes](https://github.com/tighten/ziggy/releases) - [Changelog](https://github.com/tighten/ziggy/blob/2.x/CHANGELOG.md) - [Commits](https://github.com/tighten/ziggy/compare/v1.0.4...v2.2.1) --- updated-dependencies: - dependency-name: tightenco/ziggy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5e9ebb81..f89fdc56 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ "laravel/socialite": "^5.0", "seatplus/eveapi": "^3.1", "seatplus/auth": "^3.0", - "tightenco/ziggy": "^1.0.4", + "tightenco/ziggy": "^2.2.1", "spatie/laravel-permission": "^5.4", "conedevelopment/i18n": "^1.1", "doctrine/dbal": "^3.0", From 1d6257f8a573acd1a3d74afb30509ead0e6dcc8b Mon Sep 17 00:00:00 2001 From: Herpaderp Aldent Date: Fri, 31 May 2024 23:08:06 +0200 Subject: [PATCH 2/2] fix(resources/js): Update ZiggyVue import path in app.js Updated the import path for ZiggyVue in app.js to resolve to the correct location. No changes to functionality, only a path correction. --- resources/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/app.js b/resources/js/app.js index 247e1b0e..0dcd9328 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -4,7 +4,7 @@ import '../css/app.css'; import { createApp, h } from 'vue'; import { createInertiaApp } from '@inertiajs/vue3' import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers'; -import { ZiggyVue } from '../../vendor/tightenco/ziggy/dist/vue.m'; +import { ZiggyVue } from '../../vendor/tightenco/ziggy/dist/index'; import SingleColumnLayout from "@/Shared/SidebarLayout/SingleColumnLayout.vue"; import I18n from '@/vendor/I18n'; @@ -37,4 +37,4 @@ createInertiaApp({ progress: { color: '#4B5563' } -}); \ No newline at end of file +});