Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 28, 2025

Bumps validator from 13.15.0 to 13.15.20.

Release notes

Sourced from validator's releases.

13.15.20

Fixes, New Locales and Enhancements

New Contributors

Full Changelog: validatorjs/validator.js@13.15.15...13.15.20

13.15.15

Fixes, New Locales and Enhancements

... (truncated)

Changelog

Sourced from validator's changelog.

13.15.20

Fixes, New Locales and Enhancements

13.15.15

Fixes, New Locales and Enhancements

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

hifi-phil and others added 3 commits October 6, 2025 08:52
* Add .env file support for MCP server configuration

- Centralize configuration management in new config.ts module
- Load environment variables from .env file (default) or custom path via --env flag
- Support CLI argument overrides for all configuration options (--umbraco-*)
- Track configuration sources (CLI vs ENV) for transparency
- Add comprehensive validation and error reporting for missing credentials
- Update documentation with .env usage examples and .mcp.json configuration
- Refactor tests to use centralized config system
- Remove deprecated env.ts helper
- Improve multi-culture document test with proper setup and cleanup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Improve copy-document tool with flattened schema and clearer workflow (#30)

- Flatten tool parameter schema for better LLM usability
  - Replace nested `id` + `data` structure with top-level parameters
  - Use `idToCopy` instead of `id` for clarity
  - Move `relateToOriginal` and `includeDescendants` to top level
  - Make `parentId` optional (omit for root, provide for specific parent)
- Add comprehensive tool description with workflow examples
  - Document the empty string return value behavior
  - Provide clear copy-only vs copy-and-update workflow patterns
  - Explain search-document requirement for post-copy operations
- Update e2e test to use update-document instead of search
  - Simplify workflow: copy → update → publish → delete
  - Remove unnecessary search-document and document-type lookups
  - Update allowed tools list to match actual workflow
- Pin mcp-server-tester to version 1.4.0 for consistency
- Update copy-document unit tests to match new schema

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>

* Add universal media upload tools with URL and base64 support (#31)

* Update create-temporary-file to accept base64 encoded data

- Changed schema from ReadStream to base64 string input for MCP compatibility
- Converts base64 → Buffer → temp file → ReadStream for Umbraco API
- Uses os.tmpdir() for temporary file storage
- Automatic cleanup of temp files in finally block
- Updated tests to use base64 encoding
- All tests passing (11/11)

This makes the tool compatible with LLM/MCP usage where files are provided
as base64 strings rather than file system streams.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Add editorAlias and entityType to media value objects

- Updated media-builder to include editorAlias and entityType in image values
- Fixed focalPoint to use correct properties (left, top)
- Changed temporaryFileId property name (was temporaryFilId)
- Added documentation to create-media tool with complete example
- Documented API quirk in docs/comments.md
- Added experimental test-file-format tool for testing file upload formats

These fields are required by the Umbraco API but not documented in the OpenAPI spec.
Without them, media items are created but files are not properly uploaded/attached.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Add universal media upload tools with URL and base64 support

- Add create-media tool supporting filePath, URL, and base64 sources
- Add create-media-multiple tool for batch uploads (max 20 files)
- Implement automatic MIME type detection using mime-types library
- Add comprehensive media upload helpers with proper error handling
- Fix extension handling: only add to temp files, not media item names
- Add test infrastructure including builders and helpers
- Add integration tests with snapshot testing
- Support all media types: Image, File, Video, Audio, SVG, etc.

Technical improvements:
- Use mime-types library for robust MIME type to extension mapping
- Proper temp file cleanup after uploads
- SVG media type auto-correction (Image → Vector Graphic)
- Continue-on-error strategy for batch uploads
- Comprehensive test coverage with proper cleanup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Remove obsolete TEST_FILE_FORMAT_README.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Remove obsolete test-file-format.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>

---------

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>
* Add .env file support for MCP server configuration

- Centralize configuration management in new config.ts module
- Load environment variables from .env file (default) or custom path via --env flag
- Support CLI argument overrides for all configuration options (--umbraco-*)
- Track configuration sources (CLI vs ENV) for transparency
- Add comprehensive validation and error reporting for missing credentials
- Update documentation with .env usage examples and .mcp.json configuration
- Refactor tests to use centralized config system
- Remove deprecated env.ts helper
- Improve multi-culture document test with proper setup and cleanup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Improve copy-document tool with flattened schema and clearer workflow (#30)

- Flatten tool parameter schema for better LLM usability
  - Replace nested `id` + `data` structure with top-level parameters
  - Use `idToCopy` instead of `id` for clarity
  - Move `relateToOriginal` and `includeDescendants` to top level
  - Make `parentId` optional (omit for root, provide for specific parent)
- Add comprehensive tool description with workflow examples
  - Document the empty string return value behavior
  - Provide clear copy-only vs copy-and-update workflow patterns
  - Explain search-document requirement for post-copy operations
- Update e2e test to use update-document instead of search
  - Simplify workflow: copy → update → publish → delete
  - Remove unnecessary search-document and document-type lookups
  - Update allowed tools list to match actual workflow
- Pin mcp-server-tester to version 1.4.0 for consistency
- Update copy-document unit tests to match new schema

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>

* Add universal media upload tools with URL and base64 support (#31)

* Update create-temporary-file to accept base64 encoded data

- Changed schema from ReadStream to base64 string input for MCP compatibility
- Converts base64 → Buffer → temp file → ReadStream for Umbraco API
- Uses os.tmpdir() for temporary file storage
- Automatic cleanup of temp files in finally block
- Updated tests to use base64 encoding
- All tests passing (11/11)

This makes the tool compatible with LLM/MCP usage where files are provided
as base64 strings rather than file system streams.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Add editorAlias and entityType to media value objects

- Updated media-builder to include editorAlias and entityType in image values
- Fixed focalPoint to use correct properties (left, top)
- Changed temporaryFileId property name (was temporaryFilId)
- Added documentation to create-media tool with complete example
- Documented API quirk in docs/comments.md
- Added experimental test-file-format tool for testing file upload formats

These fields are required by the Umbraco API but not documented in the OpenAPI spec.
Without them, media items are created but files are not properly uploaded/attached.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Add universal media upload tools with URL and base64 support

- Add create-media tool supporting filePath, URL, and base64 sources
- Add create-media-multiple tool for batch uploads (max 20 files)
- Implement automatic MIME type detection using mime-types library
- Add comprehensive media upload helpers with proper error handling
- Fix extension handling: only add to temp files, not media item names
- Add test infrastructure including builders and helpers
- Add integration tests with snapshot testing
- Support all media types: Image, File, Video, Audio, SVG, etc.

Technical improvements:
- Use mime-types library for robust MIME type to extension mapping
- Proper temp file cleanup after uploads
- SVG media type auto-correction (Image → Vector Graphic)
- Continue-on-error strategy for batch uploads
- Comprehensive test coverage with proper cleanup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Remove obsolete TEST_FILE_FORMAT_README.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Remove obsolete test-file-format.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>

* Update package.json

---------

Co-authored-by: Phil Whittaker <pjw@umbraco.dk>
Co-authored-by: Claude <noreply@anthropic.com>
Bumps [validator](https://github.com/validatorjs/validator.js) from 13.15.0 to 13.15.20.
- [Release notes](https://github.com/validatorjs/validator.js/releases)
- [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md)
- [Commits](validatorjs/validator.js@13.15.0...13.15.20)

---
updated-dependencies:
- dependency-name: validator
  dependency-version: 13.15.20
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 28, 2025
@hifi-phil hifi-phil changed the base branch from main to dev November 5, 2025 11:23
@hifi-phil hifi-phil closed this Nov 10, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 10, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/validator-13.15.20 branch November 10, 2025 13:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants