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

[FEATURE] Create RFC for Yarn Resolutions #56

Closed
karlhorky opened this issue Oct 25, 2019 · 13 comments
Closed

[FEATURE] Create RFC for Yarn Resolutions #56

karlhorky opened this issue Oct 25, 2019 · 13 comments
Labels
Enhancement new feature or improvement Needs Discussion is pending a discussion

Comments

@karlhorky
Copy link

karlhorky commented Oct 25, 2019

What / Why

Not sure if this is the right way to do this, but I wanted to create a placeholder issue for the eventual creation an RFC for Yarn Resolutions.

As @isaacs mentioned in #39 (comment) (emphasis mine):

I think a pretty good plan is maybe to ratify this, de-ratify the current overrides, and instead add a new RFC to implement yarn's resolutions with the same syntax and logic as yarn uses. Better to walk the existing cowpath than create another one.

References

@darcyclarke darcyclarke added Agenda will be discussed at the Open RFC call Enhancement new feature or improvement Needs Discussion is pending a discussion Release 7.x semver:major backwards-incompatible breaking changes and removed Release 7.x labels Oct 30, 2019
@darcyclarke darcyclarke added semver:minor new backwards-compatible feature Release 7.x and removed semver:major backwards-incompatible breaking changes Agenda will be discussed at the Open RFC call labels Oct 30, 2019
@ruyadorno ruyadorno added the Agenda will be discussed at the Open RFC call label Mar 24, 2020
@ruyadorno
Copy link
Contributor

Putting this back on the agenda since I think we might want to close it given that #72 was ratified and implemented.

@karlhorky
Copy link
Author

Oh nice, an acceptDependencies field! In which version of npm can I use this?

Does this cover common cases of Yarn Resolutions? For example:

1. I want to upgrade all versions of minimist at any level to version 0.2.1:

{
  "resolutions": {
    "minimist": "0.2.1"
  }
}

It looks like acceptDependencies covers this use case.

2. I want to upgrade minimist to 0.2.1, but only when it's a dependency of mkdirp. In other cases, I want to use version 1.2.5.

{
  "resolutions": {
    "**/mkdirp/minimist": "0.2.1",
    "mkdirp": "1.2.5"
  }
}

I'm not sure whether acceptDependencies would cover this common case.

These are just a couple that I have dealt with a lot. Maybe @arcanis could chime in with other common use cases for Resolutions.


Taking a look at the example of acceptDependencies, it's not immediately clear to me whether anything other than the most simple case is supported:

{
    "name": "my-node4-package",
    "engines": {
        "node": ">=4"
    },
    "dependencies": {
        "make-dir": "^1.3.0"
    },
    "acceptDependencies": {
        "make-dir": "2.x - 3.x"
    }
}

@isaacs
Copy link
Contributor

isaacs commented Apr 15, 2020

This is the direction we're likely going: #129

Expect an update to this RFC to make some changes this week and explore a lot of the edge cases.

The result of last week's deep dive was that we really cannot reasonably go the route of implementing Yarn's resolutions field, basically for all the same reasons that led yarn2/berry to abandon it.

@arcanis
Copy link

arcanis commented Apr 15, 2020

I'm not sure what you mean, we didn't abandon it. It's implemented in v2 the same as in v1, except that the syntax was made less ambiguous 🤔

@isaacs
Copy link
Contributor

isaacs commented Apr 15, 2020

Ah, ok, my mistake. I thought it was replaced by a new thing.

@wesleytodd
Copy link

wesleytodd commented Apr 15, 2020

@arcanis I think maybe that was phrased incorrectly, I assume @isaacs was referring to the new methodology for applying rules using prolog? The new docs I think are here right? https://yarnpkg.com/configuration/manifest#resolutions

Which is different from the prolog stuff? I don't see that documented, maybe you can link to that?

EDIT: Sorry @isaacs your messaged popped in as I submitted this comment.

@arcanis
Copy link

arcanis commented Apr 15, 2020

The prolog constraints are an entirely different feature that has nothing to do with resolutions.

Glob patterns were discontinued as a syntax because they had no sensible additional effects - users could just omit them and it worked just fine.

@wesleytodd
Copy link

wesleytodd commented Apr 15, 2020

Glob patterns were discontinued as a syntax because they had no sensible additional effects - users could just omit them and it worked just fine.

Good to know.

The prolog constraints are an entirely different feature that has nothing to do with resolutions.

Do you have docs or discussions which we could go read? I am very interested in the learnings from the process here. Thanks in advance for any help you can provide!

@isaacs
Copy link
Contributor

isaacs commented Apr 15, 2020

Glob patterns were discontinued as a syntax because they had no sensible additional effects - users could just omit them and it worked just fine.

Ah, that's great to hear! I was under the (incorrect?) assumption that foo/bar would only match if bar was a direct dependent of foo, where as foo/**/bar would match if bar was anywhere in the foo branch of the dependency graph. Is that mistaken?

If so, wow, extremely good call removing the globs, because it's clearly somewhat confusing. It would also mean that we probably can translate yarn resolutions into npm overrides, and support either syntax. There are a few things you can do with overrides that I don't think quite map in the other direction, but we'll see once this RFC fully solidifies.

@karlhorky
Copy link
Author

This is the direction we're likely going: #129

@isaacs oh nice, really awesome!

Looks like npm Overrides cover all of the use cases Yarn Resolutions cover and more! Really like the version specifiers and calling out the "exceptions".

Simple

{
  "overrides": {
    "[email protected]": "0.2.1",
    "[email protected] || 2.x": "2.7.0",
    "[email protected]": "1.2.4"
  }
}

Matching Transitive Dependencies (sub-dependencies)

{
  "overrides": {
    "[email protected]": {
      "[email protected]": "1.2.3"
    }
  }
}

Exceptions

  • force all versions of react to be 15.6.2
  • except when used by the dependencies of tap, where react@16 will be used
{
  "overrides": {
    "react": "15.6.2",
    "tap": {
      "react": "16"
    }
  }
}

@darcyclarke
Copy link
Contributor

I'm going to close out this issue as we've moved the conversation of overrides/resolutions to the RFC (#129 ) specifically.

@darcyclarke darcyclarke removed Agenda will be discussed at the Open RFC call Release 7.x semver:minor new backwards-compatible feature labels Apr 29, 2020
@karlhorky
Copy link
Author

karlhorky commented Apr 30, 2020

Ok, thanks everyone! Really excited about npm again! 💯

@darcyclarke
Copy link
Contributor

Thanks @karlhorky ❤️ 😄 We're excited to keep building something awesome with your help/input.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement new feature or improvement Needs Discussion is pending a discussion
Projects
None yet
Development

No branches or pull requests

6 participants