Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
contents: read
id-token: write
steps:
- name: Setup Node.js 22
uses: actions/setup-node@v4
- name: Setup Node.js 24
uses: actions/setup-node@v5
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -21,6 +21,4 @@ jobs:
- name: Run Tests
run: npm test
- name: Publish Package to NPM Registry
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_SECRET}}
run: npm publish
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 13.15.23

### Fixes, New Locales and Enhancements

- **Doc fixes and others:**
- [#2631](https://github.com/validatorjs/validator.js/pull/2631) @WikiRik


# 13.15.22

### Fixes, New Locales and Enhancements
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "validator",
"description": "String validation and sanitization",
"version": "13.15.22",
"version": "13.15.23",
"sideEffects": false,
"homepage": "https://github.com/validatorjs/validator.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ import isStrongPassword from './lib/isStrongPassword';

import isVAT from './lib/isVAT';

const version = '13.15.22';
const version = '13.15.23';

const validator = {
version,
Expand Down