Skip to content

Commit 5e8e8d3

Browse files
dependency: bump win-version-info from 5.0.1 to 6.0.1 (#31358)
* dependency: bump win-version-info from 5.0.1 to 6.0.1 * changelog entry * run in more workflows * Most changelog entry
1 parent c460bfc commit 5e8e8d3

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

.circleci/workflows.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ mainBuildFilters: &mainBuildFilters
3838
- /^release\/\d+\.\d+\.\d+$/
3939
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
4040
- 'update-v8-snapshot-cache-on-develop'
41-
- 'mschile/circle_ci_env'
41+
- 'bump-win-version-info'
4242

4343
# usually we don't build Mac app - it takes a long time
4444
# but sometimes we want to really confirm we are doing the right thing
@@ -49,7 +49,7 @@ macWorkflowFilters: &darwin-workflow-filters
4949
- equal: [ develop, << pipeline.git.branch >> ]
5050
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
5151
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
52-
- equal: [ 'mschile/circle_ci_env', << pipeline.git.branch >> ]
52+
- equal: [ 'bump-win-version-info', << pipeline.git.branch >> ]
5353
- matches:
5454
pattern: /^release\/\d+\.\d+\.\d+$/
5555
value: << pipeline.git.branch >>
@@ -60,7 +60,7 @@ linuxArm64WorkflowFilters: &linux-arm64-workflow-filters
6060
- equal: [ develop, << pipeline.git.branch >> ]
6161
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
6262
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
63-
- equal: [ 'mschile/circle_ci_env', << pipeline.git.branch >> ]
63+
- equal: [ 'bump-win-version-info', << pipeline.git.branch >> ]
6464
- matches:
6565
pattern: /^release\/\d+\.\d+\.\d+$/
6666
value: << pipeline.git.branch >>
@@ -83,7 +83,7 @@ windowsWorkflowFilters: &windows-workflow-filters
8383
- equal: [ develop, << pipeline.git.branch >> ]
8484
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
8585
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
86-
- equal: [ 'mschile/circle_ci_env', << pipeline.git.branch >> ]
86+
- equal: [ 'bump-win-version-info', << pipeline.git.branch >> ]
8787
- matches:
8888
pattern: /^release\/\d+\.\d+\.\d+$/
8989
value: << pipeline.git.branch >>
@@ -157,7 +157,7 @@ commands:
157157
name: Set environment variable to determine whether or not to persist artifacts
158158
command: |
159159
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
160-
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "ryanm/chore/fix-binary-due-to-proxy-from-env" ]]; then
160+
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "bump-win-version-info" ]]; then
161161
export SHOULD_PERSIST_ARTIFACTS=true
162162
fi' >> "$BASH_ENV"
163163
# You must run `setup_should_persist_artifacts` command and be using bash before running this command

cli/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ _Released 4/8/2025 (PENDING)_
77

88
- Updated error message around `injectDocumentDomain` removal to mention a future version of Cypress instead of Cypress 15. Addresses [#31373](https://github.com/cypress-io/cypress/issues/31373). Addressed in [#31375](https://github.com/cypress-io/cypress/pull/31375).
99

10+
**Dependency Updates:**
11+
12+
- Upgraded `win-version-info` from `5.0.1` to `6.0.1`. Addressed in [#31358](https://github.com/cypress-io/cypress/pull/31358).
13+
1014
## 14.2.1
1115

1216
_Released 3/26/2025_
@@ -29,6 +33,7 @@ _Released 3/26/2025_
2933
- Upgraded `resolve` from `1.17.0` to `1.22.10`. Addressed in [#31333](https://github.com/cypress-io/cypress/pull/31333).
3034
- Upgraded `semver` from `7.5.3` to `7.7.1`. Addressed in [#31341](https://github.com/cypress-io/cypress/pull/31341).
3135
- Upgraded `systeminformation` from `5.21.7` to `5.22.8`. Addressed in [#31281](https://github.com/cypress-io/cypress/pull/31281).
36+
- Upgraded `win-version-info` from `5.0.1` to `6.0.1`. Addressed in [#31358](https://github.com/cypress-io/cypress/pull/31358).
3237

3338
## 14.2.0
3439

packages/launcher/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"plist": "3.1.0",
2424
"semver": "^7.7.1",
2525
"which": "2.0.2",
26-
"win-version-info": "5.0.1"
26+
"win-version-info": "^6.0.1"
2727
},
2828
"devDependencies": {
2929
"@packages/data-context": "0.0.0-development",

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -32893,10 +32893,10 @@ wildcard@^2.0.0:
3289332893
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
3289432894
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
3289532895

32896-
win-version-info@5.0.1:
32897-
version "5.0.1"
32898-
resolved "https://registry.yarnpkg.com/win-version-info/-/win-version-info-5.0.1.tgz#6da02e2e7c2f9676ad884f7c8f6e5e959e7b14aa"
32899-
integrity sha512-Xamzgusk6IUvoT2bXsoVntO1S86gCd1Sjmfw718WsV4JV8lgf2QbaRIVHYHLHtqIKB8oVoVEDPnjw+u4jZ82AA==
32896+
win-version-info@^6.0.1:
32897+
version "6.0.1"
32898+
resolved "https://registry.yarnpkg.com/win-version-info/-/win-version-info-6.0.1.tgz#cf09e2d961e2a16424360cd02f5d9a9086e3e49f"
32899+
integrity sha512-Z6060xUh9UwPxAjKOcEUybw93jnMtpERcdlb933bGfpBOlRtLYlYlzWk1YoGzofX3yB3pvPuwXrTsWQ4ClMZKQ==
3290032900
dependencies:
3290132901
napi-macros "^2.0.0"
3290232902
node-gyp-build "^4.3.0"

0 commit comments

Comments
 (0)