Socket
Socket
Sign inDemoInstall

@fluidframework/map

Package Overview
Dependencies
Maintainers
3
Versions
568
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluidframework/map - npm Package Compare versions

Comparing version 0.27.7 to 0.27.8

13

dist/directory.js

@@ -6,2 +6,5 @@ "use strict";

*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
var __importStar = (this && this.__importStar) || function (mod) {

@@ -15,3 +18,3 @@ if (mod && mod.__esModule) return mod;

Object.defineProperty(exports, "__esModule", { value: true });
const assert_1 = require("assert");
const assert_1 = __importDefault(require("assert"));
const common_utils_1 = require("@fluidframework/common-utils");

@@ -891,3 +894,3 @@ const protocol_base_1 = require("@fluidframework/protocol-base");

if (local) {
assert_1.strict(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
assert_1.default(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
const pendingMessageId = localOpMetadata;

@@ -1053,3 +1056,3 @@ if (this.pendingClearMessageId === pendingMessageId) {

if (local) {
assert_1.strict(localOpMetadata !== undefined && localOpMetadata < this.pendingClearMessageId, "Received out of order storage op when there is an unackd clear message");
assert_1.default(localOpMetadata !== undefined && localOpMetadata < this.pendingClearMessageId, "Received out of order storage op when there is an unackd clear message");
}

@@ -1063,3 +1066,3 @@ // If I have a NACK clear, we can ignore all ops.

if (local) {
assert_1.strict(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
assert_1.default(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
const pendingMessageId = localOpMetadata;

@@ -1089,3 +1092,3 @@ const pendingKeyMessageId = this.pendingKeys.get(op.key);

if (local) {
assert_1.strict(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
assert_1.default(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
const pendingMessageId = localOpMetadata;

@@ -1092,0 +1095,0 @@ const pendingSubDirectoryMessageId = this.pendingSubDirectories.get(op.subdirName);

@@ -6,4 +6,7 @@ "use strict";

*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const assert_1 = require("assert");
const assert_1 = __importDefault(require("assert"));
const shared_object_base_1 = require("@fluidframework/shared-object-base");

@@ -410,3 +413,3 @@ const common_utils_1 = require("@fluidframework/common-utils");

if (local) {
assert_1.strict(localOpMetadata !== undefined && localOpMetadata < this.pendingClearMessageId, "Received out of order op when there is an unackd clear message");
assert_1.default(localOpMetadata !== undefined && localOpMetadata < this.pendingClearMessageId, "Received out of order op when there is an unackd clear message");
}

@@ -420,3 +423,3 @@ // If we have an unack'd clear, we can ignore all ops.

if (local) {
assert_1.strict(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
assert_1.default(localOpMetadata !== undefined, `pendingMessageId is missing from the local client's ${op.type} operation`);
const pendingMessageId = localOpMetadata;

@@ -442,3 +445,3 @@ const pendingKeyMessageId = this.pendingKeys.get(op.key);

if (local) {
assert_1.strict(localOpMetadata !== undefined, "pendingMessageId is missing from the local client's clear operation");
assert_1.default(localOpMetadata !== undefined, "pendingMessageId is missing from the local client's clear operation");
const pendingMessageId = localOpMetadata;

@@ -445,0 +448,0 @@ if (this.pendingClearMessageId === pendingMessageId) {

@@ -8,3 +8,3 @@ /*!

export declare const pkgName = "@fluidframework/map";
export declare const pkgVersion = "0.27.7";
export declare const pkgVersion = "0.27.8";
//# sourceMappingURL=packageVersion.d.ts.map

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

exports.pkgName = "@fluidframework/map";
exports.pkgVersion = "0.27.7";
exports.pkgVersion = "0.27.8";
//# sourceMappingURL=packageVersion.js.map

@@ -5,3 +5,3 @@ /*!

*/
import { strict as assert } from "assert";
import assert from "assert";
import { fromBase64ToUtf8 } from "@fluidframework/common-utils";

@@ -8,0 +8,0 @@ import { addBlobToTree } from "@fluidframework/protocol-base";

@@ -5,3 +5,3 @@ /*!

*/
import { strict as assert } from "assert";
import assert from "assert";
import { makeHandlesSerializable, parseHandles, ValueType } from "@fluidframework/shared-object-base";

@@ -8,0 +8,0 @@ import { TypedEventEmitter } from "@fluidframework/common-utils";

@@ -8,3 +8,3 @@ /*!

export declare const pkgName = "@fluidframework/map";
export declare const pkgVersion = "0.27.7";
export declare const pkgVersion = "0.27.8";
//# sourceMappingURL=packageVersion.d.ts.map

@@ -8,3 +8,3 @@ /*!

export const pkgName = "@fluidframework/map";
export const pkgVersion = "0.27.7";
export const pkgVersion = "0.27.8";
//# sourceMappingURL=packageVersion.js.map
{
"name": "@fluidframework/map",
"version": "0.27.7",
"version": "0.27.8",
"description": "Distributed map",

@@ -57,7 +57,7 @@ "homepage": "https://fluidframework.com",

"@fluidframework/common-utils": "^0.24.0",
"@fluidframework/core-interfaces": "^0.27.7",
"@fluidframework/datastore-definitions": "^0.27.7",
"@fluidframework/core-interfaces": "^0.27.8",
"@fluidframework/datastore-definitions": "^0.27.8",
"@fluidframework/protocol-base": "^0.1013.0",
"@fluidframework/protocol-definitions": "^0.1013.0",
"@fluidframework/shared-object-base": "^0.27.7",
"@fluidframework/shared-object-base": "^0.27.8",
"debug": "^4.1.1",

@@ -69,4 +69,4 @@ "path-browserify": "^1.0.1"

"@fluidframework/eslint-config-fluid": "^0.19.1",
"@fluidframework/mocha-test-setup": "^0.27.7",
"@fluidframework/test-runtime-utils": "^0.27.7",
"@fluidframework/mocha-test-setup": "^0.27.8",
"@fluidframework/test-runtime-utils": "^0.27.8",
"@microsoft/api-extractor": "^7.7.2",

@@ -73,0 +73,0 @@ "@types/debug": "^4.1.5",

@@ -6,3 +6,3 @@ /*!

import { strict as assert } from "assert";
import assert from "assert";
import { fromBase64ToUtf8 } from "@fluidframework/common-utils";

@@ -9,0 +9,0 @@ import { addBlobToTree } from "@fluidframework/protocol-base";

@@ -6,3 +6,3 @@ /*!

import { strict as assert } from "assert";
import assert from "assert";
import { IFluidHandle } from "@fluidframework/core-interfaces";

@@ -9,0 +9,0 @@ import { ISequencedDocumentMessage } from "@fluidframework/protocol-definitions";

@@ -9,2 +9,2 @@ /*!

export const pkgName = "@fluidframework/map";
export const pkgVersion = "0.27.7";
export const pkgVersion = "0.27.8";

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 not supported yet

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 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