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 glob-parent and @angular/compiler-cli in /examples/angular #100

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps glob-parent to 5.1.2 and updates ancestor dependency @angular/compiler-cli. These dependencies need to be updated together.

Updates glob-parent from 3.1.0 to 5.1.2

Release notes

Sourced from glob-parent's releases.

v5.1.2

Bug Fixes

v5.1.1

Bug Fixes

v5.1.0

Features

  • add flipBackslashes option to disable auto conversion of slashes (closes #24) (#25) (eecf91d)

v5.0.0

⚠ BREAKING CHANGES

  • Drop support for node <6 & bump dependencies

Miscellaneous Chores

  • Drop support for node <6 & bump dependencies (896c0c0)

v4.0.0

⚠ BREAKING CHANGES

  • question marks are valid path characters on Windows so avoid flagging as a glob when alone
  • Update is-glob dependency

Features

  • hoist regexps and strings for performance gains (4a80667)
  • question marks are valid path characters on Windows so avoid flagging as a glob when alone (2a551dd)
  • Update is-glob dependency (e41fcd8)
Changelog

Sourced from glob-parent's changelog.

5.1.2 (2021-03-06)

Bug Fixes

6.0.2 (2021-09-29)

Bug Fixes

6.0.1 (2021-07-20)

Bug Fixes

6.0.0 (2021-05-03)

⚠ BREAKING CHANGES

  • Correct mishandled escaped path separators (#34)
  • upgrade scaffold, dropping node <10 support

Bug Fixes

  • Correct mishandled escaped path separators (#34) (32f6d52), closes #32

Miscellaneous Chores

  • upgrade scaffold, dropping node <10 support (e83d0c5)

5.1.1 (2021-01-27)

Bug Fixes

5.1.0 (2021-01-27)

Features

  • add flipBackslashes option to disable auto conversion of slashes (closes #24) (#25) (eecf91d)

5.0.0 (2021-01-27)

⚠ BREAKING CHANGES

  • Drop support for node <6 & bump dependencies

... (truncated)

Commits
  • eb2c439 chore: update changelog
  • 12bcb6c chore: release 5.1.2
  • f923116 fix: eliminate ReDoS (#36)
  • 0b014a7 chore: add JSDoc returns information (#33)
  • 2b24ebd chore: generate initial changelog
  • 9b6e874 chore: release 5.1.1
  • 749c35e ci: try wrapping the JOB_ID in a string
  • 5d39def ci: attempt to switch to published coveralls
  • 0b5b37f ci: put the npm step back in for only Windows
  • 473f5d8 ci: update azure build images
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by phated, a new releaser for glob-parent since your current version.


Updates @angular/compiler-cli from 7.2.16 to 15.2.7

Release notes

Sourced from @​angular/compiler-cli's releases.

v15.2.7

15.2.7 (2023-04-12)

compiler

Commit Description
fix - b0c1a90f55 Produce diagnositc if directive used in host binding is not exported (#49792)

compiler-cli

Commit Description
fix - a40529af2e Catch FatalDiagnosticError during template type checking (#49792)

core

Commit Description
fix - 702ec90110 When using setInput, mark view dirty in same way as markForCheck (#49747)

Special Thanks

Alan Agius, Andrew Kushnir, Andrew Scott, Kristiyan Kostadinov, Matthieu Riegler and Nikola Kološnjaji

v15.2.6

15.2.6 (2023-04-05)

core

Commit Description
feat - d9efa1b0d7 change the URL sanitization to only block javascript: URLs (#49659)

router

Commit Description
fix - cad7274ef9 create correct URL relative to path with empty child (#49691)
fix - 9b61379096 Ensure initial navigation clears current navigation when blocking (#49572)

Special Thanks

Andrew Scott, Guillaume Weghsteen, John Manners, Johnny Gérard, Matthieu Riegler, Robin Richtsfeld, Sandra Limacher, Sarthak Thakkar, Vinit Neogi and vikram menon

v15.2.5

15.2.5 (2023-03-29)

common

Commit Description
fix - ca5acadb78 invalid ImageKit transformation (#49201)

compiler

Commit Description
fix - 077f6b4674 do not unquote CSS values (#49460)
fix - c3cff35869 handle trailing comma in object literal (#49535)

core

Commit Description
fix - d201fc2dec set style property value to empty string instead of an invalid value (#49460)

router

... (truncated)

Changelog

Sourced from @​angular/compiler-cli's changelog.

15.2.7 (2023-04-12)

compiler

Commit Type Description
b0c1a90f55 fix Produce diagnositc if directive used in host binding is not exported (#49792)

compiler-cli

Commit Type Description
a40529af2e fix Catch FatalDiagnosticError during template type checking (#49792)

core

Commit Type Description
702ec90110 fix When using setInput, mark view dirty in same way as markForCheck (#49747)

Special Thanks

Alan Agius, Andrew Kushnir, Andrew Scott, Kristiyan Kostadinov, Matthieu Riegler and Nikola Kološnjaji

13.4.0 (2023-04-06)

common

Commit Type Description
ae34dbca1b feat Backport NgOptimizedImage to v13

Special Thanks

Alex Castle and Paul Gschwendtner

16.0.0-next.7 (2023-04-05)

Breaking Changes

core

  • QueryList.filter now supports type guard functions, which will result in type narrowing. Previously if you used type guard functions, it resulted in no changes to the return type. Now the type would be narrowed, which might require updates to the application code that relied on the old behavior.
  • The ReflectiveInjector and related symbols were removed. Please update the code to avoid references to the ReflectiveInjector symbol. Use Injector.create as a replacement to create an injector instead.

platform-browser

  • The deprecated BrowserTransferStateModule was removed, since it's no longer needed. The TransferState class can be injected without providing the module. The BrowserTransferStateModule was empty starting from v14 and you can just remove the reference to that module from your applications.

core

Commit Type Description
b2327f4df1 feat Allow typeguards on QueryList.filter (#48042)
b35fa73968 feat change the URL sanitization to only block javascript: URLs (#49659)
061f3d1086 feat Drop public factories property for IterableDiffers : Breaking change (#49598)
a5f1737d1c feat expose onDestroy on ApplicationRef (#49677)
aad05ebeb4 feat support usage of non-experimental decorators with TypeScript 5.0 (#49492)
df1dfc4c17 fix make sure that lifecycle hooks are not tracked (#49701)
a4e749ffca fix When using setInput, mark view dirty in same was as markForCheck (#49711)
3b863ddc1e refactor Remove ReflectiveInjector symbol (#48103)

http

| Commit | Type | Description |

... (truncated)

Commits
  • b0c1a90 fix(compiler): Produce diagnositc if directive used in host binding is not ex...
  • a40529a fix(compiler-cli): Catch FatalDiagnosticError during template type checking (...
  • 9937508 refactor(compiler-cli): remove unused class decorator downlevel code (#49351)
  • 04d8b6c fix(compiler-cli): do not persist component analysis if template/styles are m...
  • 86d4016 refactor(compiler): remove remaining usage of getMutableClone (#49070)
  • 0cf1116 fix(compiler-cli): incorrectly detecting forward refs when symbol already exi...
  • d014503 fix(language-service): generate forwardRef for same file imports (#48898)
  • 59c0106 refactor(compiler): indicate whether potential import is forward reference (#...
  • 9250afb refactor(compiler-cli): Export the interface PluginCompilerHost for 1p use. (...
  • 06e161f fix(compiler): incorrect code when non-null assertion is used after a safe ac...
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 [glob-parent](https://github.com/gulpjs/glob-parent) to 5.1.2 and updates ancestor dependency [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli). These dependencies need to be updated together.


Updates `glob-parent` from 3.1.0 to 5.1.2
- [Release notes](https://github.com/gulpjs/glob-parent/releases)
- [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
- [Commits](gulpjs/glob-parent@v3.1.0...v5.1.2)

Updates `@angular/compiler-cli` from 7.2.16 to 15.2.7
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/15.2.7/packages/compiler-cli)

---
updated-dependencies:
- dependency-name: glob-parent
  dependency-type: indirect
- dependency-name: "@angular/compiler-cli"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 18, 2023
@verena-ifx verena-ifx merged commit dd42557 into master Apr 18, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/examples/angular/glob-parent-and-angular/compiler-cli-5.1.2 branch April 18, 2023 13:36
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