Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

inngest

Package Overview
Dependencies
Maintainers
2
Versions
563
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inngest - npm Package Compare versions

Comparing version 1.5.3 to 1.5.4

6

CHANGELOG.md
# inngest
## 1.5.4
### Patch Changes
- 071fe89: INN-1054 Ensure serve handlers return `any` instead of `unknown` so that they don't needlessly conflict with user types
## 1.5.3

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

14

components/InngestCommHandler.d.ts

@@ -46,4 +46,16 @@ import { ServerTiming } from "../helpers/ServerTiming";

*/
opts?: RegisterOptions) => unknown;
opts?: RegisterOptions
/**
* This `any` return is appropriate.
*
* While we can infer the signature of the returned value, we cannot guarantee
* that we have used the same types as the framework we are integrating with,
* which sometimes can cause frustrating collisions for a user that result in
* `as unknown as X` casts.
*
* Instead, we will use `any` here and have the user be able to place it
* anywhere they need.
*/
) => any;
/**
* `InngestCommHandler` is a class for handling incoming requests from Inngest (or

@@ -50,0 +62,0 @@ * Inngest's tooling such as the dev server or CLI) and taking appropriate

2

package.json
{
"name": "inngest",
"version": "1.5.3",
"version": "1.5.4",
"description": "Official SDK for Inngest.com",

@@ -5,0 +5,0 @@ "main": "./index.js",

@@ -1,2 +0,2 @@

export declare const version = "1.5.3";
export declare const version = "1.5.4";
//# sourceMappingURL=version.d.ts.map

@@ -5,3 +5,3 @@ "use strict";

// Generated by genversion.
exports.version = "1.5.3";
exports.version = "1.5.4";
//# sourceMappingURL=version.js.map

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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