Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dargmuesli/vio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 17.0.2
Choose a base ref
...
head repository: dargmuesli/vio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 17.0.3
Choose a head ref

Commits on Feb 25, 2025

  1. Copy the full SHA
    33cdc57 View commit details

Commits on Feb 26, 2025

  1. Copy the full SHA
    1fa0a67 View commit details
  2. Copy the full SHA
    92ee93c View commit details

Commits on Feb 27, 2025

  1. Copy the full SHA
    91721a1 View commit details
  2. Copy the full SHA
    13a07fa View commit details
  3. Copy the full SHA
    d9f4de1 View commit details

Commits on Feb 28, 2025

  1. Copy the full SHA
    712d0ba View commit details
  2. Merge pull request #295 from dargmuesli/renovate/cookie-es-2.x

    chore(deps): update dependency cookie-es to v2
    dargmuesli authored Feb 28, 2025
    Copy the full SHA
    f270e75 View commit details
  3. Copy the full SHA
    fb5a680 View commit details
  4. Copy the full SHA
    f35c856 View commit details

Commits on Mar 1, 2025

  1. Copy the full SHA
    150e7f2 View commit details

Commits on Mar 2, 2025

  1. Copy the full SHA
    2ce3047 View commit details

Commits on Mar 3, 2025

  1. Copy the full SHA
    67a0c61 View commit details
  2. Copy the full SHA
    c2685f2 View commit details
  3. Copy the full SHA
    1d9d34d View commit details

Commits on Mar 4, 2025

  1. Copy the full SHA
    2364a52 View commit details

Commits on Mar 5, 2025

  1. Copy the full SHA
    e0ecb8f View commit details
  2. Copy the full SHA
    4387a67 View commit details

Commits on Mar 6, 2025

  1. Copy the full SHA
    175e3cb View commit details
  2. Copy the full SHA
    fa91c54 View commit details
  3. Copy the full SHA
    a30d06d View commit details

Commits on Mar 7, 2025

  1. Copy the full SHA
    6f0e48f View commit details

Commits on Mar 8, 2025

  1. fix: schedule release

    dargmuesli authored and github-actions[bot] committed Mar 8, 2025
    Copy the full SHA
    18fac3d View commit details
  2. chore(release): 17.0.3 [skip ci]

    ## [17.0.3](17.0.2...17.0.3) (2025-03-08)
    
    ### Bug Fixes
    
    * schedule release ([18fac3d](18fac3d))
    semantic-release-bot committed Mar 8, 2025
    Copy the full SHA
    7a51d30 View commit details
Showing with 1,413 additions and 943 deletions.
  1. +3 −3 .github/workflows/ci.yml
  2. +1 −1 .github/workflows/release-schedule.yml
  3. +6 −0 CHANGELOG.md
  4. +1 −1 Dockerfile
  5. +1 −1 package.json
  6. +1,375 −910 pnpm-lock.yaml
  7. +19 −20 src/package.json
  8. +7 −7 tests/package.json
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
release_semantic_dry:
needs: prepare_jobs
name: Release (semantic, dry)
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.2
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.4
if: contains(fromJSON('["beta", "alpha"]'), github.ref_name) || needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request'
permissions:
contents: write
@@ -37,7 +37,7 @@ jobs:
DRY_RUN: true
build:
name: Build
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.5.2
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.5.4
needs: release_semantic_dry
permissions:
packages: write
@@ -47,7 +47,7 @@ jobs:
release_semantic:
needs: build
name: Release (semantic)
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.2
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.5.4
permissions:
contents: write
secrets:
2 changes: 1 addition & 1 deletion .github/workflows/release-schedule.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ on:
jobs:
release-schedule:
name: "Release: Scheduled"
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.5.2
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.5.4
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [17.0.3](https://github.com/dargmuesli/vio/compare/17.0.2...17.0.3) (2025-03-08)

### Bug Fixes

* schedule release ([18fac3d](https://github.com/dargmuesli/vio/commit/18fac3d425390298ea2dc8ab21c1b00cc6850cb0))

## [17.0.2](https://github.com/dargmuesli/vio/compare/17.0.1...17.0.2) (2025-02-25)

### Bug Fixes
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ RUN pnpm -r run lint
########################
# Nuxt: test (e2e, base-image)

FROM mcr.microsoft.com/playwright:v1.50.1 AS test-e2e-base-image
FROM mcr.microsoft.com/playwright:v1.51.0 AS test-e2e-base-image

# The `CI` environment variable must be set for pnpm to run in headless mode
ENV CI=true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
"lint-staged": "15.4.3",
"semantic-release": "24.2.3"
},
"packageManager": "pnpm@10.4.1",
"packageManager": "pnpm@10.6.1",
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher",
Loading