Socket
Socket
Sign inDemoInstall

azurite

Package Overview
Dependencies
267
Maintainers
4
Versions
153
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.17.0 to 3.17.1

7

ChangeLog.md

@@ -7,2 +7,9 @@ # Changelog

## 2022.04 Version 3.17.1
Table:
- Removes commas from RegEx checking key validity.
- Updated property check to handle null property and added regression test.
## 2022.04 Version 3.17.0

@@ -9,0 +16,0 @@

2

dist/src/blob/utils/constants.js

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

const Models = tslib_1.__importStar(require("../generated/artifacts/models"));
exports.VERSION = "3.17.0";
exports.VERSION = "3.17.1";
exports.BLOB_API_VERSION = "2021-06-08";

@@ -9,0 +9,0 @@ exports.DEFAULT_BLOB_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.VALID_QUEUE_AUDIENCES = exports.ValidAPIVersions = exports.DEFAULT_QUEUE_PERSISTENCE_ARRAY = exports.QUEUE_STATUSCODE = exports.SECONDARY_SUFFIX = exports.HeaderConstants = exports.MethodConstants = exports.EMPTY_EXTENT_CHUNK = exports.UPDATE_VISIBILITYTIMEOUT_MAX = exports.UPDATE_VISIBILITYTIMEOUT_MIN = exports.DEFUALT_UPDATE_VISIBILITYTIMEOUT = exports.MESSAGETTL_MIN = exports.ENQUEUE_VISIBILITYTIMEOUT_MAX = exports.ENQUEUE_VISIBILITYTIMEOUT_MIN = exports.DEFUALT_MESSAGETTL = exports.MESSAGETEXT_LENGTH_MAX = exports.DEQUEUE_NUMOFMESSAGES_MAX = exports.DEQUEUE_NUMOFMESSAGES_MIN = exports.DEQUEUE_VISIBILITYTIMEOUT_MAX = exports.DEQUEUE_VISIBILITYTIMEOUT_MIN = exports.DEFUALT_DEQUEUE_VISIBILITYTIMEOUT = exports.LIST_QUEUE_MAXRESSULTS_MAX = exports.LIST_QUEUE_MAXRESSULTS_MIN = exports.QUEUE_SERVICE_PERMISSION = exports.NEVER_EXPIRE_DATE = exports.DEFAULT_GC_INTERVAL_MS = exports.LOGGER_CONFIGS = exports.DEFAULT_QUEUE_CONTEXT_PATH = exports.DEFAULT_ENABLE_ACCESS_LOG = exports.DEFAULT_ACCESS_LOG_PATH = exports.DEFAULT_ENABLE_DEBUG_LOG = exports.DEFAULT_DEBUG_LOG_PATH = exports.DEFAULT_QUEUE_PERSISTENCE_PATH = exports.DEFAULT_QUEUE_EXTENT_LOKI_DB_PATH = exports.DEFAULT_QUEUE_LOKI_DB_PATH = exports.IS_PRODUCTION = exports.DEFAULT_QUEUE_LISTENING_PORT = exports.DEFAULT_QUEUE_SERVER_HOST_NAME = exports.QUEUE_API_VERSION = exports.VERSION = void 0;
exports.VERSION = "3.17.0";
exports.VERSION = "3.17.1";
exports.QUEUE_API_VERSION = "2021-06-08";

@@ -6,0 +6,0 @@ exports.DEFAULT_QUEUE_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access

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

}
const match = key.match(/[\u0000-\u001f,\u007f-\u009f,\/,\\,\#,\?]+/);
const match = key.match(/[\u0000-\u001f\u007f-\u009f\/\\\#\?]+/);
if (match !== null && match.length > 0) {

@@ -602,3 +602,4 @@ throw StorageErrorFactory_1.default.getInvalidInput(context);

if (properties.hasOwnProperty(prop)) {
if (undefined !== properties[prop].length &&
if (null !== properties[prop] &&
undefined !== properties[prop].length &&
properties[prop].length > 1024 * 32) {

@@ -605,0 +606,0 @@ throw StorageErrorFactory_1.default.getPropertyValueTooLargeError(context);

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

exports.TABLE_API_VERSION = "2021-06-08";
exports.VERSION = "3.17.0";
exports.VERSION = "3.17.1";
// Max Body size is 4 MB

@@ -22,0 +22,0 @@ exports.BODY_SIZE_MAX = 1024 * 1024 * 4;

@@ -6,3 +6,3 @@ {

"icon": "icon.png",
"version": "3.17.0",
"version": "3.17.1",
"publisher": "Azurite",

@@ -9,0 +9,0 @@ "categories": [

@@ -12,3 +12,3 @@ # Azurite V3

| ------------------------------------------------------------------ | ------------------------- | ------------------------------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 3.17.0 | 2021-06-08 | Blob, Queue and Table(preview) | Azurite V3 based on TypeScript & New Architecture | [NPM](https://www.npmjs.com/package/azurite) - [Docker](https://hub.docker.com/_/microsoft-azure-storage-azurite) - [Visual Studio Code Extension](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) |
| 3.17.1 | 2021-06-08 | Blob, Queue and Table(preview) | Azurite V3 based on TypeScript & New Architecture | [NPM](https://www.npmjs.com/package/azurite) - [Docker](https://hub.docker.com/_/microsoft-azure-storage-azurite) - [Visual Studio Code Extension](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) |
| [Legacy (v2)](https://github.com/Azure/Azurite/tree/legacy-master) | 2016-05-31 | Blob, Queue and Table | Legacy Azurite V2 | [NPM](https://www.npmjs.com/package/azurite) |

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc