From 00059c94ec1e5d177eb79bad9586fd643f578db8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 23:19:53 +0000 Subject: [PATCH 1/3] Bump vite from 5.0.9 to 5.0.12 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.9 to 5.0.12. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.0.12/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 18 +++++++++--------- package.json | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index a4152f2..a0ca026 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-pwa", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "react-pwa", - "version": "2.2.0", + "version": "2.3.0", "license": "MIT", "dependencies": { "@emotion/react": "^11.11.1", @@ -43,7 +43,7 @@ "lint-staged": "^15.2.0", "prettier": "3.1.1", "typescript": "^5.3.3", - "vite": "^5.0.9", + "vite": "^5.0.12", "vite-plugin-pwa": "^0.17.4", "vitest": "^1.1.3" } @@ -9405,9 +9405,9 @@ } }, "node_modules/vite": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.9.tgz", - "integrity": "sha512-wVqMd5kp28QWGgfYPDfrj771VyHTJ4UDlCteLH7bJDGDEamaz5hV8IX6h1brSGgnnyf9lI2RnzXq/JmD0c2wwg==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", "dev": true, "dependencies": { "esbuild": "^0.19.3", @@ -16803,9 +16803,9 @@ "dev": true }, "vite": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.9.tgz", - "integrity": "sha512-wVqMd5kp28QWGgfYPDfrj771VyHTJ4UDlCteLH7bJDGDEamaz5hV8IX6h1brSGgnnyf9lI2RnzXq/JmD0c2wwg==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", "dev": true, "requires": { "esbuild": "^0.19.3", diff --git a/package.json b/package.json index 09cfe8b..78b5461 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "lint-staged": "^15.2.0", "prettier": "3.1.1", "typescript": "^5.3.3", - "vite": "^5.0.9", + "vite": "^5.0.12", "vite-plugin-pwa": "^0.17.4", "vitest": "^1.1.3" }, From 534ea3c6e680e6d74c70fac0921e07ccdb5edc40 Mon Sep 17 00:00:00 2001 From: Tobi Obeck <13554426+TobiObeck@users.noreply.github.com> Date: Sat, 9 Mar 2024 22:54:04 +0100 Subject: [PATCH 2/3] renames `tests:e2e.yml` b/c git clone checkout fails on Windows due to `:` --- .github/workflows/{tests:e2e.yml => tests_e2e.yml} | 0 README.md | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{tests:e2e.yml => tests_e2e.yml} (100%) diff --git a/.github/workflows/tests:e2e.yml b/.github/workflows/tests_e2e.yml similarity index 100% rename from .github/workflows/tests:e2e.yml rename to .github/workflows/tests_e2e.yml diff --git a/README.md b/README.md index 02c0f1e..8a140ce 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Analyses](https://github.com/suren-atoyan/react-pwa/actions/workflows/analyses.yml/badge.svg)](https://github.com/suren-atoyan/react-pwa/actions/workflows/analyses.yml) -[![E2E Tests](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests:e2e.yml/badge.svg)](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests:e2e.yml) +[![E2E Tests](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests_e2e.yml/badge.svg)](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests_e2e.yml) @@ -257,7 +257,7 @@ npm run test:e2e:ui # or yarn test:e2e:ui There are 2 GitHub Actions workflows: - [analyses.yml](./.github/workflows/analyses.yml) - runs `prettier`, `eslint`, `ts` checks and unit tests on every push and pull request to `main/master` branch. -- [tests:e2e.yml](./.github/workflows/tests:e2e.yml) - runs e2e tests on every push and pull request to `main/master` branch. +- [tests_e2e.yml](./.github/workflows/tests_e2e.yml) - runs e2e tests on every push and pull request to `main/master` branch. #### Environmental variables From 0ea5716b88fef4bfadaeff656ee8c01f72dabebf Mon Sep 17 00:00:00 2001 From: Tobi Obeck <13554426+TobiObeck@users.noreply.github.com> Date: Tue, 9 Apr 2024 08:28:07 +0200 Subject: [PATCH 3/3] asd --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8a140ce..530ef90 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +asd astesst + [![Analyses](https://github.com/suren-atoyan/react-pwa/actions/workflows/analyses.yml/badge.svg)](https://github.com/suren-atoyan/react-pwa/actions/workflows/analyses.yml) [![E2E Tests](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests_e2e.yml/badge.svg)](https://github.com/suren-atoyan/react-pwa/actions/workflows/tests_e2e.yml)