This repository was archived by the owner on Nov 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
chore(deps): update dependency eslint to v9.34.0 #512
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meabed
added a commit
that referenced
this pull request
Aug 26, 2025
* chore(deps): update dependency eslint to v9.34.0 (#512) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency typescript-eslint to v8.41.0 (#513) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): move @types/psl to devDependencies and update typescript-eslint to v8.41.0 - Moved @types/psl from dependencies (likely to devDependencies) - Updated typescript-eslint from v8.40.0 to v8.41.0 * Release 2.2.1 - Moved @types/psl from dependencies to optimize bundle size - Updated typescript-eslint to v8.41.0 * Release 2.2.2-develop.0 * docs: update CHANGELOG.md for v2.2.1 release Document dependency updates and package optimizations --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dev.me Team <support@dev.me>
meabed
added a commit
that referenced
this pull request
Aug 26, 2025
…516) * chore(deps): update dependency eslint to v9.34.0 (#512) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency typescript-eslint to v8.41.0 (#513) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): move @types/psl to devDependencies and update typescript-eslint to v8.41.0 - Moved @types/psl from dependencies (likely to devDependencies) - Updated typescript-eslint from v8.40.0 to v8.41.0 * Release 2.2.1 - Moved @types/psl from dependencies to optimize bundle size - Updated typescript-eslint to v8.41.0 * Release 2.2.2-develop.0 * docs: update CHANGELOG.md for v2.2.1 release Document dependency updates and package optimizations * feat: add name detection and domain suggestion with Biome migration Major Features: - Name detection from email addresses with confidence scoring - Domain typo detection and suggestions with 70+ common domains - Smart caching for domain suggestions (24h TTL) - Migration from ESLint/Prettier to Biome for better performance Technical Improvements: - Enhanced TypeScript interfaces for new features - Backward compatible API with optional feature flags - String similarity algorithm for accurate domain matching - Performance optimized with LRU caching - Comprehensive test coverage (129 tests passing) Breaking Changes: None (fully backward compatible) Details: - detectName parameter for email verification functions - suggestDomain parameter with customizable domain lists - Support for custom detection/suggestion methods - New exports for standalone utility functions - Updated all Node.js imports to use node: protocol - Removed ESLint/Prettier in favor of Biome * Release 2.3.0-develop.0 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dev.me Team <support@dev.me>
meabed
added a commit
that referenced
this pull request
Aug 26, 2025
* chore(deps): update dependency eslint to v9.34.0 (#512) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency typescript-eslint to v8.41.0 (#513) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): move @types/psl to devDependencies and update typescript-eslint to v8.41.0 - Moved @types/psl from dependencies (likely to devDependencies) - Updated typescript-eslint from v8.40.0 to v8.41.0 * Release 2.2.1 - Moved @types/psl from dependencies to optimize bundle size - Updated typescript-eslint to v8.41.0 * Release 2.2.2-develop.0 * docs: update CHANGELOG.md for v2.2.1 release Document dependency updates and package optimizations * feat: add name detection and domain suggestion with Biome migration Major Features: - Name detection from email addresses with confidence scoring - Domain typo detection and suggestions with 70+ common domains - Smart caching for domain suggestions (24h TTL) - Migration from ESLint/Prettier to Biome for better performance Technical Improvements: - Enhanced TypeScript interfaces for new features - Backward compatible API with optional feature flags - String similarity algorithm for accurate domain matching - Performance optimized with LRU caching - Comprehensive test coverage (129 tests passing) Breaking Changes: None (fully backward compatible) Details: - detectName parameter for email verification functions - suggestDomain parameter with customizable domain lists - Support for custom detection/suggestion methods - New exports for standalone utility functions - Updated all Node.js imports to use node: protocol - Removed ESLint/Prettier in favor of Biome * Release 2.3.0-develop.0 * feat: add WHOIS domain information functions Add getDomainAge() and getDomainRegistrationStatus() functions to retrieve domain information via WHOIS lookups. Features: - getDomainAge(): Retrieves domain creation date, age in days/years, expiration and update dates - getDomainRegistrationStatus(): Checks registration status, registrar, name servers, expiration, and lock status - Support for 50+ TLDs with specific WHOIS servers - Automatic WHOIS server discovery for unknown TLDs - Intelligent parsing of various WHOIS response formats - 1-hour caching for performance optimization - Timeout support with graceful error handling - Domain extraction from email addresses and URLs Testing: - Added comprehensive test suite with 19 tests - Integration tests with real WHOIS servers - Edge case handling and timeout scenarios Documentation: - Updated README with detailed API documentation - Added TypeScript interfaces for WHOIS data structures - Updated CHANGELOG for v2.4.0 release * Release 2.4.0-develop.0 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dev.me Team <support@dev.me>
meabed
added a commit
that referenced
this pull request
Aug 26, 2025
* chore(deps): update dependency eslint to v9.34.0 (#512) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency typescript-eslint to v8.41.0 (#513) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): move @types/psl to devDependencies and update typescript-eslint to v8.41.0 - Moved @types/psl from dependencies (likely to devDependencies) - Updated typescript-eslint from v8.40.0 to v8.41.0 * Release 2.2.1 - Moved @types/psl from dependencies to optimize bundle size - Updated typescript-eslint to v8.41.0 * Release 2.2.2-develop.0 * docs: update CHANGELOG.md for v2.2.1 release Document dependency updates and package optimizations * feat: add name detection and domain suggestion with Biome migration Major Features: - Name detection from email addresses with confidence scoring - Domain typo detection and suggestions with 70+ common domains - Smart caching for domain suggestions (24h TTL) - Migration from ESLint/Prettier to Biome for better performance Technical Improvements: - Enhanced TypeScript interfaces for new features - Backward compatible API with optional feature flags - String similarity algorithm for accurate domain matching - Performance optimized with LRU caching - Comprehensive test coverage (129 tests passing) Breaking Changes: None (fully backward compatible) Details: - detectName parameter for email verification functions - suggestDomain parameter with customizable domain lists - Support for custom detection/suggestion methods - New exports for standalone utility functions - Updated all Node.js imports to use node: protocol - Removed ESLint/Prettier in favor of Biome * Release 2.3.0-develop.0 * feat: add WHOIS domain information functions Add getDomainAge() and getDomainRegistrationStatus() functions to retrieve domain information via WHOIS lookups. Features: - getDomainAge(): Retrieves domain creation date, age in days/years, expiration and update dates - getDomainRegistrationStatus(): Checks registration status, registrar, name servers, expiration, and lock status - Support for 50+ TLDs with specific WHOIS servers - Automatic WHOIS server discovery for unknown TLDs - Intelligent parsing of various WHOIS response formats - 1-hour caching for performance optimization - Timeout support with graceful error handling - Domain extraction from email addresses and URLs Testing: - Added comprehensive test suite with 19 tests - Integration tests with real WHOIS servers - Edge case handling and timeout scenarios Documentation: - Updated README with detailed API documentation - Added TypeScript interfaces for WHOIS data structures - Updated CHANGELOG for v2.4.0 release * refactor: enhance WHOIS parsing with comprehensive TLD support - Replace simple WHOIS parser with comprehensive parser supporting 30+ TLDs - Add TLD-specific regex patterns for better parsing accuracy - Convert from luxon to native JavaScript Date parsing - Add support for domain age and registration status in main verification methods - Add checkDomainAge and checkDomainRegistration options to verifyEmail methods - Improve date parsing for various WHOIS date formats - Better handling of domain availability detection - Enhanced error handling for rate limiting - Fix linting issues and improve type safety * refactor: use psl isValid for domain validation in WHOIS functions - Replace manual domain validation with psl.isValid() for consistency - Use the same validation method as email domain validation - Fix TypeScript type assertion for whoisCache - Fix non-null assertion warning in verifyEmailDetailed - Ensures consistent domain validation across the entire codebase * docs: update documentation for PSL domain validation - Add changelog entry for v2.4.1 with validation improvements - Document PSL (Public Suffix List) usage in WHOIS functions - Add note about domain validation requirements in README - Clarify that invalid domains return null * Release 2.5.0-develop.0 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dev.me Team <support@dev.me>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.33.0->9.34.0Release Notes
eslint/eslint (eslint)
v9.34.0Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.