New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@empiricalrun/reporter

Package Overview
Dependencies
Maintainers
0
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@empiricalrun/reporter - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

6

CHANGELOG.md
# @empiricalrun/reporter
## 0.8.0
### Minor Changes
- 9965bf7: feat: add authorization for all /api calls
## 0.7.0

@@ -4,0 +10,0 @@

9

dist/sink/dashboard.js

@@ -104,12 +104,17 @@ "use strict";

});
await fetch(`${DOMAIN}/api/test-runs`, {
const response = await fetch(`${DOMAIN}/api/test-runs`, {
method: "POST",
headers: {
"Content-Type": "application/json",
// TODO: remove this hardcoded value
Authorization: "weQPMWKT",
},
body,
});
if (!response.ok) {
throw new Error(`Error sending test-run to DB: ${response.status}`);
}
console.log("Test run sent to DB ✅");
}
catch (e) {
console.error(`Error sending test-run to DB: ${e.code}`);
console.error(e.message);

@@ -116,0 +121,0 @@ }

{
"name": "@empiricalrun/reporter",
"version": "0.7.0",
"version": "0.8.0",
"publishConfig": {

@@ -5,0 +5,0 @@ "registry": "https://registry.npmjs.org/",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc