From a76171445d494e309394ae28c7b16ab5fc87218d Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 3 Feb 2026 21:44:16 +0000 Subject: [PATCH 1/2] chore: bump @babel/runtime to 7.28.6 Co-authored-by: xinyi.ye --- package.json | 20 ++++++++++---------- yarn.lock | 7 ++++++- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index b5a7a3b5..c3a5048b 100644 --- a/package.json +++ b/package.json @@ -15,12 +15,12 @@ "main": "amplitude.umd.js", "module": "amplitude.esm.js", "dependencies": { + "@amplitude/analytics-connector": "^1.4.6", "@amplitude/ua-parser-js": "0.7.33", "@amplitude/utils": "^1.10.2", - "@babel/runtime": "^7.21.0", + "@babel/runtime": "^7.28.6", "blueimp-md5": "^2.19.0", - "query-string": "8.1.0", - "@amplitude/analytics-connector": "^1.4.6" + "query-string": "8.1.0" }, "devDependencies": { "@amplitude/eslint-plugin-amplitude": "^1.1.1", @@ -29,6 +29,13 @@ "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-transform-runtime": "^7.21.0", "@babel/preset-env": "^7.20.2", + "@rollup/plugin-babel": "^6.0.3", + "@rollup/plugin-commonjs": "^23.0.7", + "@rollup/plugin-json": "^5.0.2", + "@rollup/plugin-legacy": "^3.0.1", + "@rollup/plugin-node-resolve": "^15.0.1", + "@rollup/plugin-replace": "^5.0.2", + "@rollup/plugin-terser": "^0.4.0", "@semantic-release/changelog": "^6.0.2", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", @@ -59,13 +66,6 @@ "prettier": "^2.8.4", "requirejs": "^2.3.6", "rollup": "^2.79.1", - "@rollup/plugin-babel": "^6.0.3", - "@rollup/plugin-commonjs": "^23.0.7", - "@rollup/plugin-json": "^5.0.2", - "@rollup/plugin-node-resolve": "^15.0.1", - "@rollup/plugin-replace": "^5.0.2", - "@rollup/plugin-legacy": "^3.0.1", - "@rollup/plugin-terser": "^0.4.0", "semantic-release": "^19.0.5", "sinon": "^15.0.2" }, diff --git a/yarn.lock b/yarn.lock index cb2a57ff..db97f077 100644 --- a/yarn.lock +++ b/yarn.lock @@ -927,7 +927,12 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.28.6": + version "7.28.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.6.tgz#d267a43cb1836dc4d182cce93ae75ba954ef6d2b" + integrity sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA== + +"@babel/runtime@^7.8.4": version "7.21.0" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== From 86532ed6b28c81c30a9c93aa596362fa57b82831 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 3 Feb 2026 21:54:16 +0000 Subject: [PATCH 2/2] chore: update actions cache to v4 Co-authored-by: xinyi.ye --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 2ff0a22e..24ddab1b 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v1 - name: node_modules cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 147197c3..0be2ab64 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v2 - name: node_modules cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c83d437..fafe71d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,7 +44,7 @@ jobs: aws-region: us-west-2 - name: node_modules cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4c0ae8f..f14d59d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v2 - name: node_modules cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}