Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the npm_and_yarn group across 1 directory with 14 updates #1442

Merged
merged 1 commit into from
Sep 14, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 14, 2024

Bumps the npm_and_yarn group with 11 updates in the / directory:

Package From To
axios 1.7.0 1.7.7
typesense 1.7.2 1.8.2
body-parser 1.20.2 1.20.3
express 4.19.2 4.21.0
webpack 5.91.0 5.94.0
@angular-devkit/build-angular 17.3.8 17.3.9
fast-xml-parser 4.3.6 4.4.1
@aws-sdk/client-s3 3.540.0 3.651.1
@aws-sdk/client-ses 3.540.0 3.651.1
ws 8.16.0 8.18.0
puppeteer-core 22.6.1 22.15.0

Updates axios from 1.7.0 to 1.7.7

Release notes

Sourced from axios's releases.

Release v1.7.7

Release notes:

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

Release v1.7.6

Release notes:

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

Release v1.7.5

Release notes:

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

Release v1.7.4

Release notes:

Bug Fixes

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.7 (2024-08-31)

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

1.7.6 (2024-08-30)

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

1.7.5 (2024-08-23)

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

1.7.4 (2024-08-13)

Bug Fixes

... (truncated)

Commits
  • 5b8a826 chore(release): v1.7.7 (#6585)
  • 364993f fix(http): fixed support for IPv6 literal strings in url (#5731)
  • d198085 fix(fetch): fix stream handling in Safari by fallback to using a stream reade...
  • d584fcf chore(release): v1.7.6 (#6583)
  • bc03c6c chore(examples): fix module import (#6575)
  • df9889b fix(fetch): optimize signals composing logic; (#6582)
  • ee208cf chore(sponsor): update sponsor block (#6576)
  • 085f568 fix(fetch): fix content length calculation for FormData payload; (#6524)
  • 59cd6b0 chore(release): v1.7.5 (#6574)
  • 6700a8a fix(core): add the missed implementation of AxiosError#status property; (#6573)
  • Additional commits viewable in compare view

Updates typesense from 1.7.2 to 1.8.2

Release notes

Sourced from typesense's releases.

v1.8.2

  • Add types for image search 72b4154

typesense/typesense-js@v1.8.1...v1.8.2

v1.8.1

  • Expose Typesense in window 8b9ed0e

typesense/typesense-js@v1.8.0...v1.8.1

v1.8.0

  • Add ignore_not_found
  • Add support for conversations
  • Add nohits_queries
  • Add new search params to types
  • Fix types to allow for presets
  • Allow a custom httpAgent and httpsAgent to be passed in
  • Update dependencies
  • Disambiguate delete by query method singature types
  • Require node 18
  • Add support for facet_return_parent
  • Add support for stopwords
  • Update axios
  • Use webpack instead of gulp and browserify
  • ⚠️ Previous versions allowed the following method signature for deleting a single document by ID, due to mis-configured types:
typesenseClient
  .collections('collection')
  .documents()
  .delete(id.toString());

That was not the intended way and it was removed in this release. Please use the following method (from the docs) instead:

typesenseClient
  .collections('collection')
  .documents(id.toString())
  .delete()

Full Changelog: typesense/typesense-js@v1.7.2...v1.8.0

v1.8.0-7

  • Add support for conversations 51b191e
  • Add nohits_queries 277bc97

typesense/typesense-js@v1.8.0-6...v1.8.0-7

... (truncated)

Commits

Updates body-parser from 1.20.2 to 1.20.3

Release notes

Sourced from body-parser's releases.

1.20.3

What's Changed

Important

  • deps: [email protected]
  • add depth option to customize the depth level in the parser
  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity). Documentation

Other changes

New Contributors

Full Changelog: expressjs/body-parser@1.20.2...1.20.3

Changelog

Sourced from body-parser's changelog.

1.20.3 / 2024-09-10

  • deps: [email protected]
  • add depth option to customize the depth level in the parser
  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
Commits
Maintainer changes

This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.


Updates express from 4.19.2 to 4.21.0

Release notes

Sourced from express's releases.

4.21.0

What's Changed

New Contributors

Full Changelog: expressjs/express@4.20.0...4.21.0

4.20.0

What's Changed

Important

  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect

Other Changes

... (truncated)

Changelog

Sourced from express's changelog.

4.21.0 / 2024-09-11

4.20.0 / 2024-09-10

  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • add depth option to customize the depth level in the parser
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect
  • deps: [email protected]
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
Commits

Updates express from 4.19.2 to 4.21.0

Release notes

Sourced from express's releases.

4.21.0

What's Changed

New Contributors

Full Changelog: expressjs/express@4.20.0...4.21.0

4.20.0

What's Changed

Important

  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect

Other Changes

... (truncated)

Changelog

Sourced from express's changelog.

4.21.0 / 2024-09-11

4.20.0 / 2024-09-10

  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • add depth option to customize the depth level in the parser
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect
  • deps: [email protected]
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
Commits

Updates webpack from 5.91.0 to 5.94.0

Release notes

Sourced from webpack's releases.

v5.94.0

Bug Fixes

  • Added runtime condition for harmony reexport checked
  • Handle properly data/http/https protocols in source maps
  • Make bigint optimistic when browserslist not found
  • Move @​types/eslint-scope to dev deps
  • Related in asset stats is now always an array when no related found
  • Handle ASI for export declarations
  • Mangle destruction incorrect with export named default properly
  • Fixed unexpected asi generation with sequence expression
  • Fixed a lot of types

New Features

  • Added new external type "module-import"
  • Support webpackIgnore for new URL() construction
  • [CSS] @import pathinfo support

Security

  • Fixed DOM clobbering in auto public path

v5.93.0

Bug Fixes

  • Generate correct relative path to runtime chunks
  • Makes DefinePlugin quieter under default log level
  • Fixed mangle destructuring default in namespace import
  • Fixed consumption of eager shared modules for module federation
  • Strip slash for pretty regexp
  • Calculate correct contenthash for CSS generator options

New Features

  • Added the binary generator option for asset modules to explicitly keep source maps produced by loaders
  • Added the modern-module library value for tree shakable output
  • Added the overrideStrict option to override strict or non-strict mode for javascript modules

v5.92.1

Bug Fixes

  • Doesn't crash with an error when the css experiment is enabled and contenthash is used

v5.92.0

Bug Fixes

  • Correct tidle range's comutation for module federation
  • Consider runtime for pure expression dependency update hash
  • Return value in the subtractRuntime function for runtime logic

... (truncated)

Commits
  • eabf85d chore(release): 5.94.0
  • 955e057 security: fix DOM clobbering in auto public path
  • 9822387 test: fix
  • cbb86ed test: fix
  • 5ac3d7f fix: unexpected asi generation with sequence expression
  • 2411661 security: fix DOM clobbering in auto public path
  • b8c03d4 fix: unexpected asi generation with sequence expression
  • f46a03c revert: do not use heuristic fallback for "module-import"
  • 60f1898 fix: do not use heuristic fallback for "module-import"
  • 66306aa Revert "fix: module-import get fallback from externalsPresets"
  • Additional commits viewable in compare view

Updates @angular-devkit/build-angular from 17.3.8 to 17.3.9

Release notes

Sourced from @​angular-devkit/build-angular's releases.

v17.3.9

17.3.9 (2024-08-29)

@​angular-devkit/build-angular

Commit Description
fix - e2c5c034d clear context in Karma by default for single run executions
fix - 88501f3d5 upgrade webpack to 5.94.0
Changelog

Sourced from @​angular-devkit/build-angular's changelog.

17.3.9 (2024-08-29)

@​angular-devkit/build-angular

Commit Type Description
e2c5c034d fix clear context in Karma by default for single run executions
88501f3d5 fix upgrade webpack to 5.94.0

16.2.15 (2024-08-29)

@​angular-devkit/build-angular

Commit Type Description
f596a3d5d fix clear context in Karma by default for single run executions
56fa051bd fix upgrade webpack to 5.94.0

19.0.0-next.1 (2024-08-22)

Breaking Changes

@​angular-devkit/build-angular

  • The browserTarget option has been removed from the DevServer and ExtractI18n builders. buildTarget is to be used instead.

@​angular-devkit/core

  • The deprecated fileBuffer function is no longer available. Update your code to use stringToFileBuffer instead to maintain compatibility.

    Note: that this change does not affect application developers.

@​angular/build

  • The @angular/localize/init polyfill will no longer be added automatically to projects. To prevent runtime issues, ensure that this polyfill is manually included in the "polyfills" section of your "angular.json" file if your application relies on Angular localization features.

@​schematics/angular

Commit Type Description
7992218a9 fix remove declaration and sourceMap from default tsconfig

... (truncated)

Commits
  • e56adb0 release: cut the v17.3.9 release
  • e2c5c03 fix(@​angular-devkit/build-angular): clear context in Karma by default for sin...
  • 88501f3 fix(@​angular-devkit/build-angular): upgrade webpack to 5.94.0
  • See full diff in compare view

Updates fast-xml-parser from 4.3.6 to 4.4.1

Changelog

Sourced from fast-xml-parser's changelog.

Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.

4.5.0 / 2024-09-03

  • feat #666: ignoreAttributes support function, and array of string or regex (By ArtemM)

4.4.1 / 2024-07-28

  • v5 fix: maximum length limit to currency value
  • fix #634: build attributes with oneListGroup and attributesGroupName (#653)(By Andreas Naziris)
  • fix: get oneListGroup to work as expected for array of strings (#662)(By Andreas Naziris)

4.4.0 / 2024-05-18

  • fix #654: parse attribute list correctly for self closing stop node.
  • fix: validator bug when closing tag is not opened. (#647) (By Ryosuke Fukatani)
  • fix #581: typings; return type of tagValueProcessor & attributeValueProcessor (#582) (By monholm)

4.3.6 / 2024-03-16

4.3.5 / 2024-02-24

  • code for v5 is added for experimental use

4.3.4 / 2024-01-10

  • fix: Don't escape entities in CDATA sections (#633) (By wackbyte)

4.3.3 / 2024-01-10

  • Remove unnecessary regex

4.3.2 / 2023-10-02

4.3.1 / 2023-09-24

  • revert back "Fix typings for builder and parser to make return type generic" to avoid failure of existing projects. Need to decide a common approach.

4.3.0 / 2023-09-20

  • Fix stopNodes to work with removeNSPrefix (#607) (#608) (By [Craig Andrews]https:/candrews))
  • Fix #610 ignore properties set to Object.prototype
  • Fix typings for builder and parser to make return type generic (By Sarah Dayan)

4.2.7 / 2023-07-30

  • Fix: builder should set text node correctly when only textnode is present (#589) (By qianqing)
  • Fix: Fix for null and undefined attributes when building xml (#585) (#598). A null or undefined value should be ignored. (By Eugenio Ceschia)

4.2.6 / 2023-07-17

4.2.5 / 2023-06-22

  • change code implementation

4.2.4 / 2023-06-06

  • fix security bug

... (truncated)

Commits
  • d40e29c update package detail and browser bundles
  • d0bfe8a fix maxlength for currency value
  • 2c14fcf Update bug-report-or-unexpected-output.md
  • acf610f fix #634: build attributes with oneListGroup and attributesGroupName (#653)
  • 931e910 fix: get oneListGroup to work as expected for array of strings (#662)
  • b8e40c8 Update ISSUE_TEMPLATE.md

…pdates

Bumps the npm_and_yarn group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [axios](https:/axios/axios) | `1.7.0` | `1.7.7` |
| [typesense](https:/typesense/typesense-js) | `1.7.2` | `1.8.2` |
| [body-parser](https:/expressjs/body-parser) | `1.20.2` | `1.20.3` |
| [express](https:/expressjs/express) | `4.19.2` | `4.21.0` |
| [webpack](https:/webpack/webpack) | `5.91.0` | `5.94.0` |
| [@angular-devkit/build-angular](https:/angular/angular-cli) | `17.3.8` | `17.3.9` |
| [fast-xml-parser](https:/NaturalIntelligence/fast-xml-parser) | `4.3.6` | `4.4.1` |
| [@aws-sdk/client-s3](https:/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.540.0` | `3.651.1` |
| [@aws-sdk/client-ses](https:/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.540.0` | `3.651.1` |
| [ws](https:/websockets/ws) | `8.16.0` | `8.18.0` |
| [puppeteer-core](https:/puppeteer/puppeteer) | `22.6.1` | `22.15.0` |



Updates `axios` from 1.7.0 to 1.7.7
- [Release notes](https:/axios/axios/releases)
- [Changelog](https:/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.0...v1.7.7)

Updates `typesense` from 1.7.2 to 1.8.2
- [Release notes](https:/typesense/typesense-js/releases)
- [Commits](typesense/typesense-js@v1.7.2...v1.8.2)

Updates `body-parser` from 1.20.2 to 1.20.3
- [Release notes](https:/expressjs/body-parser/releases)
- [Changelog](https:/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](expressjs/body-parser@1.20.2...1.20.3)

Updates `express` from 4.19.2 to 4.21.0
- [Release notes](https:/expressjs/express/releases)
- [Changelog](https:/expressjs/express/blob/4.21.0/History.md)
- [Commits](expressjs/express@4.19.2...4.21.0)

Updates `express` from 4.19.2 to 4.21.0
- [Release notes](https:/expressjs/express/releases)
- [Changelog](https:/expressjs/express/blob/4.21.0/History.md)
- [Commits](expressjs/express@4.19.2...4.21.0)

Updates `webpack` from 5.91.0 to 5.94.0
- [Release notes](https:/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.94.0)

Updates `@angular-devkit/build-angular` from 17.3.8 to 17.3.9
- [Release notes](https:/angular/angular-cli/releases)
- [Changelog](https:/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@17.3.8...17.3.9)

Updates `fast-xml-parser` from 4.3.6 to 4.4.1
- [Release notes](https:/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https:/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.3.6...v4.4.1)

Updates `@aws-sdk/client-s3` from 3.540.0 to 3.651.1
- [Release notes](https:/aws/aws-sdk-js-v3/releases)
- [Changelog](https:/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https:/aws/aws-sdk-js-v3/commits/v3.651.1/clients/client-s3)

Updates `@aws-sdk/client-ses` from 3.540.0 to 3.651.1
- [Release notes](https:/aws/aws-sdk-js-v3/releases)
- [Changelog](https:/aws/aws-sdk-js-v3/blob/main/clients/client-ses/CHANGELOG.md)
- [Commits](https:/aws/aws-sdk-js-v3/commits/v3.651.1/clients/client-ses)

Updates `path-to-regexp` from 0.1.7 to 0.1.10
- [Release notes](https:/pillarjs/path-to-regexp/releases)
- [Changelog](https:/pillarjs/path-to-regexp/blob/master/History.md)
- [Commits](pillarjs/path-to-regexp@v0.1.7...v0.1.10)

Updates `send` from 0.18.0 to 0.19.0
- [Release notes](https:/pillarjs/send/releases)
- [Changelog](https:/pillarjs/send/blob/master/HISTORY.md)
- [Commits](pillarjs/send@0.18.0...0.19.0)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https:/expressjs/serve-static/releases)
- [Changelog](https:/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `ws` from 8.16.0 to 8.18.0
- [Release notes](https:/websockets/ws/releases)
- [Commits](websockets/ws@8.16.0...8.18.0)

Updates `puppeteer-core` from 22.6.1 to 22.15.0
- [Release notes](https:/puppeteer/puppeteer/releases)
- [Changelog](https:/puppeteer/puppeteer/blob/main/release-please-config.json)
- [Commits](puppeteer/puppeteer@puppeteer-core-v22.6.1...puppeteer-core-v22.15.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: typesense
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: body-parser
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: express
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: express
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: fast-xml-parser
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@aws-sdk/client-s3"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@aws-sdk/client-ses"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: path-to-regexp
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: send
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: puppeteer-core
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 14, 2024
@julianpoy julianpoy merged commit 0349f52 into master Sep 14, 2024
4 checks passed
@julianpoy julianpoy deleted the dependabot/npm_and_yarn/npm_and_yarn-0b446e706d branch September 14, 2024 19:01
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant