zod-prisma icon indicating copy to clipboard operation
zod-prisma copied to clipboard

fix(deps): update dependency textlint to v15

Open renovate[bot] opened this issue 5 months ago • 1 comments

This PR contains the following updates:

Package Change Age Confidence
textlint ^12.1.1 -> ^15.0.0 age confidence

[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

textlint/textlint (textlint)

v15.2.3

Compare Source

What's Changed

This releases support npm Trusted Publishing.

https://www.npmjs.com/package/textlint

image
Documentation
Refactoring
CI
Dependency Updates
Other Changes

Full Changelog: https://github.com/textlint/textlint/compare/v15.2.2...v15.2.3

v15.2.2

Compare Source

What's Changed

Bug Fixes
Documentation
Maintenance
CI
Dependency Updates
Other Changes

New Contributors

Full Changelog: https://github.com/textlint/textlint/compare/v15.2.1...v15.2.2

v15.2.1

Compare Source

What's Changed

Bug Fixes
  • fix(kernel): add browser compatibility for timing utility by @​azu in #​1663
Documentation
  • docs: add Claude Code setup instructions to MCP documentation by @​azu in #​1652
CI
Dependency Updates
Other Changes
  • feat(mcp): add debug logging support for MCP server by @​azu in #​1636

Full Changelog: https://github.com/textlint/textlint/compare/v15.2.0...v15.2.1

v15.2.0

Compare Source

What's Changed

🎉 MCP (Model Context Protocol) Enhancements

New: CLI Flag Support with --mcp Starting with v15.2.0, you can now combine the --mcp flag with other CLI arguments for enhanced flexibility:


### Use specific config with MCP server
npx textlint --mcp --config .textlintrc.dev.json

### Combine with quiet mode 
npx textlint --mcp --quiet

### Multiple options together
npx textlint --mcp --config .textlintrc.dev.json --quiet --ignore-path .textlintignore.dev

Supported CLI Flags:

  • --config <path>: Custom configuration file
  • --ignore-path <path>: Custom .textlintignore file
  • --quiet: Report errors only
  • --rules-base-directory <path>: Custom node_modules directory

📖 Documentation: https://textlint.org/docs/mcp

Features
Testing
  • refactor(mcp): improve test structure and add configuration options by @​azu in #​1630
  • test(mcp): add comprehensive tests for createStructuredErrorResponse by @​azu in #​1633
CI
Dependency Updates

Full Changelog: https://github.com/textlint/textlint/compare/v15.1.1...v15.2.0

v15.1.1

Compare Source

What's Changed

Features
  • feat(mcp): add detailed descriptions to Zod schemas for better API documentation by @​azu in #​1613
Bug Fixes
  • fix(mcp): allow additional properties in TextlintMessage schema by @​azu in #​1623
Refactoring
CI
Dependency Updates
Other Changes

Full Changelog: https://github.com/textlint/textlint/compare/v15.1.0...v15.1.1

v15.1.0

Compare Source

What's Changed

Key Features

This release includes two major improvements to textlint's severity system and configuration handling:

1. New info Severity Level (PR #​1610)

We've implemented proper support for the info severity level, which provides more flexible linting for informational messages that are less critical than warnings.

Background: Previously, info had the same value as none (0), causing confusion. Now info has its own distinct value (3) and is properly supported across all formatters.

Use Case: This is particularly useful for AI-assisted writing rules, such as those in textlint-ja/textlint-rule-preset-ai-writing, which provides LLM-oriented rules for guidelines. These rules can be somewhat broad and may produce false positives if used as errors, but when reported as info, they provide more flexible feedback for AI agents and human writers.

Severity Levels:

  • none: 0 - Disabled
  • warning: 1 - Warning (yellow)
  • error: 2 - Error (red)
  • info: 3 - Informational (green)

Example Usage:

{
  "rules": {
    "my-rule": {
      "severity": "info"  // Now properly displays as green "info" 
    }
  }
}
2. Fixed Preset Severity Preservation (PR #​1607)

Fixed an issue where preset-defined severity settings were lost when users provided partial rule configuration in their .textlintrc file.

Problem: When using a preset that defined severity levels for rules, those settings were completely lost if users added any custom options for those rules.

Solution: Implemented a clear priority system where user configuration completely overrides preset configuration when provided (no merging), making behavior predictable and consistent.

Related Issues: Fixes #​1608, #​1606

Features
Bug Fixes
  • fix: preserve preset severity settings when user provides true config by @​azu in #​1607
Documentation
Testing
CI
Dependency Updates
Other Changes

New Contributors

Full Changelog: https://github.com/textlint/textlint/compare/v15.0.1...v15.1.0

v15.0.1

Compare Source

What's Changed

Bug Fixes
  • fix: Remove 'module' field from packages with type=commonjs to fix webpack compatibility by @​azu in #​1588
Refactoring

Full Changelog: https://github.com/textlint/textlint/compare/v15.0.0...v15.0.1

v15.0.0

Compare Source

🎉 Release Notes

For detailed information about textlint v15.0.0, including migration guides and new features, see the comprehensive release notes:


What's Changed

Breaking Changes
Features
  • feat(mcp): implement Phase 1 improvements - structured output, outputSchema, and error handling by @​azu in #​1564
Refactoring
Dependency Updates
Other Changes

Full Changelog: https://github.com/textlint/textlint/compare/v14.8.4...v15.0.0

v14.8.4

Compare Source

What's Changed

Refactoring
  • refactor: upgrade to Node.js 22 for CI and development by @​azu in #​1534
  • refactor: migrate deprecated JTF-style plugin and fix integration-test ESM compatibility by @​azu in #​1536
  • chore: use pnpm instead of npm by @​azu in #​1538
  • refactor: migrate test runner from Mocha to Vitest by @​azu in #​1544
  • Update ESLint to version 9 and include .js files in patterns by @​azu in #​1546
CI
Dependency Updates

Full Changelog: https://github.com/textlint/textlint/compare/v14.8.1...v14.8.4

v14.8.3

Compare Source

fix to release.

v14.8.1

Compare Source

What's Changed

Documentation
  • docs(mcp): add configuration prerequisite and improve setup instructions by @​azu in #​1526

This PR resolves the issue where AI Agents misunderstand the MCP fixFile and fixText tools, thinking they directly modify files when they actually only return fixed content.

Tool Renaming
  • fixFilegetLintFixedFileContent
  • fixTextgetLintFixedTextContent
Updated Descriptions
  • Changed from "Fix files/text using textlint" to "Get lint-fixed content of files/text using textlint"
  • Emphasizes that these tools return corrected content without modifying original files
  1. Eliminates AI Agent confusion - Clear naming prevents misunderstanding about file modification
  2. Better user experience - AI Agents will be more willing to use these "safe" tools
  3. Maintains backward compatibility - Only affects MCP tool names, not core functionality
  4. Improved documentation - Examples now clearly show content retrieval use cases
Breaking Changes

This is a breaking change for MCP clients that use the old tool names (fixFile, fixText). However, MCP is experimental feature.

Refactoring
CI
Dependency Updates
Other Changes
  • Rename MCP fix tools to clarify non-destructive behavior by @​azu in #​1532

Full Changelog: https://github.com/textlint/textlint/compare/v14.8.0...v14.8.1

v14.8.0

Compare Source

What's Changed

Features

As an experimental feature, textlint has added a --mcp flag that allows it to be started as an mcp server.

Please see following setup to use textlint --mcp.

Refactoring
CI
Dependency Updates
Other Changes

Full Changelog: https://github.com/textlint/textlint/compare/v14.7.2...v14.8.0

v14.7.2

Compare Source

What's Changed

Refactoring
CI
Dependency Updates
Other Changes

New Contributors

Full Changelog: https://github.com/textlint/textlint/compare/v14.7.1...v14.7.2

v14.7.1

Compare Source

What's Changed

Documentation

Full Changelog: https://github.com/textlint/textlint/compare/v14.7.0...v14.7.1

v14.7.0

Compare Source

What's Changed

Features
Documentation
  • docs: replace vscode-textlint link by @​azu in #​1477
  • fix(docs): update links from textlint.github.io to textlint.org by @​azu in #​1485
  • docs: update description from 'text and markdown' to 'natural language' by @​azu in [#​1495](https://redirect.github.com/textlint/te

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Jul 01 '25 00:07 renovate[bot]

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 3 workspace projects
Progress: resolved 0, reused 1, downloaded 0, added 0
 WARN  GET https://registry.npmjs.org/@anolilab/babel-preset/-/babel-preset-5.0.1.tgz error (ERR_PNPM_FETCH_404). Will retry in 10 seconds. 2 retries left.
Progress: resolved 51, reused 50, downloaded 1, added 0
 WARN  GET https://registry.npmjs.org/@anolilab/babel-preset/-/babel-preset-5.0.1.tgz error (ERR_PNPM_FETCH_404). Will retry in 1 minute. 1 retries left.
 ERR_PNPM_FETCH_404  GET https://registry.npmjs.org/@anolilab/babel-preset/-/babel-preset-5.0.1.tgz: Not Found - 404

No authorization header was set for the request.

renovate[bot] avatar Jul 01 '25 00:07 renovate[bot]