Skip to content

Commit bddc4d5

Browse files
dependabot[bot]cloud-sdk-jstomfrenken
authored
chore(deps): bump mock-fs from 5.3.0 to 5.5.0 (#5453)
* chore(deps): bump mock-fs from 5.3.0 to 5.5.0 Bumps [mock-fs](https://github.com/tschaub/mock-fs) from 5.3.0 to 5.5.0. - [Release notes](https://github.com/tschaub/mock-fs/releases) - [Changelog](https://github.com/tschaub/mock-fs/blob/main/changelog.md) - [Commits](tschaub/mock-fs@v5.3.0...v5.5.0) --- updated-dependencies: - dependency-name: mock-fs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Regenerate check-public-api action * fix mock-fs * Changes from lint:fix --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: cloud-sdk-js <cloud-sdk-js@github.com> Co-authored-by: tomfrenken <tom.frenken@sap.com>
1 parent ea8aefe commit bddc4d5

File tree

16 files changed

+179
-201
lines changed

16 files changed

+179
-201
lines changed

.github/actions/check-public-api/index.js

Lines changed: 145 additions & 174 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build-packages/check-pr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@vercel/ncc": "^0.38.3",
2323
"depcheck": "^1.4.7",
2424
"eslint": "^8.57.1",
25-
"mock-fs": "^5.3.0",
25+
"mock-fs": "^5.5.0",
2626
"prettier": "^3.5.0",
2727
"typescript": "~5.7.3"
2828
}

build-packages/check-public-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@sap-cloud-sdk/generator-common": "^3.22.2",
2222
"@types/mock-fs": "^4.13.4",
2323
"glob": "^11.0.1",
24-
"mock-fs": "^5.3.0"
24+
"mock-fs": "^5.5.0"
2525
},
2626
"devDependencies": {
2727
"@vercel/ncc": "^0.38.3",

packages/connectivity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"jsonwebtoken": "^9.0.2"
4646
},
4747
"devDependencies": {
48-
"mock-fs": "^5.3.0",
48+
"mock-fs": "^5.5.0",
4949
"nock": "^14.0.1",
5050
"typescript": "~5.7.3"
5151
}

packages/connectivity/src/http-agent/http-agent.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ describe('createAgent', () => {
190190
};
191191

192192
expect(async () => getAgentConfigAsync(destination)).rejects.toThrowError(
193-
"The format of the provided certificate 'cert.jks' is not supported. Supported formats are: p12, pfx. You can convert Java Keystores (.jks, .keystore) into PKCS#12 keystores using the JVM's keytool CLI: keytool -importkeystore -srckeystore your-keystore.jks -destkeystore your-keystore.p12 -deststoretype pkcs12"
193+
"The format of the provided certificate 'cert.jks' is not supported. Supported formats are: p12, pfx, pem. You can convert Java Keystores (.jks, .keystore) into PKCS#12 keystores using the JVM's keytool CLI: keytool -importkeystore -srckeystore your-keystore.jks -destkeystore your-keystore.p12 -deststoretype pkcs12"
194194
);
195195
});
196196

packages/generator-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
},
4848
"devDependencies": {
4949
"@types/yargs": "^17.0.33",
50-
"mock-fs": "^5.3.0"
50+
"mock-fs": "^5.5.0"
5151
}
5252
}

packages/generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
},
5555
"devDependencies": {
5656
"execa": "^5.0.0",
57-
"mock-fs": "^5.3.0",
57+
"mock-fs": "^5.5.0",
5858
"prettier": "^3.5.0"
5959
}
6060
}

packages/generator/src/generator.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ const pathTestService = resolve(
3535
const pathToGeneratorCommon = resolve(__dirname, '../../generator-common');
3636
const pathRootNodeModules = resolve(__dirname, '../../../node_modules');
3737

38+
jest.setTimeout(60000); // Set timeout to 60 seconds as runners appear to be slow
39+
3840
describe('generator', () => {
3941
const prettierSpy = jest.spyOn(prettier, 'format');
4042

packages/openapi-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@types/js-yaml": "^4.0.9",
49-
"mock-fs": "^5.3.0",
49+
"mock-fs": "^5.5.0",
5050
"prettier": "^3.5.0",
5151
"typescript": "~5.7.3"
5252
}

packages/test-util/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@sap-cloud-sdk/util": "^3.24.0"
3939
},
4040
"devDependencies": {
41-
"mock-fs": "^5.3.0",
41+
"mock-fs": "^5.5.0",
4242
"typescript": "~5.7.3"
4343
}
4444
}

0 commit comments

Comments
 (0)