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

@featurevisor/core

Package Overview
Dependencies
Maintainers
1
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@featurevisor/core - npm Package Compare versions

Comparing version 0.5.3 to 0.6.0

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [0.6.0](https://github.com/fahad19/featurevisor/compare/v0.5.3...v0.6.0) (2023-03-25)
### Features
* Introduce new JSON type for variables ([#28](https://github.com/fahad19/featurevisor/issues/28)) ([49ff4cb](https://github.com/fahad19/featurevisor/commit/49ff4cb99f840f29e9ac8fcacfee9a9a961ff776))
## [0.5.3](https://github.com/fahad19/featurevisor/compare/v0.5.2...v0.5.3) (2023-03-25)

@@ -8,0 +19,0 @@

2

lib/linter.js

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

key: Joi.string(),
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object"),
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object", "json"),
defaultValue: variableValueJoiSchema, // @TODO: make it stricter based on `type`

@@ -154,0 +154,0 @@ })),

{
"name": "@featurevisor/core",
"version": "0.5.3",
"version": "0.6.0",
"description": "Core package of Featurevisor for Node.js usage",

@@ -44,4 +44,4 @@ "main": "lib/index.js",

"dependencies": {
"@featurevisor/sdk": "^0.5.3",
"@featurevisor/types": "^0.5.3",
"@featurevisor/sdk": "^0.6.0",
"@featurevisor/types": "^0.6.0",
"axios": "^1.3.4",

@@ -57,3 +57,3 @@ "joi": "^17.8.3",

},
"gitHead": "66ed55a4be820cb16ecb5bfee7c4df1e06be912f"
"gitHead": "03d4c4e37ac7491f306f5858c98bf65ac8f62fdf"
}

@@ -181,3 +181,11 @@ // for use in node only

key: Joi.string(), // @TODO: make it unique among siblings
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object"),
type: Joi.string().valid(
"string",
"integer",
"boolean",
"double",
"array",
"object",
"json",
),
defaultValue: variableValueJoiSchema, // @TODO: make it stricter based on `type`

@@ -184,0 +192,0 @@ }),

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