Code Monkey home page Code Monkey logo

Comments (4)

disjunction avatar disjunction commented on May 31, 2024

@wickedest It was a compromise to allow people using both 12th and 13th versions of prom-client. The code has a workaround to hande those both versions. We can add the support for 14th now.

But why does adding a couple of metrics break the build in your case?

from express-prom-bundle.

wickedest avatar wickedest commented on May 31, 2024

@disjunction, sorry, I was a little unclear. I did not hit a breaking change. My test was checking the expected metrics, and they changed unexpectedly. However, there could be breaking changes in prom-client 14 that affect express-prom-bundle that my tests didn't pick up. The point is, because of the peerDepenency ">= 12", npm is going to automatically install every breaking change from prom-client, whether or not express-prom-bundle works with them.

It may be a good idea to limit the peerDependency to "^14" (assuming it's compatible), and minor bump. That way, when 15 rolls around, it may not break things unexpectedly.

from express-prom-bundle.

disjunction avatar disjunction commented on May 31, 2024

But the downside is that if there is NO breaking change and people use the latest prom-client, then they suddenly can't use the prom-bundle. The project exists for 4 years and I can remember just one case (v13) when a breaking change was introduced, otherwise people were simply upgrading their prom-client whenever they wanted and the bundle was still working for them.

This is why I decided at the time to be less restrictive and just adjust the library whenever the true problem occurs.

BTW peer dependencies are NOT installed automatically afaik, thus it's a conscious decision every time.

from express-prom-bundle.

wickedest avatar wickedest commented on May 31, 2024

BTW peer dependencies are NOT installed automatically afaik, thus it's a conscious decision every time.

That is not longer true since npm 7.

In npm versions 3 through 6, peerDependencies were not automatically installed, and would raise a warning if an invalid version of the peer dependency was found in the tree. As of npm v7, peerDependencies are installed by default.

Trying to install another plugin with a conflicting requirement may cause an error if the tree cannot be resolved correctly. For this reason, make sure your plugin requirement is as broad as possible, and not to lock it down to specific patch versions.

So, it's no longer a suggestion, it's a demand, and npm will install one or multiple versions of prom-client if necessary to satisfy express-prom-bundle's peerDependency.

But I made a mistake here and sorry to waste your time. I'm not entirely correct about this:

npm is going to automatically install every breaking change from prom-client

If a project does not explicitly depend on prom-client, then npm will install the latest (i.e. v14). But that's probably never going to happen in this case, and your peerDependency is fine.

My project does explicitly depend on prom-client v14 (but I didn't realize that). So, in my case, it installed v14 exactly as I told it to. Sorry about (my) confusion!

from express-prom-bundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.