Skip to content

Commit

Permalink
Update node dependencies scripting 2024-07-25 (#240)
Browse files Browse the repository at this point in the history
* Bump openssl from 0.10.64 to 0.10.66 (#238)

Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.64 to 0.10.66.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.64...openssl-v0.10.66)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update rust dependencies 2024-07-18 (#236)

* Updated cargo lock file to latest versions

* Fixed clippy warnings

* Updated dashmap to new release

* Update node dependencies 2024-07-22 (#239)

* Updated Node version and dependencies

- Updated react-datepicker and storybook
- Held back rimraf due to requirement of Node 20
- Held back Bunyan due to 2.0.x still being beta
- Chai and Formidible do not support CommonJS are are still being held back by Next.js lack of support
- Updated lock file to latest

* Updated formidible to V3

- Formidible initially was forcing ESM in V3 however version 3.5.x has added back in commonJS support

* Updated lock file to latest versions

* Updated guide results-viewer lock file

* Updated Storybook to V8

* Added typings to Stories on the results viewer

* Updated lock file to latest versions. Tests all passed.

* Additional fixes for tests from merge

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
tkmcmaster and dependabot[bot] authored Jul 25, 2024
1 parent d4cd4cb commit beb2500
Show file tree
Hide file tree
Showing 42 changed files with 13,721 additions and 14,463 deletions.
267 changes: 134 additions & 133 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fs/ppaas-agent",
"version": "3.2.3",
"version": "3.3.0",
"description": "Agent Service for running pewpew tests",
"main": "dist/src/app.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fs/ppaas-common",
"version": "3.2.3",
"version": "3.3.0",
"description": "Common Code for the PewPewController and PewPewAgent",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion controller/components/Alert/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Div from "../Div";
import { Div } from "../Div";
import styled from "styled-components";

export const Alert = styled(Div)`
Expand Down
6 changes: 3 additions & 3 deletions controller/integration/pewpew.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("PewPew Util Integration", () => {
const unzippedFiles: File[] = await unzipFile(legacyPewpewZipFile);
log("unzipped " + filename, LogLevel.DEBUG, unzippedFiles);
filesLegacyPewpew = {
additionalFiles: unzippedFiles as any as File
additionalFiles: unzippedFiles
};
log("legacy files " + filename, LogLevel.DEBUG, filesLegacyPewpew);
if (platform() === "win32") {
Expand All @@ -89,7 +89,7 @@ describe("PewPew Util Integration", () => {
const unzippedFiles: File[] = await unzipFile(scriptingPewpewZipFile);
log("unzipped " + filename, LogLevel.DEBUG, unzippedFiles);
filesScriptingPewpew = {
additionalFiles: unzippedFiles as any as File
additionalFiles: unzippedFiles
};
log("scripting files " + filename, LogLevel.DEBUG, filesScriptingPewpew);
} catch (error) {
Expand Down Expand Up @@ -190,7 +190,7 @@ describe("PewPew Util Integration", () => {
it("postPewPew as latest should respond 200 OK", (done: Mocha.Done) => {
const parsedForm: ParsedForm = {
fields: {
latest: "true"
latest: ["true"]
},
files: filesLegacyPewpew
};
Expand Down
Loading

0 comments on commit beb2500

Please sign in to comment.