Skip to content

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Mar 22, 2023

This PR contains the following updates:

Package Type Update Change
@ampproject/remapping dependencies patch 2.2.0 -> 2.2.1
@ampproject/remapping devDependencies patch 2.2.0 -> 2.2.1
@typescript-eslint/eslint-plugin devDependencies minor 5.57.1 -> 5.58.0
@typescript-eslint/parser devDependencies minor 5.57.1 -> 5.58.0
esbuild optionalDependencies patch 0.17.15 -> 0.17.16
esbuild devDependencies patch 0.17.15 -> 0.17.16
esbuild-wasm dependencies patch 0.17.15 -> 0.17.16
esbuild-wasm devDependencies patch 0.17.15 -> 0.17.16
eslint (source) devDependencies minor 8.37.0 -> 8.38.0
postcss-loader dependencies patch 7.2.3 -> 7.2.4
postcss-loader devDependencies patch 7.2.3 -> 7.2.4
resolve dependencies patch 1.22.1 -> 1.22.2
sass dependencies minor 1.60.0 -> 1.61.0
sass devDependencies minor 1.60.0 -> 1.61.0
semver dependencies minor 7.3.8 -> 7.4.0
semver devDependencies minor 7.3.8 -> 7.4.0
terser (source) dependencies patch 5.16.8 -> 5.16.9
terser (source) devDependencies patch 5.16.8 -> 5.16.9
webpack devDependencies minor 5.77.0 -> 5.78.0
webpack dependencies minor 5.77.0 -> 5.78.0

Release Notes

ampproject/remapping

v2.2.1

Compare Source

Full Changelog: ampproject/remapping@v2.2.0...v2.2.1

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.58.0

Compare Source

Bug Fixes
  • eslint-plugin: [unified-signatures] allow overloads with different named and different number of parameters (#​6877) (939d665)
Features

5.57.1 (2023-04-03)

Bug Fixes
  • eslint-plugin: [strict-boolean-expressions] support mixed enums in allowNullableEnum option (#​6740) (49be8a8)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.58.0

Compare Source

Bug Fixes
  • update getLib for new TypeScript targets ES2021, ES2022 (#​6782) (1c04664)

5.57.1 (2023-04-03)

Note: Version bump only for package @​typescript-eslint/parser

evanw/esbuild

v0.17.16

Compare Source

  • Fix CSS nesting transform for triple-nested rules that start with a combinator (#​3046)

    This release fixes a bug with esbuild where triple-nested CSS rules that start with a combinator were not transformed correctly for older browsers. Here's an example of such a case before and after this bug fix:

    /* Original input */
    .a {
      color: red;
      > .b {
        color: green;
        > .c {
          color: blue;
        }
      }
    }
    
    /* Old output (with --target=chrome90) */
    .a {
      color: red;
    }
    .a > .b {
      color: green;
    }
    .a .b > .c {
      color: blue;
    }
    
    /* New output (with --target=chrome90) */
    .a {
      color: red;
    }
    .a > .b {
      color: green;
    }
    .a > .b > .c {
      color: blue;
    }
  • Support --inject with a file loaded using the copy loader (#​3041)

    This release now allows you to use --inject with a file that is loaded using the copy loader. The copy loader copies the imported file to the output directory verbatim and rewrites the path in the import statement to point to the copied output file. When used with --inject, this means the injected file will be copied to the output directory as-is and a bare import statement for that file will be inserted in any non-copy output files that esbuild generates.

    Note that since esbuild doesn't parse the contents of copied files, esbuild will not expose any of the export names as usable imports when you do this (in the way that esbuild's --inject feature is typically used). However, any side-effects that the injected file has will still occur.

eslint/eslint

v8.38.0

Compare Source

Features

  • a1d561d feat: Move getDeclaredVariables and getAncestors to SourceCode (#​17059) (Nicholas C. Zakas)

Bug Fixes

  • 1c1ece2 fix: do not report on RegExp(...args) in require-unicode-regexp (#​17037) (Francesco Trotta)

Documentation

  • 7162d34 docs: Mention new config system is complete (#​17068) (Nicholas C. Zakas)
  • 0fd6bb2 docs: Update README (GitHub Actions Bot)
  • c83531c docs: Update/remove external links, eg. point to eslint-community (#​17061) (Pelle Wessman)
  • a3aa6f5 docs: Clarify no-div-regex rule docs (#​17051) (Francesco Trotta)
  • b0f11cf docs: Update README (GitHub Actions Bot)
  • da8d52a docs: Update the second object instance for the "no-new" rule (#​17020) (Ahmadou Waly NDIAYE)
  • 518130a docs: switch language based on current path (#​16687) (Percy Ma)
  • 24206c4 docs: Update README (GitHub Actions Bot)

Chores

webpack-contrib/postcss-loader

v7.2.4

Compare Source

browserify/resolve

v1.22.2

Compare Source

sass/dart-sass

v1.61.0

Compare Source

  • Potentially breaking change: Drop support for End-of-Life Node.js 12.

  • Fix remaining cases for the performance regression introduced in 1.59.0.

Embedded Sass
  • The JS embedded host now loads files from the working directory when using the
    legacy API.
npm/node-semver

v7.4.0

Compare Source

Features
Bug Fixes
Documentation
terser/terser

v5.16.9

Compare Source

  • Fix parentheses in output of optional chains (a?.b) (#​1374)
  • More documentation on source maps (#​1368)
  • New lhs_constants option, allowing to stop Terser from swapping comparison operands (#​1361)
webpack/webpack

v5.78.0

Compare Source

Features
Bugfixes
Performance
Contributor Experience

Open in GitHub Codespaces

New Contributors

Full Changelog: webpack/webpack@v5.77.0...v5.78.0


Configuration

📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from b6b1ad7 to d3f48a0 Compare March 22, 2023 05:15
@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Mar 22, 2023
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Mar 22, 2023
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from d3f48a0 to e6851ed Compare March 22, 2023 13:19
@angular-robot angular-robot changed the title build: update dependency cacache to v17.0.5 build: update all non-major dependencies Mar 22, 2023
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 19 times, most recently from 6d249fd to 06b8334 Compare March 29, 2023 04:21
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 5 times, most recently from eb92f4d to 8733fd4 Compare March 30, 2023 17:19
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 20 times, most recently from 490b33b to 0e32704 Compare April 10, 2023 18:18
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from 0e32704 to 59019b1 Compare April 10, 2023 22:18
@alan-agius4 alan-agius4 added target: rc This PR is targeted for the next release-candidate and removed target: minor This PR is targeted for the next minor release labels Apr 11, 2023
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from 59019b1 to a8841a5 Compare April 11, 2023 17:17
@angular-robot angular-robot bot merged commit bbf871c into angular:main Apr 11, 2023
@angular-robot angular-robot deleted the ng-renovate/all-minor-patch branch April 11, 2023 22:16
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators May 12, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: rc This PR is targeted for the next release-candidate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants