Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@fluid-experimental/dds-interceptions

Package Overview
Dependencies
Maintainers
1
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluid-experimental/dds-interceptions - npm Package Compare versions

Comparing version
2.80.0
to
2.81.0
+4
-0
CHANGELOG.md
# @fluidframework/dds-interceptions
## 2.81.0
Dependency updates only.
## 2.80.0

@@ -4,0 +8,0 @@

+5
-30

@@ -1,36 +0,11 @@

/* eslint-disable */
/**
* GENERATED FILE - DO NOT EDIT DIRECTLY.
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
import type { Linter } from "eslint";
import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts";
const config: Linter.Config[] = [
...recommended,
{
rules: {
"@typescript-eslint/consistent-type-imports": [
"error",
{
"fixStyle": "inline-type-imports",
},
],
"@typescript-eslint/no-import-type-side-effects": "error",
},
},
{
files: ["**/*.{ts,tsx}"],
ignores: ["**/src/test/**", "**/tests/**", "**/*.spec.ts", "**/*.test.ts"],
rules: {
"@typescript-eslint/consistent-type-exports": [
"error",
{
"fixMixedExportsWithInlineTypeSpecifier": true,
},
],
},
},
];
const config: Linter.Config[] = [...recommended];
export default config;
{
"name": "@fluid-experimental/dds-interceptions",
"version": "2.80.0",
"version": "2.81.0",
"description": "Distributed Data Structures that support an interception callback",

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

"dependencies": {
"@fluidframework/core-utils": "~2.80.0",
"@fluidframework/map": "~2.80.0",
"@fluidframework/merge-tree": "~2.80.0",
"@fluidframework/runtime-definitions": "~2.80.0",
"@fluidframework/sequence": "~2.80.0"
"@fluidframework/core-utils": "~2.81.0",
"@fluidframework/map": "~2.81.0",
"@fluidframework/merge-tree": "~2.81.0",
"@fluidframework/runtime-definitions": "~2.81.0",
"@fluidframework/sequence": "~2.81.0"
},

@@ -62,8 +62,8 @@ "devDependencies": {

"@biomejs/biome": "~1.9.3",
"@fluid-internal/mocha-test-setup": "~2.80.0",
"@fluid-tools/build-cli": "^0.62.0",
"@fluid-internal/mocha-test-setup": "~2.81.0",
"@fluid-tools/build-cli": "^0.63.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.62.0",
"@fluidframework/eslint-config-fluid": "~2.80.0",
"@fluidframework/test-runtime-utils": "~2.80.0",
"@fluidframework/build-tools": "^0.63.0",
"@fluidframework/eslint-config-fluid": "~2.81.0",
"@fluidframework/test-runtime-utils": "~2.81.0",
"@microsoft/api-extractor": "7.52.11",

@@ -70,0 +70,0 @@ "@types/diff": "^3.5.1",

/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
module.exports = {
extends: [require.resolve("@fluidframework/eslint-config-fluid/recommended"), "prettier"],
parserOptions: {
project: ["./tsconfig.json", "./src/test/tsconfig.json"],
},
rules: {
// #region TODO: remove these once eslint-config-fluid has been updated to 5.8.0
"@typescript-eslint/consistent-type-exports": [
"error",
{ fixMixedExportsWithInlineTypeSpecifier: true },
],
"@typescript-eslint/consistent-type-imports": [
"error",
{ fixStyle: "inline-type-imports" },
],
"@typescript-eslint/no-import-type-side-effects": "error",
// #endregion
},
};