Socket
Socket
Sign inDemoInstall

@pact-foundation/pact-node

Package Overview
Dependencies
Maintainers
5
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pact-foundation/pact-node - npm Package Compare versions

Comparing version 10.13.3 to 10.13.4

8

CHANGELOG.md

@@ -5,2 +5,10 @@ # Changelog

### [10.13.4](https://github.com/pact-foundation/pact-node/compare/v10.13.3...v10.13.4) (2021-09-06)
### Fixes and Improvements
* Add consumer version selectors for deployedOrReleased, deployed, released and environment ([#715](https://github.com/pact-foundation/pact-node/issues/715)) ([27945f3](https://github.com/pact-foundation/pact-node/commit/27945f3465403604f9c2b0ce0b251e3b456b80c6))
* update tar to 6.1.11 ([bcf8fa0](https://github.com/pact-foundation/pact-node/commit/bcf8fa04cbe3efda19fd759250e2d8946135511c))
### [10.13.3](https://github.com/pact-foundation/pact-node/compare/v10.13.2...v10.13.3) (2021-08-12)

@@ -7,0 +15,0 @@

6

package.json
{
"version": "10.13.3",
"version": "10.13.4",
"name": "@pact-foundation/pact-node",

@@ -54,6 +54,6 @@ "description": "Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.",

"dependencies": {
"@types/needle": "^2.5.1",
"@types/pino": "^6.3.5",
"@types/q": "1.0.7",
"@types/request": "2.48.2",
"@types/needle": "^2.5.1",
"chalk": "2.3.1",

@@ -70,3 +70,3 @@ "check-types": "7.3.0",

"sumchecker": "^2.0.2",
"tar": "^6.1.7",
"tar": "^6.1.11",
"underscore": "1.12.1",

@@ -73,0 +73,0 @@ "unixify": "1.0.0",

@@ -12,9 +12,17 @@ import q = require('q');

export default _default;
export interface ConsumerVersionSelector {
interface BrokenConsumerVersionSelectors {
pacticipant?: string;
tag?: string;
version?: string;
latest?: boolean;
all?: boolean;
}
export interface ConsumerVersionSelector extends BrokenConsumerVersionSelectors {
tag?: string;
latest?: boolean;
consumer?: string;
deployedOrReleased?: boolean;
deployed?: boolean;
released?: boolean;
environment?: string;
fallbackTag?: string;
}
interface CurrentVerifierOptions {

@@ -21,0 +29,0 @@ providerBaseUrl: string;

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