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

azurite

Package Overview
Dependencies
Maintainers
1
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azurite - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1

4

lib/validation/blob/ServiceSignature.js

@@ -41,3 +41,3 @@ 'use strict';

throw new AError(ErrorCodes.AuthenticationFailed);
}
start = Date.parse(si.AccessPolicy.Start);

@@ -53,3 +53,3 @@ expiry = Date.parse(si.AccessPolicy.Expiry);

// Time Validation
if (isNaN(start) || isNaN(expiry) || request.now < start || request.now > expiry) {
if (isNaN(expiry) || request.now < start || request.now > expiry) {
throw new AError(ErrorCodes.AuthenticationFailed);

@@ -56,0 +56,0 @@ }

{
"name": "azurite",
"version": "1.7.0",
"version": "1.7.1",
"description": "A lightweight server clone of Azure Blob Storage that simulates most of the commands supported by it with minimal dependencies.",

@@ -5,0 +5,0 @@ "scripts": {

# 1.0
## 1.7.1
- fixes [#124](https://github.com/arafato/azurite/issues/124): Blob Storage Bugfix
## 1.7.0

@@ -3,0 +5,0 @@ - fixes [#60](https://github.com/arafato/azurite/issues/60): Blob: Added support for servic-level Shared Access Signatures

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