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

@fluidframework/shared-object-base

Package Overview
Dependencies
Maintainers
3
Versions
588
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluidframework/shared-object-base - npm Package Compare versions

Comparing version 0.31.1 to 0.32.0

2

dist/packageVersion.d.ts

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

export declare const pkgName = "@fluidframework/shared-object-base";
export declare const pkgVersion = "0.31.1";
export declare const pkgVersion = "0.32.0";
//# sourceMappingURL=packageVersion.d.ts.map

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

exports.pkgName = "@fluidframework/shared-object-base";
exports.pkgVersion = "0.31.1";
exports.pkgVersion = "0.32.0";
//# sourceMappingURL=packageVersion.js.map

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

import { ISequencedDocumentMessage, ITree } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData } from "@fluidframework/runtime-definitions";
import { IChannelSummarizeResult, IGarbageCollectionData } from "@fluidframework/runtime-definitions";
import { EventEmitterWithErrorHandling } from "@fluidframework/telemetry-utils";

@@ -104,3 +104,3 @@ import { ISharedObject, ISharedObjectEvents } from "./types";

*/
getGCData(): IGCData;
getGCData(): IGarbageCollectionData;
/**

@@ -107,0 +107,0 @@ * back-compat 0.30 - This is deprecated. summarize() should be used instead.

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

import { ISequencedDocumentMessage } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData } from "@fluidframework/runtime-definitions";
import { IChannelSummarizeResult, IGarbageCollectionData } from "@fluidframework/runtime-definitions";
export interface ISharedObjectEvents extends IErrorEvent {

@@ -41,4 +41,4 @@ (event: "pre-op" | "op", listener: (op: ISequencedDocumentMessage, local: boolean, target: IEventThisPlaceHolder) => void): any;

*/
getGCData(): IGCData;
getGCData(): IGarbageCollectionData;
}
//# sourceMappingURL=types.d.ts.map

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

export declare const pkgName = "@fluidframework/shared-object-base";
export declare const pkgVersion = "0.31.1";
export declare const pkgVersion = "0.32.0";
//# sourceMappingURL=packageVersion.d.ts.map

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

export const pkgName = "@fluidframework/shared-object-base";
export const pkgVersion = "0.31.1";
export const pkgVersion = "0.32.0";
//# sourceMappingURL=packageVersion.js.map

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

import { ISequencedDocumentMessage, ITree } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData } from "@fluidframework/runtime-definitions";
import { IChannelSummarizeResult, IGarbageCollectionData } from "@fluidframework/runtime-definitions";
import { EventEmitterWithErrorHandling } from "@fluidframework/telemetry-utils";

@@ -104,3 +104,3 @@ import { ISharedObject, ISharedObjectEvents } from "./types";

*/
getGCData(): IGCData;
getGCData(): IGarbageCollectionData;
/**

@@ -107,0 +107,0 @@ * back-compat 0.30 - This is deprecated. summarize() should be used instead.

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

import { ISequencedDocumentMessage } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData } from "@fluidframework/runtime-definitions";
import { IChannelSummarizeResult, IGarbageCollectionData } from "@fluidframework/runtime-definitions";
export interface ISharedObjectEvents extends IErrorEvent {

@@ -41,4 +41,4 @@ (event: "pre-op" | "op", listener: (op: ISequencedDocumentMessage, local: boolean, target: IEventThisPlaceHolder) => void): any;

*/
getGCData(): IGCData;
getGCData(): IGarbageCollectionData;
}
//# sourceMappingURL=types.d.ts.map
{
"name": "@fluidframework/shared-object-base",
"version": "0.31.1",
"version": "0.32.0",
"description": "Fluid base class for shared distributed data structures",

@@ -33,10 +33,10 @@ "homepage": "https://fluidframework.com",

"@fluidframework/common-utils": "^0.26.0",
"@fluidframework/container-definitions": "^0.31.1",
"@fluidframework/core-interfaces": "^0.31.1",
"@fluidframework/datastore": "^0.31.1",
"@fluidframework/datastore-definitions": "^0.31.1",
"@fluidframework/protocol-definitions": "^0.1016.1",
"@fluidframework/runtime-definitions": "^0.31.1",
"@fluidframework/runtime-utils": "^0.31.1",
"@fluidframework/telemetry-utils": "^0.31.1",
"@fluidframework/container-definitions": "^0.32.0",
"@fluidframework/core-interfaces": "^0.32.0",
"@fluidframework/datastore": "^0.32.0",
"@fluidframework/datastore-definitions": "^0.32.0",
"@fluidframework/protocol-definitions": "^0.1017.0",
"@fluidframework/runtime-definitions": "^0.32.0",
"@fluidframework/runtime-utils": "^0.32.0",
"@fluidframework/telemetry-utils": "^0.32.0",
"assert": "^2.0.0",

@@ -43,0 +43,0 @@ "debug": "^4.1.1",

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

export const pkgName = "@fluidframework/shared-object-base";
export const pkgVersion = "0.31.1";
export const pkgVersion = "0.32.0";

@@ -18,3 +18,7 @@ /*!

import { ISequencedDocumentMessage, ITree } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData, ISummaryTreeWithStats } from "@fluidframework/runtime-definitions";
import {
IChannelSummarizeResult,
IGarbageCollectionData,
ISummaryTreeWithStats,
} from "@fluidframework/runtime-definitions";
import { convertToSummaryTreeWithStats, FluidSerializer } from "@fluidframework/runtime-utils";

@@ -219,3 +223,3 @@ import { ChildLogger, EventEmitterWithErrorHandling } from "@fluidframework/telemetry-utils";

let summaryTree: ISummaryTreeWithStats;
let gcData: IGCData;
let gcData: IGarbageCollectionData;
try {

@@ -246,3 +250,3 @@ const serializer = new SummarySerializer(this.runtime.channelsRoutingContext);

*/
public getGCData(): IGCData {
public getGCData(): IGarbageCollectionData {
// We run the full summarize logic to get the list of outbound routes from this object. This is a little

@@ -258,3 +262,3 @@ // expensive but its okay for now. It will be udpated to not use full summarize and make it more efficient.

let gcData: IGCData;
let gcData: IGarbageCollectionData;
try {

@@ -261,0 +265,0 @@ const serializer = new SummarySerializer(this.runtime.channelsRoutingContext);

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

import { ISequencedDocumentMessage } from "@fluidframework/protocol-definitions";
import { IChannelSummarizeResult, IGCData } from "@fluidframework/runtime-definitions";
import { IChannelSummarizeResult, IGarbageCollectionData } from "@fluidframework/runtime-definitions";

@@ -50,3 +50,3 @@ export interface ISharedObjectEvents extends IErrorEvent {

*/
getGCData(): IGCData;
getGCData(): IGarbageCollectionData;
}

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

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