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

Bump json5, aurelia-webpack-plugin, css-loader, extract-text-webpack-plugin, file-loader, loader-utils, html-webpack-plugin, to-string-loader, ts-loader and webpack in /src/NSwag.Sample.NetCoreAurelia #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 22, 2023

Bumps json5 to 1.0.2 and updates ancestor dependencies json5, aurelia-webpack-plugin, css-loader, extract-text-webpack-plugin, file-loader, loader-utils, html-webpack-plugin, to-string-loader, ts-loader and webpack. These dependencies need to be updated together.

Updates json5 from 0.5.1 to 1.0.2

Release notes

Sourced from json5's releases.

v1.0.2

  • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295). This has been backported to v1. (#298)

v1.0.1

This release includes a bug fix and minor change.

  • Fix: parse throws on unclosed objects and arrays.

  • New: package.json5 has been removed until an easier way to keep it in sync with package.json is found.

v1.0.0

This release includes major internal changes and public API enhancements.

  • Major JSON5 officially supports Node.js v4 and later. Support for Node.js v0.10 and v0.12 have been dropped.

  • New: Unicode property names and Unicode escapes in property names are supported. (#1)

  • New: stringify outputs trailing commas in objects and arrays when a space option is provided. (#66)

  • New: JSON5 allows line and paragraph separator characters (U+2028 and U+2029) in strings in order to be compatible with JSON. However, ES5 does not allow these characters in strings, so JSON5 gives a warning when they are parsed and escapes them when they are stringified. (#70)

  • New: stringify accepts an options object as its second argument. The supported options are replacer, space, and a new quote option that specifies the quote character used in strings. (#71)

  • New: The CLI supports STDIN and STDOUT and adds --out-file, --space, and --validate options. See json5 --help for more information. (#72, #84, and #108)

  • New: In addition to the white space characters space \t, \v, \f, \n, \r, and \xA0, the additional white space characters \u2028, \u2029, and all other characters in the Space Separator Unicode category are allowed.

  • New: In addition to the character escapes \', \", \\, \b, \f, \n, \r, and \t, the additional character escapes \v and \0, hexadecimal escapes like \x0F, and unnecessary escapes like \a are allowed in string values and string property names.

  • New: stringify outputs strings with single quotes by default but intelligently uses double quotes if there are more single quotes than double quotes inside the string. (i.e. stringify('Stay here.') outputs 'Stay here.' while stringify('Let\'s go.') outputs "Let's go.")

... (truncated)

Changelog

Sourced from json5's changelog.

Unreleased [code, diff]

v2.2.3 [code, diff]

  • Fix: json5@2.2.3 is now the 'latest' release according to npm instead of v1.0.2. (#299)

v2.2.2 [code, diff]

  • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).

v2.2.1 [code, diff]

v2.2.0 [code, diff]

  • New: Accurate and documented TypeScript declarations are now included. There is no need to install @types/json5. (#236, #244)

v2.1.3 [code, diff]

  • Fix: An out of memory bug when parsing numbers has been fixed. (#228, #229)

v2.1.2 [code, diff]

... (truncated)

Commits

Updates aurelia-webpack-plugin from 1.2.2 to 5.0.5

Release notes

Sourced from aurelia-webpack-plugin's releases.

5.0.4

What's Changed

New Contributors

Full Changelog: aurelia/webpack-plugin@v5.0.3...5.0.4

5.0.3

The plugin now works with webpack v5, all deprecation warnings also have been resolved to prepare for any future major changes from webpack. Typings are also added so that it's easier to get intellisense for all the options/features the plugin has to offer. Added tests to prevent unwanted breakage with different webpack plugins/ aurelia packages.

4.0.0

Removed the runtime insertion hack from the Webpack 3 and below era, wherein only the first "entry" item had the runtime appended to it. This was originally implemented to avoid adding the runtime to the secondary "vendor" entry. Using "vendor" entry points which is no longer recommended for Webpack 4 and up.

3.0.0

Upgrade the RC to release.

3.0.0-rc.1

aurelia-webpack-plugin 3.0.0-rc.1

We've updated our Webpack plugin to support Webpack 4.0! Please note that because of breaking changes in Webpack's plugin model, we cannot support Webpack 2.0/3.0 with this plugin. If you cannot migrate to Webpack 4.0, then you will need to continue using aurelia-webpack-plugin 2.0.0-rc.5.

2.0.0-rc.5

fix(webpack): ConcatenatedModulePlugin results in an exception.

2.0.0-rc.4

  • fix(at-loader): Incompatibility with awesome-typescript-loader

2.0.0-rc.3

aurelia-webpack-plugin 2.0.0-rc.3

Features

  • support Webpack 3 ModuleConcatenationPlugin
  • support resources inside @​inlineView

Bug Fixes

  • recognize router-view attributes
  • better control over entry sequence
  • chunk not supported by ModuleDependenciesPlugin
  • no default entrypoint with DLLPlugin
  • use browser-pal for electron-renderer (#100)

2.0.0-rc.2

aurelia-webpack-plugin 2.0.0-rc.2

... (truncated)

Changelog

Sourced from aurelia-webpack-plugin's changelog.

5.0.4

Fix webpack serialization when a component module is imported via the normal way

5.0.3

Fix webpack v5.52.0 error with mini-css-extract-plugin

4.0.0

Remove the runtime insertion hack from the Webpack 3 and below era, wherein only the first "entry" item had the runtime appended to it. This was originally implemented to avoid adding the runtime to the secondary "vendor" entry. Using "vendor" entry points which is no longer recommended for Webpack 4 and up.

3.0.0

  • Promote the RC to release.

3.0.0-rc.1

Supports only Webpack 4.x

2.0.0-rc.3

Features

  • support Webpack 3 ModuleConcatenationPlugin
  • support resources inside @​inlineView

Bug Fixes

  • recognize router-view attributes
  • better control over entry sequence
  • chunk not supported by ModuleDependenciesPlugin
  • no default entrypoint with DLLPlugin
  • use browser-pal for electron-renderer (#100)

2.0.0-rc.2

Features

  • flag to opt-out of IE support
  • support module.loaders

Bug Fixes

  • errors might crash SubFolderPlugin
  • compat with IE < 11
  • support more CommonJS import styles

2.0.0-rc.1

... (truncated)

Commits
  • 12c8351 chore: prepare release 5.0.5
  • a10d632 fix(dep): use internal copy of bundle-loader (#216)
  • c1cc84b chore: upgrade deps (#208)
  • 4d486c9 chore(release): prepare release 5.0.4
  • 6a08665 fix(serialization): patch webpack serialization to handle [preserveModuleName]
  • c41ce6c chore: add karma test for file cache
  • 5657c74 fix: pnpm test ci config
  • bc14049 fix plugin when cache not set
  • 906e25a serialize preserveModuleName on NormalModule
  • 4e0e059 chore(tests): try fix pnpm test again
  • Additional commits viewable in compare view

Updates css-loader from 0.25.0 to 6.7.3

Release notes

Sourced from css-loader's releases.

v6.7.3

6.7.3 (2022-12-14)

Bug Fixes

v6.7.2

6.7.2 (2022-11-13)

Bug Fixes

  • css modules generation with inline syntax (#1480) (2f4c273)

v6.7.1

6.7.1 (2022-03-08)

Bug Fixes

v6.7.0

6.7.0 (2022-03-04)

Features

v6.6.0

6.6.0 (2022-02-02)

Features

  • added the hashStrategy option (ca4abce)

v6.5.1

6.5.1 (2021-11-03)

Bug Fixes

  • regression with unicode characters in locals (b7a8441)
  • runtime path generation (#1393) (feafea8)

v6.5.0

... (truncated)

Changelog

Sourced from css-loader's changelog.

6.7.3 (2022-12-14)

Bug Fixes

6.7.2 (2022-11-13)

Bug Fixes

  • css modules generation with inline syntax (#1480) (2f4c273)

6.7.1 (2022-03-08)

Bug Fixes

6.7.0 (2022-03-04)

Features

6.6.0 (2022-02-02)

Features

  • added the hashStrategy option (ca4abce)

6.5.1 (2021-11-03)

Bug Fixes

  • regression with unicode characters in locals (b7a8441)
  • runtime path generation (#1393) (feafea8)

6.5.0 (2021-10-26)

Features

  • support absolute URL in url() when experiments.buildHttp enabled (#1389) (8946be4)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for css-loader since your current version.


Updates extract-text-webpack-plugin from 2.0.0-beta.4 to 2.1.2

Release notes

Sourced from extract-text-webpack-plugin's releases.

v2.1.2

Bug Fixes

Release v2.1.1

2.1.1 (2017-06-08)

Bug Fixes

  • add a not null check for the content property before throwing error (#404) (58dd5d3)
  • loader: rm unnecessary this.cacheable (caching) (#530) (c3cb091)
  • don't extract from common async chunks (#508) (e595417)
  • validation schema (schema-utils) (#527) (dfeb347)

v2.1.0 - Filename customization

  • The plugin filename accepts a function now. c9a19ad, closes #423

Release v2.0.0

No release notes provided.

v2.0.0 - Release Candidate 3

  • Fix - ajv is marked as a dependency correctly. #381
  • Feature - The plugin accepts ignoreOrder option. This is important to enable if you use CSS Modules. #166
  • Feature - New plugin syntax (consistent with webpack core naming):
use: ExtractTextPlugin.extract({
  fallback: "style-loader",
  use: "css-loader"
})

So go with use instead of loader and fallback over fallbackLoader. The old names still work, but they will give warnings so you remember to fix the naming.


If you have time, please have a look at #366 and #385. Those issues need more information to be fixed for the final release.

v2.0.0-rc.1

2.0.0-rc.1 (2017-01-28)

Bug Fixes

  • options: pass proper loader options to children (#266) (6abf42d)
Changelog

Sourced from extract-text-webpack-plugin's changelog.

2.1.2 (2017-06-08)

2.1.1 (2017-06-08)

Bug Fixes

  • add a not null check for the content property before throwing error (#404) (58dd5d3)
  • loader: rm unnecessary this.cacheable (caching) (#530) (c3cb091)
  • don't extract from common async chunks (#508) (e595417)
  • validation schema (schema-utils) (#527) (dfeb347)

2.1.0 (2017-03-05)

Features

  • The plugin filename accepts a function now. c9a19ad, closes #423

2.0.0 (2017-02-24)

2.0.0-rc.2 (2017-01-28)

Bug Fixes

  • schema: allow extract to accept omit/remove flags (8ce93d5), closes #371
  • schema: connect loader schema with the code properly (03bb4aa)
  • schema: emit proper error messages (70cbd4b)

Features

  • errors: show nicer errors if there are extra fields (76a171d)

2.0.0-rc.1 (2017-01-28)

Bug Fixes

... (truncated)

Commits
  • e81b883 chore(release): 2.1.2
  • 8766821 fix(index): resolve schemas relative to __dirname (#536)
  • 0271b39 chore(release): 2.1.1
  • e595417 fix: don't extract from common async chunks (#508)
  • a8ae003 chore(package): fix broken links && update devDependencies (#531)
  • c3cb091 fix(loader): rm unnecessary this.cacheable (caching) (#530)
  • eaa5236 docs: rm RELEASE.md (#532)
  • 671e35e chore(package): update webpack-sources v0.1.0...1.0.1 (#526)
  • dfeb347 fix: validation schema (schema-utils) (#527)
  • d0e88d0 docs(README): add lead-in description (#517)
  • Additional commits viewable in compare view

Updates file-loader from 0.9.0 to 6.2.0

Release notes

Sourced from file-loader's releases.

v6.2.0

6.2.0 (2020-10-27)

Features

  • added the sourceFilename property to asset info with original filename (#393) (654e0d6)

Bug Fixes

  • immutable flag when the name option have hash in query string (#392) (381d8bd)

v6.1.1

6.1.1 (2020-10-09)

Chore

  • update schema-utils

v6.1.0

6.1.0 (2020-08-31)

Features

v6.0.0

6.0.0 (2020-03-17)

⚠ BREAKING CHANGES

v5.1.0

5.1.0 (2020-02-19)

Features

  • support the query template for the name option (#366) (cd8698b)

v5.0.2

5.0.2 (2019-11-25)

Chore

... (truncated)

Changelog

Sourced from file-loader's changelog.

6.2.0 (2020-10-27)

Features

  • added the sourceFilename property to asset info with original filename (#393) (654e0d6)

Bug Fixes

  • immutable flag when the name option have hash in query string (#392) (381d8bd)

6.1.1 (2020-10-09)

Chore

  • update schema-utils

6.1.0 (2020-08-31)

Features

6.0.0 (2020-03-17)

⚠ BREAKING CHANGES

5.1.0 (2020-02-19)

Features

  • support the query template for the name option (#366) (cd8698b)

5.0.2 (2019-11-25)

Chore

  • add the funding field in package.json

5.0.1 (2019-11-25)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for file-loader since your current version.


Updates loader-utils from 1.1.0 to 1.4.2

Release notes

Sourced from loader-utils's releases.

v1.4.2

1.4.2 (2022-11-11)

Bug Fixes

v1.4.1

1.4.1 (2022-11-07)

Bug Fixes

v1.4.0

1.4.0 (2020-02-19)

Features

  • the resourceQuery is passed to the interpolateName method (#163) (cd0e428)

v1.3.0

1.3.0 (2020-02-19)

Features

  • support the [query] template for the interpolatedName method (#162) (469eeba)

v1.2.3

1.2.3 (2018-12-27)

Bug Fixes

  • interpolateName: don't interpolated hashType without hash or contenthash (#140) (3528fd9)

v1.2.2

1.2.2 (2018-12-27)

Bug Fixes

... (truncated)

Changelog

Sourced from loader-utils's changelog.

1.4.2 (2022-11-11)

Bug Fixes

1.4.1 (2022-11-07)

Bug Fixes

1.4.0 (2020-02-19)

Features

  • the resourceQuery is passed to the interpolateName method (#163) (cd0e428)

1.3.0 (2020-02-19)

Features

  • support the [query] template for the interpolatedName method (#162) (469eeba)

1.2.3 (2018-12-27)

Bug Fixes

  • interpolateName: don't interpolated hashType without hash or contenthash (#140) (3528fd9)

1.2.2 (2018-12-27)

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for loader-utils since your current version.


Updates html-webpack-plugin from 2.30.1 to 5.5.1

Changelog

Sourced from html-webpack-plugin's changelog.

5.5.1 (2023-04-15)

Bug Fixes

  • perf: defer loading of pretty-error to improve startup time (#1789) (988709d)

5.5.0 (2021-10-25)

Features

  • Support type=module via scriptLoading option (1e42625), closes #1663

5.4.0 (2021-10-15)

Features

5.3.2 (2021-06-22)

Bug Fixes

  • update lodash and pretty error (9c7fba0

5.3.1 (2021-03-09)

Bug Fixes

  • remove loader-utils from plugin core (82d0ee8)

5.3.0 (2021-03-07)

Features

  • allow to modify the interpolation options in webpack config (d654f5b)
  • drop loader-utils dependency (41d7a50)

5.2.0 (2021-02-19)

Features

5.1.0 (2021-02-12)

... (truncated)

Commits
  • 706a160 chore(release): 5.5.1
  • 988709d fix(perf): defer loading of pretty-error to improve startup time (#1789)
  • d5ce5a8 Update README.md
  • 2e3ffbf Added strict-csp to the list of plugins
  • 9c9786a chore: update workflow configuration
  • 873d75b chore(release): 5.5.0
  • ddeb774 chore: update examples
  • 1e42625 feat: Support type=module via scriptLoading option
  • 7d3645b Bump pretty-error to 4.0.0 to fix transitive vuln for ansi-regex CVE-2021-3807
  • 79be779 [chore] changes actions to run on pull_requests
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for html-webpack-plugin since your current version.


Updates to-string-loader from 1.1.5 to 1.2.0

Commits

Updates ts-loader from 0.8.2 to 9.4.2

Release notes

Sourced from ts-loader's releases.

v9.4.2

9.4.1

v9.4.0

v9.3.1

v9.3.0

v9.2.9

v9.2.8

v9.2.7

v9.2.6

v9.2.5

v9.2.4

v9.2.3

v9.2.2

v9.2.1

v9.2.0

v9.1.2

v9.1.1

... (truncated)

Changelog

Sourced from ts-loader's changelog.

9.4.2

9.4.1

v9.4.0

v9.3.1

v9.3.0

v9.2.9

v9.2.8

v9.2.7

v9.2.6

v9.2.5

v9.2.4

v9.2.3

…plugin, file-loader, loader-utils, html-webpack-plugin, to-string-loader, ts-loader and webpack

Bumps [json5](https://github.com/json5/json5) to 1.0.2 and updates ancestor dependencies [json5](https://github.com/json5/json5), [aurelia-webpack-plugin](https://github.com/aurelia/webpack-plugin), [css-loader](https://github.com/webpack-contrib/css-loader), [extract-text-webpack-plugin](https://github.com/webpack-contrib/extract-text-webpack-plugin), [file-loader](https://github.com/webpack-contrib/file-loader), [loader-utils](https://github.com/webpack/loader-utils), [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin), [to-string-loader](https://github.com/gajus/to-string-loader), [ts-loader](https://github.com/TypeStrong/ts-loader) and [webpack](https://github.com/webpack/webpack). These dependencies need to be updated together.


Updates `json5` from 0.5.1 to 1.0.2
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v0.5.1...v1.0.2)

Updates `aurelia-webpack-plugin` from 1.2.2 to 5.0.5
- [Release notes](https://github.com/aurelia/webpack-plugin/releases)
- [Changelog](https://github.com/aurelia/webpack-plugin/blob/master/doc/CHANGELOG.md)
- [Commits](aurelia/webpack-plugin@1.2.2...5.0.5)

Updates `css-loader` from 0.25.0 to 6.7.3
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v0.25.0...v6.7.3)

Updates `extract-text-webpack-plugin` from 2.0.0-beta.4 to 2.1.2
- [Release notes](https://github.com/webpack-contrib/extract-text-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/extract-text-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/extract-text-webpack-plugin@v2.0.0-beta.4...v2.1.2)

Updates `file-loader` from 0.9.0 to 6.2.0
- [Release notes](https://github.com/webpack-contrib/file-loader/releases)
- [Changelog](https://github.com/webpack-contrib/file-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/file-loader@v0.9.0...v6.2.0)

Updates `loader-utils` from 1.1.0 to 1.4.2
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.1.0...v1.4.2)

Updates `html-webpack-plugin` from 2.30.1 to 5.5.1
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v2.30.1...v5.5.1)

Updates `to-string-loader` from 1.1.5 to 1.2.0
- [Release notes](https://github.com/gajus/to-string-loader/releases)
- [Commits](https://github.com/gajus/to-string-loader/commits)

Updates `ts-loader` from 0.8.2 to 9.4.2
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v0.8.2...v9.4.2)

Updates `webpack` from 2.1.0-beta.25 to 5.80.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v2.1.0-beta.25...v5.80.0)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
- dependency-name: aurelia-webpack-plugin
  dependency-type: direct:development
- dependency-name: css-loader
  dependency-type: direct:development
- dependency-name: extract-text-webpack-plugin
  dependency-type: direct:development
- dependency-name: file-loader
  dependency-type: direct:development
- dependency-name: loader-utils
  dependency-type: indirect
- dependency-name: html-webpack-plugin
  dependency-type: direct:development
- dependency-name: to-string-loader
  dependency-type: direct:development
- dependency-name: ts-loader
  dependency-type: direct:development
- dependency-name: webpack
  dependency-type: direct:development
...

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 Apr 22, 2023
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