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

build: update all non-major dependencies #21982

Merged
merged 2 commits into from
Oct 21, 2021
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 20, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin 5.0.0 -> 5.1.0 age adoption passing confidence
@typescript-eslint/parser 5.0.0 -> 5.1.0 age adoption passing confidence
critters 0.0.10 -> 0.0.11 age adoption passing confidence
esbuild 0.13.7 -> 0.13.8 age adoption passing confidence
esbuild-wasm 0.13.7 -> 0.13.8 age adoption passing confidence
less-loader 10.1.0 -> 10.2.0 age adoption passing confidence
ng-packagr 13.0.0-rc.0 -> 13.0.0-rc.1 age adoption passing confidence
webpack 5.58.2 -> 5.59.0 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint

v5.1.0

Compare Source

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

evanw/esbuild

v0.13.8

Compare Source

  • Fix super inside arrow function inside lowered async function (#​1425)

    When an async function is transformed into a regular function for target environments that don't support async such as --target=es6, references to super inside that function must be transformed too since the async-to-regular function transformation moves the function body into a nested function, so the super references are no longer syntactically valid. However, this transform didn't handle an edge case and super references inside of an arrow function were overlooked. This release fixes this bug:

    // Original code
    class Foo extends Bar {
      async foo() {
        return () => super.foo()
      }
    }
    
    // Old output (with --target=es6)
    class Foo extends Bar {
      foo() {
        return __async(this, null, function* () {
          return () => super.foo();
        });
      }
    }
    
    // New output (with --target=es6)
    class Foo extends Bar {
      foo() {
        var __super = (key) => super[key];
        return __async(this, null, function* () {
          return () => __super("foo").call(this);
        });
      }
    }
  • Remove the implicit / after [dir] in entry names (#​1661)

    The "entry names" feature lets you customize the way output file names are generated. The [dir] and [name] placeholders are filled in with the directory name and file name of the corresponding entry point file, respectively.

    Previously --entry-names=[dir]/[name] and --entry-names=[dir][name] behaved the same because the value used for [dir] always had an implicit trailing slash, since it represents a directory. However, some people want to be able to remove the file name with --entry-names=[dir] and the implicit trailing slash gets in the way.

    With this release, you can now use the [dir] placeholder without an implicit trailing slash getting in the way. For example, the command esbuild foo/bar/index.js --outbase=. --outdir=out --entry-names=[dir] previously generated the file out/foo/bar/.js but will now generate the file out/foo/bar.js.

webpack-contrib/less-loader

v10.2.0

Compare Source

Features
ng-packagr/ng-packagr

v13.0.0-rc.1

Compare Source

Bug Fixes
Performance
  • only re-generate FESMs when ESM has changed (2a02a89)
  • read esm files from memory (51ba534)
  • store fesm generation state on disk (4565a8b)
webpack/webpack

v5.59.0

Compare Source

Features

  • add /*#__PURE__*/ for Object() in generated code
  • add RegExp and function support for managed/immutablePaths
  • add hooks for multiple phases in module build
  • improvements to experiments.buildHttp
    • allow to share cache
    • add allowlist
  • add splitChunks.minSizeReduction option

Bugfixes

  • fix memory caching for Data URLs
  • fix crash in waitFor when modules are unsafe cached
  • fix bug in build cycle detection

Configuration

📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone America/Tijuana.

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

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

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


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Oct 20, 2021
@google-cla google-cla bot added the cla: yes label Oct 20, 2021
@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 Oct 20, 2021
@google-cla
Copy link

google-cla bot commented Oct 20, 2021

All (the pull request submitter and all commit authors) CLAs are signed, but one or more commits were authored or co-authored by someone other than the pull request submitter.

We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that by leaving a comment that contains only @googlebot I consent. in this pull request.

Note to project maintainer: There may be cases where the author cannot leave a comment, or the comment is not properly detected as consent. In those cases, you can manually confirm consent of the commit author(s), and set the cla label to yes (if enabled on your project).

ℹ️ Googlers: Go here for more info.

@google-cla google-cla bot added cla: no and removed cla: yes labels Oct 20, 2021
@alan-agius4
Copy link
Collaborator

@googlebot I consent

@google-cla google-cla bot added cla: yes and removed cla: no labels Oct 20, 2021
@alan-agius4 alan-agius4 linked an issue Oct 20, 2021 that may be closed by this pull request
15 tasks
@alan-agius4 alan-agius4 force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9ae7d34 to 4082c66 Compare October 20, 2021 12:14
@filipesilva filipesilva merged commit 2764915 into master Oct 21, 2021
@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 Nov 21, 2021
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 target: rc This PR is targeted for the next release-candidate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Index html generation failed. property missing ':'
3 participants