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 #27650

Merged
merged 1 commit into from
May 17, 2024

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented May 16, 2024

This PR contains the following updates:

Package Type Update Change
actions/checkout action patch v4.1.5 -> v4.1.6
esbuild optionalDependencies patch 0.21.2 -> 0.21.3
esbuild dependencies patch 0.21.2 -> 0.21.3
esbuild devDependencies patch 0.21.2 -> 0.21.3
esbuild-wasm dependencies patch 0.21.2 -> 0.21.3
esbuild-wasm devDependencies patch 0.21.2 -> 0.21.3
sass dependencies patch 1.77.1 -> 1.77.2
sass devDependencies patch 1.77.1 -> 1.77.2
undici (source) dependencies minor 6.16.1 -> 6.17.0
undici (source) devDependencies minor 6.16.1 -> 6.17.0

Release Notes

actions/checkout (actions/checkout)

v4.1.6

Compare Source

evanw/esbuild (esbuild)

v0.21.3

Compare Source

  • Implement the decorator metadata proposal (#​3760)

    This release implements the decorator metadata proposal, which is a sub-proposal of the decorators proposal. Microsoft shipped the decorators proposal in TypeScript 5.0 and the decorator metadata proposal in TypeScript 5.2, so it's important that esbuild also supports both of these features. Here's a quick example:

    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')
    
    const track = (_, context) => {
      (context.metadata.names ||= []).push(context.name)
    }
    
    class Foo {
      @​track foo = 1
      @​track bar = 2
    }
    
    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)

    ⚠️ WARNING ⚠️

    This proposal has been marked as "stage 3" which means "recommended for implementation". However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorator metadata may need to be updated as the feature continues to evolve. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Fix bundled decorators in derived classes (#​3768)

    In certain cases, bundling code that uses decorators in a derived class with a class body that references its own class name could previously generate code that crashes at run-time due to an incorrect variable name. This problem has been fixed. Here is an example of code that was compiled incorrectly before this fix:

    class Foo extends Object {
      @​(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
  • Fix tsconfig.json files inside symlinked directories (#​3767)

    This release fixes an issue with a scenario involving a tsconfig.json file that extends another file from within a symlinked directory that uses the paths feature. In that case, the implicit baseURL value should be based on the real path (i.e. after expanding all symbolic links) instead of the original path. This was already done for other files that esbuild resolves but was not yet done for tsconfig.json because it's special-cased (the regular path resolver can't be used because the information inside tsconfig.json is involved in path resolution). Note that this fix no longer applies if the --preserve-symlinks setting is enabled.

sass/dart-sass (sass)

v1.77.2

Compare Source

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look
    like vendor-prefixed functions with special CSS syntax.

Command-Line Interface
  • Properly handle the --silence-deprecation flag.

  • Handle the --fatal-deprecation and --future-deprecation flags for
    --interactive mode.

nodejs/undici (undici)

v6.17.0

Compare Source

What's Changed
New Contributors

Full Changelog: nodejs/undici@v6.16.1...v6.17.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 added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels May 16, 2024
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label May 16, 2024
@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 May 16, 2024
@angular-robot angular-robot changed the title build: update all non-major dependencies to v0.21.3 build: update all non-major dependencies May 16, 2024
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 3 times, most recently from f55d160 to be5316a Compare May 17, 2024 07:11
@clydin clydin merged commit 699d4fc into angular:main May 17, 2024
32 checks passed
@angular-robot angular-robot deleted the ng-renovate/all-minor-patch branch May 17, 2024 15:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.

None yet

3 participants