mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-14 22:48:10 +01:00
* feat: replace unsupported MongoDB aggregation operators for FerretDB compatibility Replace $lookup, $unwind, $sample, $replaceRoot, and $addFields aggregation stages which are unsupported on FerretDB v2.x (postgres-documentdb backend). - Prompt.js: Replace $lookup/$unwind/$project pipelines with find().select().lean() + attachProductionPrompts() batch helper. Replace $group/$replaceRoot/$sample in getRandomPromptGroups with distinct() + Fisher-Yates shuffle. - Agent/Prompt migration scripts: Replace $lookup anti-join pattern with distinct() + $nin two-step queries for finding un-migrated resources. All replacement patterns verified against FerretDB v2.7.0. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: use $pullAll for simple array removals, fix memberIds type mismatches Replace $pull with $pullAll for exact-value scalar array removals. Both operators work on MongoDB and FerretDB, but $pullAll is more explicit for exact matching (no condition expressions). Fix critical type mismatch bugs where ObjectId values were used against String[] memberIds arrays in Group queries: - config/delete-user.js: use string uid instead of ObjectId user._id - e2e/setup/cleanupUser.ts: convert userId.toString() before query Harden PermissionService.bulkUpdateResourcePermissions abort handling to prevent crash when abortTransaction is called after commitTransaction. All changes verified against FerretDB v2.7.0 and MongoDB Memory Server. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: harden transaction support probe for FerretDB compatibility Commit the transaction before aborting in supportsTransactions probe, and wrap abortTransaction in try-catch to prevent crashes when abort is called after a successful commit (observed behavior on FerretDB). Co-authored-by: Cursor <cursoragent@cursor.com> * feat: add FerretDB compatibility test suite, retry utilities, and CI config Add comprehensive FerretDB integration test suite covering: - $pullAll scalar array operations - $pull with subdocument conditions - $lookup replacement (find + manual join) - $sample replacement (distinct + Fisher-Yates) - $bit and $bitsAllSet operations - Migration anti-join pattern - Multi-tenancy (useDb, scaling, write amplification) - Sharding proof-of-concept - Production operations (backup/restore, schema migration, deadlock retry) Add production retryWithBackoff utility for deadlock recovery during concurrent index creation on FerretDB/DocumentDB backends. Add UserController.spec.js tests for deleteUserController (runs in CI). Configure jest and eslint to isolate FerretDB tests from CI pipelines: - packages/data-schemas/jest.config.mjs: ignore misc/ directory - eslint.config.mjs: ignore packages/data-schemas/misc/ Include Docker Compose config for local FerretDB v2.7 + postgres-documentdb, dedicated jest/tsconfig for the test files, and multi-tenancy findings doc. Co-authored-by: Cursor <cursoragent@cursor.com> * style: brace formatting in aclEntry.ts modifyPermissionBits Co-authored-by: Cursor <cursoragent@cursor.com> * refactor: reorganize retry utilities and update imports - Moved retryWithBackoff utility to a new file `retry.ts` for better structure. - Updated imports in `orgOperations.ferretdb.spec.ts` to reflect the new location of retry utilities. - Removed old import statement for retryWithBackoff from index.ts to streamline exports. * test: add $pullAll coverage for ConversationTag and PermissionService Add integration tests for deleteConversationTag verifying $pullAll removes tags from conversations correctly, and for syncUserEntraGroupMemberships verifying $pullAll removes user from non-matching Entra groups while preserving local group membership. --------- Co-authored-by: Cursor <cursoragent@cursor.com>
350 lines
9 KiB
JavaScript
350 lines
9 KiB
JavaScript
import { fileURLToPath } from 'node:url';
|
|
import path from 'node:path';
|
|
import typescriptEslintEslintPlugin from '@typescript-eslint/eslint-plugin';
|
|
import { fixupConfigRules, fixupPluginRules } from '@eslint/compat';
|
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
import importPlugin from 'eslint-plugin-import';
|
|
import prettier from 'eslint-plugin-prettier';
|
|
import { FlatCompat } from '@eslint/eslintrc';
|
|
import jsxA11Y from 'eslint-plugin-jsx-a11y';
|
|
import i18next from 'eslint-plugin-i18next';
|
|
import react from 'eslint-plugin-react';
|
|
import jest from 'eslint-plugin-jest';
|
|
import globals from 'globals';
|
|
import js from '@eslint/js';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all,
|
|
});
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'client/vite.config.ts',
|
|
'client/dist/**/*',
|
|
'client/public/**/*',
|
|
'client/coverage/**/*',
|
|
'e2e/playwright-report/**/*',
|
|
'packages/api/types/**/*',
|
|
'packages/api/dist/**/*',
|
|
'packages/api/test_bundle/**/*',
|
|
'api/demo/**/*',
|
|
'packages/client/dist/**/*',
|
|
'packages/data-provider/types/**/*',
|
|
'packages/data-provider/dist/**/*',
|
|
'packages/data-provider/test_bundle/**/*',
|
|
'packages/data-schemas/dist/**/*',
|
|
'packages/data-schemas/misc/**/*',
|
|
'data-node/**/*',
|
|
'meili_data/**/*',
|
|
'**/node_modules/**/*',
|
|
'.devcontainer/**/*',
|
|
],
|
|
},
|
|
...fixupConfigRules(
|
|
compat.extends(
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:react-hooks/recommended',
|
|
'plugin:jest/recommended',
|
|
'prettier',
|
|
'plugin:jsx-a11y/recommended',
|
|
),
|
|
),
|
|
{
|
|
plugins: {
|
|
react: fixupPluginRules(react),
|
|
'react-hooks': fixupPluginRules(reactHooks),
|
|
'@typescript-eslint': typescriptEslintEslintPlugin,
|
|
import: importPlugin,
|
|
'jsx-a11y': fixupPluginRules(jsxA11Y),
|
|
'import/parsers': tsParser,
|
|
i18next,
|
|
prettier: fixupPluginRules(prettier),
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
...globals.commonjs,
|
|
},
|
|
parser: tsParser,
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
},
|
|
|
|
settings: {
|
|
react: {
|
|
createClass: 'createReactClass',
|
|
pragma: 'React',
|
|
fragment: 'Fragment',
|
|
version: 'detect',
|
|
},
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
|
},
|
|
'import/resolver': {
|
|
typescript: {
|
|
project: ['./client/tsconfig.json'],
|
|
},
|
|
node: {
|
|
project: ['./client/tsconfig.json'],
|
|
},
|
|
},
|
|
},
|
|
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'react/react-in-jsx-scope': 'off',
|
|
|
|
'@typescript-eslint/ban-ts-comment': [
|
|
'error',
|
|
{
|
|
'ts-ignore': false,
|
|
},
|
|
],
|
|
// Disable a11y features to be enabled later on.
|
|
'jsx-a11y/no-static-element-interactions': 'off',
|
|
'jsx-a11y/click-events-have-key-events': 'off',
|
|
'jsx-a11y/alt-text': 'off',
|
|
'jsx-a11y/img-redundant-alt': 'off',
|
|
'jsx-a11y/no-noninteractive-tabindex': 'off',
|
|
// common rules
|
|
'no-nested-ternary': 'warn',
|
|
'no-constant-binary-expression': 'warn',
|
|
'no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'no-console': 'off',
|
|
'import/no-cycle': 'error',
|
|
'import/no-self-import': 'error',
|
|
'import/extensions': 'off',
|
|
'no-promise-executor-return': 'off',
|
|
'no-param-reassign': 'off',
|
|
'no-continue': 'off',
|
|
'no-restricted-syntax': 'off',
|
|
'react/prop-types': 'off',
|
|
'react/display-name': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['api/**/*.js', 'config/**/*.js'],
|
|
rules: {
|
|
// API
|
|
'no-async-promise-executor': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: [
|
|
'client/src/**/*.tsx',
|
|
'client/src/**/*.ts',
|
|
'client/src/**/*.jsx',
|
|
'client/src/**/*.js',
|
|
],
|
|
rules: {
|
|
// Client a11y
|
|
// TODO: maybe later to error.
|
|
'jsx-a11y/no-noninteractive-element-interactions': 'off',
|
|
'jsx-a11y/label-has-associated-control': 'off',
|
|
'jsx-a11y/no-static-element-interactions': 'off',
|
|
'jsx-a11y/click-events-have-key-events': 'off',
|
|
'jsx-a11y/interactive-supports-focus': 'off',
|
|
'jsx-a11y/no-noninteractive-tabindex': 'off',
|
|
'jsx-a11y/img-redundant-alt': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['**/rollup.config.js', '**/.eslintrc.js', '**/jest.config.js'],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: [
|
|
'**/*.test.js',
|
|
'**/*.test.jsx',
|
|
'**/*.test.ts',
|
|
'**/*.test.tsx',
|
|
'**/*.spec.js',
|
|
'**/*.spec.jsx',
|
|
'**/*.spec.ts',
|
|
'**/*.spec.tsx',
|
|
'**/setupTests.js',
|
|
],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.jest,
|
|
...globals.node,
|
|
},
|
|
},
|
|
rules: {
|
|
// TEST
|
|
'react/display-name': 'off',
|
|
'react/prop-types': 'off',
|
|
'jest/no-commented-out-tests': 'off',
|
|
'react/no-unescaped-entities': 'off',
|
|
'jest/no-conditional-expect': 'off',
|
|
'jest/no-disabled-tests': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
...compat
|
|
.extends(
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
)
|
|
.map((config) => ({
|
|
...config,
|
|
files: ['**/*.ts', '**/*.tsx'],
|
|
})),
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx'],
|
|
ignores: ['packages/**/*'],
|
|
plugins: {
|
|
'@typescript-eslint': typescriptEslintEslintPlugin,
|
|
jest: fixupPluginRules(jest),
|
|
},
|
|
languageOptions: {
|
|
parser: tsParser,
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
parserOptions: {
|
|
project: './client/tsconfig.json',
|
|
},
|
|
},
|
|
rules: {
|
|
// i18n
|
|
'i18next/no-literal-string': [
|
|
'error',
|
|
{
|
|
mode: 'jsx-text-only',
|
|
'should-validate-template': true,
|
|
},
|
|
],
|
|
//
|
|
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
|
|
'@typescript-eslint/no-unused-expressions': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unnecessary-condition': 'off',
|
|
'@typescript-eslint/strict-boolean-expressions': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
// React
|
|
'react/no-unknown-property': 'warn',
|
|
'react-hooks/rules-of-hooks': 'error',
|
|
'react-hooks/exhaustive-deps': 'warn',
|
|
// General
|
|
'no-constant-binary-expression': 'off',
|
|
'import/no-cycle': 'off',
|
|
},
|
|
},
|
|
{
|
|
// **Data-provider specific configuration block**
|
|
files: ['./packages/data-provider/**/*.ts'],
|
|
languageOptions: {
|
|
parser: tsParser,
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
parserOptions: {
|
|
project: './packages/data-provider/tsconfig.json',
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
files: ['./api/demo/**/*.ts'],
|
|
},
|
|
{
|
|
files: ['./packages/api/**/*.ts'],
|
|
rules: {
|
|
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
|
|
},
|
|
},
|
|
{
|
|
files: ['./config/translations/**/*.ts'],
|
|
languageOptions: {
|
|
parser: tsParser,
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
parserOptions: {
|
|
project: './config/translations/tsconfig.json',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ['./packages/data-provider/specs/**/*.ts'],
|
|
languageOptions: {
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
parserOptions: {
|
|
project: './packages/data-provider/tsconfig.spec.json',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ['./api/demo/specs/**/*.ts'],
|
|
languageOptions: {
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
parserOptions: {
|
|
project: './packages/data-provider/tsconfig.spec.json',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ['./packages/api/specs/**/*.ts'],
|
|
languageOptions: {
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
parserOptions: {
|
|
project: './packages/api/tsconfig.spec.json',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
// **New Data-schemas configuration block**
|
|
files: ['./packages/data-schemas/**/*.ts'],
|
|
languageOptions: {
|
|
parser: tsParser,
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
parserOptions: {
|
|
project: './packages/data-schemas/tsconfig.json',
|
|
},
|
|
},
|
|
},
|
|
];
|