Skip to content

build: update all non-major dependencies#24660

Merged
angular-robot[bot] merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/all-minor-patch
Feb 7, 2023
Merged

build: update all non-major dependencies#24660
angular-robot[bot] merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/all-minor-patch

Conversation

@angular-robot
Copy link
Copy Markdown
Contributor

@angular-robot angular-robot commented Feb 4, 2023

This PR contains the following updates:

Package Type Update Change
@typescript-eslint/eslint-plugin devDependencies minor 5.50.0 -> 5.51.0
@typescript-eslint/parser devDependencies minor 5.50.0 -> 5.51.0
esbuild optionalDependencies patch 0.17.5 -> 0.17.6
esbuild devDependencies patch 0.17.5 -> 0.17.6
esbuild-wasm dependencies patch 0.17.5 -> 0.17.6
esbuild-wasm devDependencies patch 0.17.5 -> 0.17.6
quicktype-core devDependencies patch 21.0.9 -> 21.0.10
terser (source) dependencies patch 5.16.2 -> 5.16.3
terser (source) devDependencies patch 5.16.2 -> 5.16.3

Release Notes

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

v5.51.0

Compare Source

Bug Fixes
Features
  • eslint-plugin: [naming-convention] improve performance by removing unnecessary selectors (#​6376) (3647a1c)
  • eslint-plugin: [no-floating-promises] error on logical expression (#​6356) (f330e06)
  • eslint-plugin: [no-import-type-side-effects] add rule to warn against runtime side effects with verbatimModuleSyntax (#​6394) (b14d3be)
  • eslint-plugin: [strict-boolean-expressions] add allow nullable enum to strict boolean expressions (#​6096) (d4747cd)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.51.0

Compare Source

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

evanw/esbuild

v0.17.6

Compare Source

  • Fix a CSS parser crash on invalid CSS (#​2892)

    Previously the following invalid CSS caused esbuild's parser to crash:

    @​media screen

    The crash was caused by trying to construct a helpful error message assuming that there was an opening { token, which is not the case here. This release fixes the crash.

  • Inline TypeScript enums that are referenced before their declaration

    Previously esbuild inlined enums within a TypeScript file from top to bottom, which meant that references to TypeScript enum members were only inlined within the same file if they came after the enum declaration. With this release, esbuild will now inline enums even when they are referenced before they are declared:

    // Original input
    export const foo = () => Foo.FOO
    const enum Foo { FOO = 0 }
    
    // Old output (with --tree-shaking=true)
    export const foo = () => Foo.FOO;
    var Foo = /* @​__PURE__ */ ((Foo2) => {
      Foo2[Foo2["FOO"] = 0] = "FOO";
      return Foo2;
    })(Foo || {});
    
    // New output (with --tree-shaking=true)
    export const foo = () => 0 /* FOO */;

    This makes esbuild's TypeScript output smaller and faster when processing code that does this. I noticed this issue when I ran the TypeScript compiler's source code through esbuild's bundler. Now that the TypeScript compiler is going to be bundled with esbuild in the upcoming TypeScript 5.0 release, improvements like this will also improve the TypeScript compiler itself!

  • Fix esbuild installation on Arch Linux (#​2785, #​2812, #​2865)

    Someone made an unofficial esbuild package for Linux that adds the ESBUILD_BINARY_PATH=/usr/bin/esbuild environment variable to the user's default environment. This breaks all npm installations of esbuild for users with this unofficial Linux package installed, which has affected many people. Most (all?) people who encounter this problem haven't even installed this unofficial package themselves; instead it was installed for them as a dependency of another Linux package. The problematic change to add the ESBUILD_BINARY_PATH environment variable was reverted in the latest version of this unofficial package. However, old versions of this unofficial package are still there and will be around forever. With this release, ESBUILD_BINARY_PATH is now ignored by esbuild's install script when it's set to the value /usr/bin/esbuild. This should unbreak using npm to install esbuild in these problematic Linux environments.

    Note: The ESBUILD_BINARY_PATH variable is an undocumented way to override the location of esbuild's binary when esbuild's npm package is installed, which is necessary to substitute your own locally-built esbuild binary when debugging esbuild's npm package. It's only meant for very custom situations and should absolutely not be forced on others by default, especially without their knowledge. I may remove the code in esbuild's installer that reads ESBUILD_BINARY_PATH in the future to prevent these kinds of issues. It will unfortunately make debugging esbuild harder. If ESBUILD_BINARY_PATH is ever removed, it will be done in a "breaking change" release.

quicktype/quicktype

v21.0.10

Compare Source

terser/terser

v5.16.3

Compare Source

  • Ensure function definitions, don't assume the values of variables defined after them.

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 added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Feb 4, 2023
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Feb 4, 2023
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 2 times, most recently from a2c2ea6 to 4825619 Compare February 5, 2023 00:15
@angular-robot angular-robot changed the title build: update dependency terser to v5.16.3 build: update all non-major dependencies Feb 6, 2023
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 5 times, most recently from 68cd583 to f456392 Compare February 7, 2023 01:41
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from f456392 to 0c3cb3b Compare February 7, 2023 14:16
@angular-robot angular-robot bot merged commit 56423f0 into angular:main Feb 7, 2023
@angular-robot angular-robot deleted the ng-renovate/all-minor-patch branch February 7, 2023 20:18
@angular-automatic-lock-bot
Copy link
Copy Markdown

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 Mar 10, 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: minor This PR is targeted for the next minor release

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants