Skip to content

Commit 4257e07

Browse files
committed
Update rust dependencies, fix merge
1 parent 39dd9ae commit 4257e07

File tree

3 files changed

+59
-120
lines changed

3 files changed

+59
-120
lines changed

end2end/tests/n8n.test.js

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -106,75 +106,5 @@ t.test(
106106
.finally(() => {
107107
server.kill();
108108
});
109-
110-
server.on("close", () => {
111-
t.end();
112-
});
113-
114-
server.on("error", (err) => {
115-
t.fail(err.message);
116-
});
117-
118-
let stdout = "";
119-
server.stdout.on("data", (data) => {
120-
stdout += data.toString();
121-
});
122-
123-
let stderr = "";
124-
server.stderr.on("data", (data) => {
125-
stderr += data.toString();
126-
});
127-
128-
// Wait for the server to start
129-
timeout(5000)
130-
.then(() => {
131-
return fetch(`http://127.0.0.1:${port}/rest/owner/setup`, {
132-
method: "POST",
133-
headers: {
134-
"Content-Type": "application/json",
135-
},
136-
body: JSON.stringify({
137-
agree: true,
138-
email: "john.doe@acme.com",
139-
firstName: "John",
140-
lastName: "Doe",
141-
password: "Password1234!",
142-
}),
143-
signal: AbortSignal.timeout(5000),
144-
});
145-
})
146-
.then((registerAdmin) => {
147-
t.equal(registerAdmin.status, 200);
148-
const setCookie = registerAdmin.headers.get("Set-Cookie").split(";")[0];
149-
t.ok(setCookie.includes("n8n-auth"));
150-
151-
return setCookie;
152-
})
153-
.then((cookie) => {
154-
return Promise.all([
155-
fetch(`http://127.0.0.1:${port}/home/workflows`, {
156-
headers: {
157-
Cookie: cookie,
158-
},
159-
signal: AbortSignal.timeout(5000),
160-
}),
161-
fetch(`http://127.0.0.1:${port}/rest/workflows`, {
162-
headers: {
163-
Cookie: cookie,
164-
},
165-
signal: AbortSignal.timeout(5000),
166-
}),
167-
]);
168-
})
169-
.then(([workflows, restWorkflows]) => {
170-
t.equal(workflows.status, 200);
171-
t.equal(restWorkflows.status, 200);
172-
})
173-
.catch((error) => {
174-
t.fail(error.message);
175-
})
176-
.finally(() => {
177-
server.kill();
178-
});
179109
}
180110
);

instrumentation-wasm/Cargo.lock

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

instrumentation-wasm/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ name = "node_code_instrumentation"
1010
crate-type = ["cdylib", "rlib"]
1111

1212
[dependencies]
13-
oxc_allocator = "0.63.0"
14-
oxc_ast = "0.63.0"
15-
oxc_codegen = "0.63.0"
16-
oxc_parser = "0.63.0"
17-
oxc_semantic = "0.63.0"
18-
oxc_span = "0.63.0"
19-
oxc_traverse = "0.63.0"
13+
oxc_allocator = "0.68.1"
14+
oxc_ast = "0.68.1"
15+
oxc_codegen = "0.68.1"
16+
oxc_parser = "0.68.1"
17+
oxc_semantic = "0.68.1"
18+
oxc_span = "0.68.1"
19+
oxc_traverse = "0.68.1"
2020
serde = "1.0.219"
2121
serde_json = "1.0.140"
2222
wasm-bindgen = "0.2.100"

0 commit comments

Comments
 (0)