chore(deps): bump axios and codeceptjs in /codeceptjs-example
Type: Pull Request
State: Open
Association: None
Comments: 0
(2 months ago)
(2 months ago)
dependencies javascript
Bumps axios to 1.12.2 and updates ancestor dependency codeceptjs. These dependencies need to be updated together.
Updates axios from 0.21.4 to 1.12.2
Release notes
Sourced from axios's releases.
Release v1.12.2
Release notes:
Bug Fixes
- fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#7030) (cf78825)
Contributors to this release
Release v1.12.1
Release notes:
Bug Fixes
Contributors to this release
Release v1.12.0
Release notes:
Bug Fixes
- adding build artifacts (9ec86de)
- dont add dist on release (a2edc36)
- fetch-adapter: set correct Content-Type for Node FormData (#6998) (a9f47af)
- node: enforce maxContentLength for data: URLs (#7011) (945435f)
- package exports (#5627) (aa78ac2)
- params: removing '[' and ']' from URL encode exclude characters (#3316) (#5715) (6d84189)
- release pr run (fd7f404)
- types: change the type guard on isCancel (#5595) (0dbb7fd)
Features
- adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
- fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
- support reviver on JSON.parse (#5926) (2a97634), closes #5924
- types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)
Contributors to this release
... (truncated)
Changelog
Sourced from axios's changelog.
1.12.2 (2025-09-14)
Bug Fixes
- fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#7030) (cf78825)
Contributors to this release
1.12.1 (2025-09-12)
Bug Fixes
Contributors to this release
1.12.0 (2025-09-11)
Bug Fixes
- adding build artifacts (9ec86de)
- dont add dist on release (a2edc36)
- fetch-adapter: set correct Content-Type for Node FormData (#6998) (a9f47af)
- node: enforce maxContentLength for data: URLs (#7011) (945435f)
- package exports (#5627) (aa78ac2)
- params: removing '[' and ']' from URL encode exclude characters (#3316) (#5715) (6d84189)
- release pr run (fd7f404)
- types: change the type guard on isCancel (#5595) (0dbb7fd)
Features
- adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
- fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
- support reviver on JSON.parse (#5926) (2a97634), closes #5924
- types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)
Contributors to this release
... (truncated)
Commits
e5a3336chore(release): v1.12.2 (#7031)38726c7refactor: change if in else to else if (#7028)cf78825fix(fetch): use current global fetch instead of cached one when env fetch is ...c26d00frefactor: remove redundant assignment (#7029)9fb41a8chore(ci): add local HTTP server for Karma tests; (#7022)19f9f36docs(readme): add custom fetch section; (#7024)3cac78cchore(release): v1.12.1 (#7021)b5f26b7fix(types): fixed env config types; (#7020)0d8ad6echore(release): v1.12.0 (#7013)fd7f404fix: release pr run- Additional commits viewable in compare view
Updates codeceptjs from 3.1.3 to 3.7.5
Release notes
Sourced from codeceptjs's releases.
3.7.5
❤️ Thanks all to those who contributed to make this release! ❤️
✨ Features
- feat: Add configurable sensitive data masking with custom patterns (#5109)
Backward Compatible Boolean Configuration
// codecept.conf.js exports.config = { maskSensitiveData: true, // Uses built-in patterns for common sensitive data // ... other config }Advanced Custom Patterns Configuration
// codecept.conf.js exports.config = { maskSensitiveData: { enabled: true, patterns: [ { name: 'Email', regex: /(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b)/gi, mask: '[MASKED_EMAIL]' }, { name: 'Credit Card', regex: /\b(?:\d{4}[- ]?){3}\d{4}\b/g, mask: '[MASKED_CARD]' }, { name: 'Phone Number', regex: /(\+?1[-.\s]?)?\(?([0-9]{3})\)?[-.\s]?([0-9]{3})[-.\s]?([0-9]{4})/g, mask: '[MASKED_PHONE]' } ] }, // ... other config }Example Output
With the above configuration, sensitive data is automatically masked:
Before:
</tr></table>
... (truncated)
Changelog
Sourced from codeceptjs's changelog.
3.7.5
❤️ Thanks all to those who contributed to make this release! ❤️
✨ Features
- feat: Add configurable sensitive data masking with custom patterns (#5109)
Backward Compatible Boolean Configuration
// codecept.conf.js exports.config = { maskSensitiveData: true, // Uses built-in patterns for common sensitive data // ... other config }Advanced Custom Patterns Configuration
// codecept.conf.js exports.config = { maskSensitiveData: { enabled: true, patterns: [ { name: 'Email', regex: /(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b)/gi, mask: '[MASKED_EMAIL]' }, { name: 'Credit Card', regex: /\b(?:\d{4}[- ]?){3}\d{4}\b/g, mask: '[MASKED_CARD]' }, { name: 'Phone Number', regex: /(\+?1[-.\s]?)?\(?([0-9]{3})\)?[-.\s]?([0-9]{3})[-.\s]?([0-9]{4})/g, mask: '[MASKED_PHONE]' } ] }, // ... other config }Example Output
With the above configuration, sensitive data is automatically masked:
</tr></table>
... (truncated)
Commits
3ba96d1release 3.7.5 (#5198)5a440e2Bump versions (#5197)6ff0dc6fix(utils): resolve command injection vulnerability inemptyFolder(3.x) (#...b004ca8bugfix: prevent this error when running WebDriver without Bidi protocol: 'Err...5c38989Bump some minors before 3.7.5 (#5187)f8ef112Bump expect to 30.1.2 (#5182)94e73eachore(deps): bump joi from 17.13.3 to 18.0.1 (#5178)c417bd3Bump globals to 16.4.0 (#5177)ba053f0Bump acorn to 8.15.0 (#5169)e2bb7e3Bump mocha to 11.7.2 (#5159)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by thanh.nguyen, a new releaser for codeceptjs since your current version.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Pull Request Statistics
1
2
+7719
-1756
Package Dependencies
axios
npm
0.21.4 → 1.12.2
Major
/codeceptjs-example
codeceptjs
npm
3.1.3 → 3.7.5
Minor
/codeceptjs-example
Technical Details
| ID: | 8807185 |
| UUID: | 2872750936 |
| Node ID: | PR_kwDOFtmY7c6rOrNY |
| Host: | GitHub |
| Repository: | browserstack/puppeteer-browserstack |
| Merge State: | Unknown |