21 Commits

Author SHA1 Message Date
Sebastian 62093f8029 chore(deps): update dependency vue to v3.5.40 2026-07-24 03:10:32 +00:00
Sebastian 485deb5047 Merge pull request 'chore: implement php test suites' (#18) from chore/php83-test-suites into main
Reviewed-on: #18
2026-07-24 02:31:39 +00:00
Sebastian d3e609769e chore: implement php test suites
Signed-off-by: Sebastian <krupinski01@gmail.com>
2026-07-23 22:20:36 -04:00
Sebastian 1b2fdfd7cb Merge pull request 'chore(deps): update dependency typescript to v7' (#13) from renovate/typescript-7.x into main
Reviewed-on: #13
2026-07-23 20:00:00 +00:00
Sebastian 133865b779 Merge pull request 'fix(deps): update dependency vuetify to v4' (#16) from renovate/vuetify-4.x into main
Reviewed-on: #16
2026-07-23 19:59:51 +00:00
Sebastian e57431fc2f Merge pull request 'chore(deps): update dependency @vitejs/plugin-vue to v6.0.8' (#17) from renovate/vitejs-plugin-vue-6.x-lockfile into main
Reviewed-on: #17
2026-07-23 19:59:42 +00:00
Sebastian c496477848 Merge pull request 'chore(deps): update dependency vite to v8.1.5' (#12) from renovate/vite-8.x-lockfile into main
Reviewed-on: #12
2026-07-23 19:59:30 +00:00
Sebastian c0b870c3c8 chore(deps): update dependency vite to v8.1.5 2026-07-23 03:08:21 +00:00
Sebastian cb51d866d9 chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 2026-07-15 03:04:11 +00:00
Sebastian be62da84c7 fix(deps): update dependency vuetify to v4 2026-07-10 03:03:39 +00:00
Sebastian dabba2bbb8 chore(deps): update dependency typescript to v7 2026-07-10 03:03:32 +00:00
Sebastian 11acb2f94b Track Composer dependencies
Signed-off-by: Sebastian <krupinski01@gmail.com>
2026-07-09 22:56:21 -04:00
Sebastian e522073554 fix(renovate): install renovate in runner temp
Signed-off-by: Sebastian <krupinski01@gmail.com>
2026-07-09 20:12:07 -04:00
Sebastian fb1c6fdcef Merge pull request 'chore(deps): update dependency vue-tsc to v3.3.7' (#8) from renovate/vue-language-tools-monorepo into main
Reviewed-on: #8
2026-07-09 23:55:44 +00:00
Sebastian 4c2b8eab26 Merge pull request 'chore(deps): update dependency vuetify to v3.12.9' (#9) from renovate/vuetify-3.x-lockfile into main
Reviewed-on: #9
2026-07-09 23:55:38 +00:00
Sebastian 0ad33f5953 Merge pull request 'chore(deps): update dependency typescript to ~5.9.0' (#7) from renovate/typescript-5.x into main
Reviewed-on: #7
2026-07-09 23:55:32 +00:00
Sebastian 8dc585e23c chore(deps): update dependency vue-tsc to v3.3.7 2026-07-09 23:52:49 +00:00
Sebastian 0cb5e27c96 chore(deps): update dependency typescript to ~5.9.0 2026-07-09 23:52:47 +00:00
Sebastian 803037edb4 chore(deps): update dependency vuetify to v3.12.9 2026-07-09 23:52:46 +00:00
Sebastian cc199a2763 Merge pull request 'chore(deps): update dependency vite to v8' (#11) from renovate/vite-8.x into main
Reviewed-on: #11
2026-07-09 23:50:13 +00:00
Sebastian 15cf29185e chore(deps): update dependency vite to v8 2026-07-05 03:05:08 +00:00
5 changed files with 962 additions and 851 deletions
+8 -2
View File
@@ -25,11 +25,17 @@ jobs:
tools: composer:v2
- name: Install Renovate
run: npm install -g renovate
run: |
npm install --global --no-audit --fund=false \
--prefix "${{ runner.temp }}/renovate-npm" \
--cache "${{ runner.temp }}/renovate-npm-cache" \
renovate
"${{ runner.temp }}/renovate-npm/bin/renovate" --version
- name: Run Renovate
env:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://git.ktrix.dev/api/v1
run: renovate ${{ gitea.repository }}
run: |
"${{ runner.temp }}/renovate-npm/bin/renovate" ${{ gitea.repository }}
+2 -4
View File
@@ -12,12 +12,10 @@ node_modules/
/static/
# Backend development
/vendor/
/lib/vendor/
coverage/
phpunit.xml.cache
.phpunit.result.cache
.php-cs-fixer.cache
.phpstan.cache
*.cache
.phpactor/
# Editors
Generated
+18
View File
@@ -0,0 +1,18 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "9abf00e56775a33c791c04525b7635eb",
"packages": [],
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": {},
"prefer-stable": false,
"prefer-lowest": false,
"platform": {},
"platform-dev": {},
"plugin-api-version": "2.6.0"
}
+931 -842
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -16,13 +16,13 @@
"pinia": "^2.3.1",
"vue": "^3.5.18",
"vue-router": "^4.5.1",
"vuetify": "^3.10.2"
"vuetify": "^4.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.9.0",
"typescript": "~5.9.0",
"vite": "^7.1.2",
"typescript": "~7.0.0",
"vite": "^8.0.0",
"vue-tsc": "^3.0.5"
}
}