From e53856b6dcafb95d576604ab48be9201fca598f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:47:22 +0000 Subject: [PATCH 1/2] build(deps): Bump react-avatar-editor from 13.0.0 to 13.0.2 Bumps [react-avatar-editor](https://github.com/mosch/react-avatar-editor) from 13.0.0 to 13.0.2. - [Release notes](https://github.com/mosch/react-avatar-editor/releases) - [Commits](https://github.com/mosch/react-avatar-editor/compare/v13.0.0...v13.0.2) --- updated-dependencies: - dependency-name: react-avatar-editor dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3caf35857..559fc33d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,7 +35,7 @@ "path-browserify": "^1.0.1", "query-string": "^7.1.3", "react": "^18.2.0", - "react-avatar-editor": "^13.0.0", + "react-avatar-editor": "^13.0.2", "react-beautiful-dnd": "^13.1.1", "react-dom": "^18.2.0", "react-dropzone": "^14.2.3", @@ -25308,9 +25308,9 @@ "dev": true }, "node_modules/react-avatar-editor": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/react-avatar-editor/-/react-avatar-editor-13.0.0.tgz", - "integrity": "sha512-0xw63MbRRQdDy7YI1IXU9+7tTFxYEFLV8CABvryYOGjZmXRTH2/UA0mafe57ns62uaEFX181kA4XlGlxCaeXKA==", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/react-avatar-editor/-/react-avatar-editor-13.0.2.tgz", + "integrity": "sha512-a4ajbi7lwDh98kgEtSEeKMu0vs0CHTczkq4Xcxr1EiwMFH1GlgHCEtwGU8q/H5W8SeLnH4KPK8LUjEEaZXklxQ==", "dependencies": { "@babel/plugin-transform-runtime": "^7.12.1", "@babel/runtime": "^7.12.5", diff --git a/package.json b/package.json index 96683dfe6..c993ae0e1 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "path-browserify": "^1.0.1", "query-string": "^7.1.3", "react": "^18.2.0", - "react-avatar-editor": "^13.0.0", + "react-avatar-editor": "^13.0.2", "react-beautiful-dnd": "^13.1.1", "react-dom": "^18.2.0", "react-dropzone": "^14.2.3", From 9f10e2c35ddb6b742b97c907ea910d2ec9e5ccf7 Mon Sep 17 00:00:00 2001 From: Paul Schreiber Date: Mon, 8 Jan 2024 15:48:17 -0500 Subject: [PATCH 2/2] fix: add SENTRY_DISABLE_AUTO_UPLOAD to build step --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f2d71e4e..a6cc6bae6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,6 +84,7 @@ jobs: runs-on: ubuntu-latest env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_DISABLE_AUTO_UPLOAD: ${{ github.event_name == 'pull_request' && 'true' || 'false' }} steps: - name: Checkout