Enhance refactor commands with controller-aware Route() updates and fix code quality violations
Add semantic token highlighting for 'that' variable and comment file references in VS Code extension Add Phone_Text_Input and Currency_Input components with formatting utilities Implement client widgets, form standardization, and soft delete functionality Add modal scroll lock and update documentation Implement comprehensive modal system with form integration and validation Fix modal component instantiation using jQuery plugin API Implement modal system with responsive sizing, queuing, and validation support Implement form submission with validation, error handling, and loading states Implement country/state selectors with dynamic data loading and Bootstrap styling Revert Rsx::Route() highlighting in Blade/PHP files Target specific PHP scopes for Rsx::Route() highlighting in Blade Expand injection selector for Rsx::Route() highlighting Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls Update jqhtml packages to v2.2.165 Add bundle path validation for common mistakes (development mode only) Create Ajax_Select_Input widget and Rsx_Reference_Data controller Create Country_Select_Input widget with default country support Initialize Tom Select on Select_Input widgets Add Tom Select bundle for enhanced select dropdowns Implement ISO 3166 geographic data system for country/region selection Implement widget-based form system with disabled state support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
21
node_modules/parse-asn1/CHANGELOG.md
generated
vendored
21
node_modules/parse-asn1/CHANGELOG.md
generated
vendored
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v5.1.9](https://github.com/browserify/parse-asn1/compare/v5.1.8...v5.1.9) - 2025-09-24
|
||||
|
||||
### Commits
|
||||
|
||||
- [meta] node 0.10 works now [`4596fae`](https://github.com/browserify/parse-asn1/commit/4596fae4ba80df5db0f335a400fc53d22b307633)
|
||||
- [Deps] update `pbkdf2` [`6ef651a`](https://github.com/browserify/parse-asn1/commit/6ef651a9e6373e6e09c71330ea4a4cac4329c009)
|
||||
|
||||
## [v5.1.8](https://github.com/browserify/parse-asn1/compare/v5.1.7...v5.1.8) - 2025-09-22
|
||||
|
||||
### Commits
|
||||
|
||||
- [actions] split out node 10-20, and 20+ [`e186dbf`](https://github.com/browserify/parse-asn1/commit/e186dbf58216c9013b560f3f9627347985abd202)
|
||||
- [meta] raise engines.node to match dep graph [`29d1def`](https://github.com/browserify/parse-asn1/commit/29d1defdaf3fc113069347a2edd284d118a73775)
|
||||
- [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `tape` [`2648018`](https://github.com/browserify/parse-asn1/commit/264801813422e4f88ba1834e40e026cdf6bf3f30)
|
||||
- [Deps] update `hash-base`, `pbkdf2` [`3ce78af`](https://github.com/browserify/parse-asn1/commit/3ce78af3720c95a71e1f264ebb20e8af63ad00bc)
|
||||
- [Tests] replace `aud` with `npm audit` [`5ea1506`](https://github.com/browserify/parse-asn1/commit/5ea1506b28cb7c4f976ddb89877c0fe92d183ec9)
|
||||
- [Tests] fix tests in node `4.0 - 4.4 | 5.0 - 5.9` [`4d24a07`](https://github.com/browserify/parse-asn1/commit/4d24a070402332083357da4edcacbee9d98e9dd5)
|
||||
- [meta] add proper `npm version` npmrc settings [`f5d7025`](https://github.com/browserify/parse-asn1/commit/f5d702582d762e96a7deb7338a398a32224e9424)
|
||||
- [Deps] remove unused `hash-base` dep [`93663af`](https://github.com/browserify/parse-asn1/commit/93663af2ba632c5a4c76847d410836ca8da3f00b)
|
||||
- [Dev Deps] add missing peer dep [`f3e9076`](https://github.com/browserify/parse-asn1/commit/f3e9076f00bd43bacc283979bfb3c390e8414580)
|
||||
|
||||
## [v5.1.7](https://github.com/browserify/parse-asn1/compare/v5.1.6...v5.1.7) - 2024-03-05
|
||||
|
||||
### Commits
|
||||
|
||||
4
node_modules/parse-asn1/index.js
generated
vendored
4
node_modules/parse-asn1/index.js
generated
vendored
@@ -4,7 +4,7 @@ var asn1 = require('./asn1');
|
||||
var aesid = require('./aesid.json');
|
||||
var fixProc = require('./fixProc');
|
||||
var ciphers = require('browserify-aes');
|
||||
var compat = require('pbkdf2');
|
||||
var pbkdf2Sync = require('pbkdf2').pbkdf2Sync;
|
||||
var Buffer = require('safe-buffer').Buffer;
|
||||
|
||||
function decrypt(data, password) {
|
||||
@@ -14,7 +14,7 @@ function decrypt(data, password) {
|
||||
var iv = data.algorithm.decrypt.cipher.iv;
|
||||
var cipherText = data.subjectPrivateKey;
|
||||
var keylen = parseInt(algo.split('-')[1], 10) / 8;
|
||||
var key = compat.pbkdf2Sync(password, salt, iters, keylen, 'sha1');
|
||||
var key = pbkdf2Sync(password, salt, iters, keylen, 'sha1');
|
||||
var cipher = ciphers.createDecipheriv(algo, key, iv);
|
||||
var out = [];
|
||||
out.push(cipher.update(cipherText));
|
||||
|
||||
15
node_modules/parse-asn1/package.json
generated
vendored
15
node_modules/parse-asn1/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "parse-asn1",
|
||||
"version": "5.1.7",
|
||||
"version": "5.1.9",
|
||||
"description": "utility library for parsing asn1 files for use with browserify-sign.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
@@ -11,7 +11,7 @@
|
||||
"tests-only": "tape 'test/**/*.js'",
|
||||
"pretest": "npm run lint",
|
||||
"test": "npm run tests-only",
|
||||
"posttest": "aud --production",
|
||||
"posttest": "npx npm@\">= 10.2\" audit --production",
|
||||
"version": "auto-changelog && git add CHANGELOG.md",
|
||||
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
||||
},
|
||||
@@ -25,19 +25,18 @@
|
||||
"asn1.js": "^4.10.1",
|
||||
"browserify-aes": "^1.2.0",
|
||||
"evp_bytestokey": "^1.0.3",
|
||||
"hash-base": "~3.0",
|
||||
"pbkdf2": "^3.1.2",
|
||||
"pbkdf2": "^3.1.5",
|
||||
"safe-buffer": "^5.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ljharb/eslint-config": "^21.1.0",
|
||||
"aud": "^2.0.4",
|
||||
"auto-changelog": "^2.4.0",
|
||||
"@ljharb/eslint-config": "^21.2.0",
|
||||
"auto-changelog": "^2.5.0",
|
||||
"encoding": "^0.1.13",
|
||||
"eslint": "=8.8.0",
|
||||
"in-publish": "^2.0.1",
|
||||
"npmignore": "^0.3.1",
|
||||
"safe-publish-latest": "^2.0.0",
|
||||
"tape": "^5.7.5"
|
||||
"tape": "^5.9.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.10"
|
||||
|
||||
Reference in New Issue
Block a user