You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@fluid-experimental/attributor

Package Overview
Dependencies
Maintainers
1
Versions
314
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluid-experimental/attributor - npm Package Compare versions

Comparing version
2.80.0
to
2.81.0
+4
-0
CHANGELOG.md
# @fluid-experimental/attributor
## 2.81.0
Dependency updates only.
## 2.80.0

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

+4
-27

@@ -1,6 +0,6 @@

/* 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";

@@ -12,25 +12,2 @@ import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts";

{
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,
},
],
},
},
{
files: ["*.spec.ts", "src/test/**"],

@@ -37,0 +14,0 @@ rules: {

{
"name": "@fluid-experimental/attributor",
"version": "2.80.0",
"version": "2.81.0",
"description": "Operation attributor",

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

"dependencies": {
"@fluid-internal/client-utils": "~2.80.0",
"@fluidframework/container-definitions": "~2.80.0",
"@fluidframework/container-runtime": "~2.80.0",
"@fluidframework/container-runtime-definitions": "~2.80.0",
"@fluidframework/core-interfaces": "~2.80.0",
"@fluidframework/core-utils": "~2.80.0",
"@fluidframework/datastore": "~2.80.0",
"@fluidframework/datastore-definitions": "~2.80.0",
"@fluidframework/driver-definitions": "~2.80.0",
"@fluidframework/runtime-definitions": "~2.80.0",
"@fluidframework/runtime-utils": "~2.80.0",
"@fluidframework/telemetry-utils": "~2.80.0",
"@fluid-internal/client-utils": "~2.81.0",
"@fluidframework/container-definitions": "~2.81.0",
"@fluidframework/container-runtime": "~2.81.0",
"@fluidframework/container-runtime-definitions": "~2.81.0",
"@fluidframework/core-interfaces": "~2.81.0",
"@fluidframework/core-utils": "~2.81.0",
"@fluidframework/datastore": "~2.81.0",
"@fluidframework/datastore-definitions": "~2.81.0",
"@fluidframework/driver-definitions": "~2.81.0",
"@fluidframework/runtime-definitions": "~2.81.0",
"@fluidframework/runtime-utils": "~2.81.0",
"@fluidframework/telemetry-utils": "~2.81.0",
"lz4js": "^0.2.0"

@@ -70,11 +70,11 @@ },

"@biomejs/biome": "~1.9.3",
"@fluid-internal/mocha-test-setup": "~2.80.0",
"@fluid-private/stochastic-test-utils": "~2.80.0",
"@fluid-tools/build-cli": "^0.62.0",
"@fluid-internal/mocha-test-setup": "~2.81.0",
"@fluid-private/stochastic-test-utils": "~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/merge-tree": "~2.80.0",
"@fluidframework/sequence": "~2.80.0",
"@fluidframework/test-runtime-utils": "~2.80.0",
"@fluidframework/build-tools": "^0.63.0",
"@fluidframework/eslint-config-fluid": "~2.81.0",
"@fluidframework/merge-tree": "~2.81.0",
"@fluidframework/sequence": "~2.81.0",
"@fluidframework/test-runtime-utils": "~2.81.0",
"@microsoft/api-extractor": "7.52.11",

@@ -81,0 +81,0 @@ "@types/mocha": "^10.0.10",

/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
module.exports = {
extends: [require.resolve("@fluidframework/eslint-config-fluid"), "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
},
overrides: [
{
// Rules only for test files
files: ["*.spec.ts", "src/test/**"],
rules: {
"import-x/no-nodejs-modules": [
"error",
{ allow: ["node:assert", "node:fs", "node:path"] },
],
"unicorn/prefer-module": "off",
},
},
],
};