Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.18.8 #1266

Merged
merged 8 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cz.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"commitizen": {
"name": "cz_customize",
"version": "3.18.7",
"version": "3.18.8",
"gpg_sign": true,
"use_shortcuts": true,
"tag_format": "$major.$minor.$patch$prerelease",
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-cache-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
shell: bash
working-directory: ${{ inputs.WORKSPACE_ROOT }}
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(cat package.json | jq -r '.dependencies.["@playwright/test"]' || 'latest')" >> $GITHUB_ENV
run: echo "PLAYWRIGHT_VERSION=$(cat package.json | jq -r '.dependencies.playwright' || 'latest')" >> $GITHUB_ENV

- uses: actions/cache@v4
if: ${{ inputs.BROWSER_BINARIES }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-backstop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: 👀 Testing Bitmaps
id: backstop
continue-on-error: true
run: cd _ci/backstop && ENV=$DEPLOY_ENV pnpm test.gh
run: cd _ci/backstop && pnpm exec playwright install && ENV=$DEPLOY_ENV pnpm test.gh

- name: Summarize Failures
if: steps.backstop.outcome != 'success'
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

All notable changes to this project will be documented in this file.

## [3.18.8] - 2024-04-08

### 🐛 Bug Fixes

- ***(back)*** Override vite @5.1.7 to address CVE-2024-31207
- ***(backstop)*** Add playwright itself as a depndency
- ***(backstop)*** Update caching action to use quoted property for `jq` version query
- ***(front)*** Adjust local staging test config

### ♻️ Refactor

- ***(github)*** Force install playwright until caching issues are resolved #1264

### ⚙️ Miscellaneous Tasks

- ***(back)*** Upgrade to [email protected]

## [3.18.7] - 2024-03-29

### 🐛 Bug Fixes
Expand Down
1 change: 1 addition & 0 deletions _ci/backstop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"http-server": "^14.1.1",
"patch-package": "^8.0.0",
"@playwright/test": "1.42.1",
"playwright": "^1.42.1",
"pm2": "^5.3.1",
"super-simple-web-server": "github:dgrebb/super-simple-web-server#0.0.2"
},
Expand Down
3 changes: 3 additions & 0 deletions _ci/backstop/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions back/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cms.dgrebb.com",
"version": "3.18.7",
"version": "3.18.8",
"private": true,
"description": "cms.dgrebb.com",
"license": "MIT",
Expand All @@ -15,13 +15,13 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-color-picker": "4.21.1",
"@strapi/plugin-i18n": "4.21.1",
"@strapi/plugin-sentry": "4.21.1",
"@strapi/plugin-color-picker": "4.22.1",
"@strapi/plugin-i18n": "4.22.1",
"@strapi/plugin-sentry": "4.22.1",
"@strapi/plugin-seo": "^1.9.8",
"@strapi/plugin-users-permissions": "4.21.1",
"@strapi/provider-upload-aws-s3": "4.21.1",
"@strapi/strapi": "4.21.1",
"@strapi/plugin-users-permissions": "4.22.1",
"@strapi/provider-upload-aws-s3": "4.22.1",
"@strapi/strapi": "4.22.1",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand All @@ -43,7 +43,7 @@
},
"pnpm": {
"overrides": {
"vite@<5.0.12": ">=5.0.12",
"vite@<5.1.7": ">=5.1.7",
"webpack-dev-middleware@<6.1.2": ">=6.1.2",
"follow-redirects@<1.15.6": ">=1.15.6",
"sanitize-html@<2.12.1": ">=2.12.1"
Expand Down
Loading
Loading