Skip to content

Bump axios and plagiarism-checker in /demo - #39

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/demo/multi-83e4d8412c
Open

Bump axios and plagiarism-checker in /demo#39
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/demo/multi-83e4d8412c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

Bumps axios and plagiarism-checker. These dependencies needed to be updated together.
Updates axios from 1.13.2 to 1.18.1

Release notes

Sourced from axios's releases.

v1.18.1 — June 21, 2026

This release focuses on Node HTTP adapter fixes, safer AxiosError serialisation, runtime/type correctness fixes, documentation updates, and dependency maintenance.

🐛 Bug Fixes

  • AxiosError Serialisation: Made AxiosError#cause non-enumerable to prevent circular JSON serialisation failures when errors include nested causes. (#10913)
  • Node HTTP Adapter: Guarded socket.setKeepAlive for proxy agent streams, accepted path-only URLs when socketPath is configured, deferred environment proxy handling to Node, and explicitly passed maxBodyLength through to follow-redirects. (#10917, #10930, #10942, #10993)
  • Runtime and Type Correctness: Fixed several runtime crashes, type definition mismatches, and incorrect error handling paths. (#10959, #11021)
  • AxiosURLSearchParams: Switched the encoder callback to an arrow function so encoder.call(this) receives the AxiosURLSearchParams instance correctly. (#11019)

🔧 Maintenance & Chores

  • Documentation: Documented sensitive headers and status transition behaviour, prepared cleaned-up docs, added Deno install instructions, and clarified that request data is request-specific (#11007, #11010, #11023, #11025)

  • Dependencies: Bumped vite, rollup, form-data, js-yaml, and multer across the root project, docs, smoke tests, and module test workspaces. (#11011, #11012, #11013, #11014, #11015, #11016, #11017, #11026)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

v1.18.0 — June 13, 2026

This release hardens redirect and URL handling, improves the validateStatus configuration semantics, and includes updates to documentation, dependencies, and release metadata.

🔒 Security Fixes

  • Redirect Header Safety: Added Node HTTP adapter support for stripping caller-specified sensitive headers on cross-origin redirects, helping prevent custom auth headers such as API keys from leaking to another origin. (#10892)

  • URL And Request Hardening: Rejects malformed http: and https: URLs that omit // with ERR_INVALID_URL, while tightening prototype-pollution-safe config reads, stream size limits, FormData depth handling, data URL sizing, and local NO_PROXY matching. (#11000)

🐛 Bug Fixes

  • Status Validation: Added transitional.validateStatusUndefinedResolves so applications can opt in to treating validateStatus: undefined like the option was omitted, while validateStatus: null remains the explicit way to accept every status. (#10899)

🔧 Maintenance & Chores

  • Documentation: Published the v1.17.0 release notes, fixed a changelog typo, clarified the package update PR policy, and marked the proxy request config as Node.js-only in the advanced docs. (#10984, #10988, #10992, #10995)

  • Dependencies: Bumped @babel/core, @babel/preset-env, @commitlint/cli, @commitlint/config-conventional, @rollup/plugin-babel, @rollup/plugin-commonjs, @vitest/browser, @vitest/browser-playwright, eslint, lint-staged, rollup, vitest, and actions/checkout. (#10989, #10996, #10997)

  • Release Metadata: Prepared the 1.18.0 release by updating package metadata and the runtime VERSION value. (#11003)

... (truncated)

Changelog

Sourced from axios's changelog.

Changelog

v1.18.0 — June 13, 2026

This release hardens redirect and URL handling, improves the validateStatus configuration semantics, and includes updates to documentation, dependencies, and release metadata.

🔒 Security Fixes

  • Redirect Header Safety: Added Node HTTP adapter support for stripping caller-specified sensitive headers on cross-origin redirects, helping prevent custom auth headers such as API keys from leaking to another origin. (#10892)

  • URL And Request Hardening: Rejects malformed http: and https: URLs that omit // with ERR_INVALID_URL, while tightening prototype-pollution-safe config reads, stream size limits, FormData depth handling, data URL sizing, and local NO_PROXY matching. (#11000)

🐛 Bug Fixes

  • Status Validation: Added transitional.validateStatusUndefinedResolves so applications can opt in to treating validateStatus: undefined like the option was omitted, while validateStatus: null remains the explicit way to accept every status. (#10899)

🔧 Maintenance & Chores

  • Documentation: Published the v1.17.0 release notes, fixed a changelog typo, clarified the package update PR policy, and marked the proxy request config as Node.js-only in the advanced docs. (#10984, #10988, #10992, #10995)

  • Dependencies: Bumped @babel/core, @babel/preset-env, @commitlint/cli, @commitlint/config-conventional, @rollup/plugin-babel, @rollup/plugin-commonjs, @vitest/browser, @vitest/browser-playwright, eslint, lint-staged, rollup, vitest, and actions/checkout. (#10989, #10996, #10997)

  • Release Metadata: Prepared the 1.18.0 release by updating package metadata and the runtime VERSION value. (#11003)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

v1.17.0 — June 1, 2026

This release adds Node HTTP zstd decompression, hardens config and release workflows, and fixes authentication, header, proxy, and type-handling regressions.

🔒 Security Fixes

  • Config Hardening: Guarded socketPath, params, and paramsSerializer reads with own-property checks to prevent inherited prototype values from affecting request behavior, including SSRF-sensitive paths. (#10901, #10922)
  • Release Publishing: Switched the publish workflow to npm staged publishing for safer, auditable package releases with provenance. (#10926)

🚀 New Features

  • HTTP Compression: Added Node HTTP adapter support for zstd response decompression, with transitional.advertiseZstdAcceptEncoding controlling whether zstd is advertised in Accept-Encoding. (#6792, #10920)

🐛 Bug Fixes

  • Authentication Handling: Restored Basic auth on same-origin Node redirects while continuing to strip credentials cross-origin, and aligned the fetch adapter with HTTP adapter behavior for URL-embedded Basic auth. (#10929, #10896)

... (truncated)

Commits
  • a209bfb chore(release): prepare release 1.18.1 (#11027)
  • fa6a55e chore(deps-dev): bump multer from 2.1.1 to 2.2.0 (#11026)
  • 40e7be8 docs: clarifies that request data is request-specific in axios (#11025)
  • a446b39 fix(AxiosURLSearchParams): use arrow function so encoder.call(this) receives ...
  • cf1306a docs: add Deno to install instructions (#11023)
  • b32880a fix: incorrect use of error (#11021)
  • 1792eda fix: ensure maxBodyLength is explicitly passed to follow-redirects (#10993)
  • 30499d6 fix: various runtime crashes and type definition mismatches (#10959)
  • 20ce9c4 fix(http): defer env proxy handling to Node (#10942)
  • e64bcf9 chore(deps): merge branch 'v1.x' into tests/module/cjs (#11014)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for axios since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates plagiarism-checker from 3.1.0 to 6.0.0

Release notes

Sourced from plagiarism-checker's releases.

v6.0.0

What's New:

  • Security Update - Axios Vulnerability Fixed: Updated Axios from ^0.21.1 to ^1.12.2 to address a high severity DoS (Denial of Service) vulnerability caused by lack of data size check. This critical security patch protects against potential attacks that could overwhelm your application.

  • Added Support for AI Image Detection API: Seamlessly integrate the powerful Copyleaks AI Image Detection service into your applications.

  • New Models Introduced: To support this functionality, the following new models have been added, providing a clear structure for requests and responses:

    Response Models (models\request\AiImageDetection):

    • CopyleaksImageShapeModel.ts
    • CopyleaksImageMetadataModel.ts
    • CopyleaksAiImageDetectionSummaryModel.ts
    • CopyleaksAiImageDetectionScannedDocumentModel.ts
    • CopyleaksAiImageDetectionResultModel.ts
    • CopyleaksAiImageDetectionResponseModel.ts
    • CopyleaksAiImageDetectionImageInfoModel.ts

    Request Models (models\request\AiImageDetection):

    • CopyleaksAiImageDetectionRequestModel.ts

How to Use:

Getting started with AI Image Detection is straightforward:

  • Example Usage: Explore the new demo\examples\ai-detection.js for a practical demonstration of how to initiate an AI image detection scan and interpret the results.
  • Updated Documentation: The README.md file has been updated with a dedicated section and example for AI Image Detection, making it easier to integrate into your projects.

v5.0.0

  1. The AI Code Detection feature has been removed from our SDKs.
  2. In addition to this change, we've updated the README file. It now offers enhanced documentation, including detailed descriptions and clear steps, to help you more effectively explore and use our SDK.

v4.5.0

Deprecation Notice This release includes a warning message that will pop up for users who use the AI CODE DETECTION that it will be discontinued.

AI Code Detection will be discontinued on August 29, 2025. Please remove AI code detection integrations before the sunset date.

v4.4.1

Added deprecation warning for AI Code detection. "AI Code Detection will be discontinued on August 29, 2025. Please remove AI code detection integrations before the sunset date." when updating the package version or installing the package.

v4.4.0

This release contains our new Text Moderation Scanning feature, which provides real-time content moderation capabilities to help you maintain safe and appropriate content across your platform. The API automatically scans and flags potentially harmful content across multiple categories, enabling you to protect your users and uphold community standards.

Usage Example: Check index.js at demo folder for example on sending request to the Text Moderation API and working with the relevant models.

... (truncated)

Commits
  • 61ad727 Merge pull request #36 from Copyleaks/add-ai-image-detection
  • fb23996 6.0.0
  • e2a2973 Update CopyleaksAiImageDetectionModels.js
  • 3d6b6a2 Merge pull request #35 from Copyleaks/add-ai-image-detection
  • c551f17 add support for iamge detection and update axios version
  • 98e8095 Update package.json
  • 1cdef3f upgrade axios version
  • 095c8fe Merge pull request #33 from Copyleaks/remove-uncessary-imports-from-demo
  • 50a35c2 organize code
  • ce7fa5d Update README.md
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ramiamasha77, a new releaser for plagiarism-checker 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @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.

Bumps [axios](https://github.com/axios/axios) and [plagiarism-checker](https://github.com/Copyleaks/NodeJS-Plagiarism-Checker). These dependencies needed to be updated together.

Updates `axios` from 1.13.2 to 1.18.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.2...v1.18.1)

Updates `plagiarism-checker` from 3.1.0 to 6.0.0
- [Release notes](https://github.com/Copyleaks/NodeJS-Plagiarism-Checker/releases)
- [Commits](v3.1.0...v6.0.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.18.1
  dependency-type: direct:production
- dependency-name: plagiarism-checker
  dependency-version: 6.0.0
  dependency-type: direct:production
...

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 Jul 21, 2026
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.

0 participants