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

Please update class-transformer dependency to the latest version #783

Closed
slavafomin opened this issue Oct 8, 2021 · 26 comments · Fixed by #932
Closed

Please update class-transformer dependency to the latest version #783

slavafomin opened this issue Oct 8, 2021 · 26 comments · Fixed by #932
Labels
status: has PR Issues which has a related PR closing the issue.

Comments

@slavafomin
Copy link
Contributor

Hello!

Thank you for this great library!

However, right now it requires [email protected] (exact version 0.3.1) as a peer dependency. This prevents my project from using the latest version of the class-transformer (which is 0.4.0).

This generates the following error on npm install:

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: @acme/project
npm ERR! Found: [email protected]
npm ERR! node_modules/class-transformer
npm ERR!   class-transformer@"0.4.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer class-transformer@"^0.3.1" from [email protected]
npm ERR! node_modules/routing-controllers
npm ERR!   routing-controllers@"0.9.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.

Would you be so kind to update class-transformer dependency to the latest version?

Thanks!

@slavafomin slavafomin added flag: needs discussion Issues which needs discussion before implementation. type: feature Issues related to new features. labels Oct 8, 2021
@slavafomin
Copy link
Contributor Author

The same issue is with class-validator.

Also, it would be much easy to avoid these kind of issues if you would switch to a stable semver range (major version > 0) because it would allow to match dependencies in a more relaxed manner.

@SandraShklyaeva
Copy link

Dependency update sounds even more urgent because of the latest security vulnerability fixes for the following packages:
class-validator => 0.13.2 (changelog)
class-transformer => 0.5.0 (changelog)

@biton-ron
Copy link

biton-ron commented Dec 9, 2021

Same issue for us, a fix will be a great help.

Thanks!

@juniopereirab
Copy link

Same problem here...

TypeError: class transformer 1.classToPlain is not a function

@RatakondalaArun
Copy link

RatakondalaArun commented Dec 17, 2021

Is there any workaround for this?

I want to use exposeDefaultValues which was added in v0.3.2

@amellalkamel
Copy link

+1
this is a serious issue

@ghost
Copy link

ghost commented Mar 14, 2022

Is there any update ?

@seblaz
Copy link

seblaz commented Mar 21, 2022

Hi @NoNameProvided @attilaorosz, would you mind having a look at the pr? Thanks!

@zSakuraEvilz
Copy link

Is there no new update for this issue?

@attilaorosz
Copy link
Member

Seems like there are no real breaking changes in terms of class-transformer usage (I might be wrong here) so you can just update the package since it is only a peer dependency.

@biton-ron
Copy link

Seems like there are no real breaking changes in terms of class-transformer usage (I might be wrong here) so you can just update the package since it is only a peer dependency.

We're working with TypeScript and we get some type differences that reflect breaking changes in the library.

@saschajungfer
Copy link

saschajungfer commented Jun 8, 2022

Is there any workaround for this?

I want to use exposeDefaultValues which was added in v0.3.2

I just found a workaround which seems to work, you can install two versions of the same package using an alias:

My package.json now looks like this:

        "class-transformer": "^0.5.1",
        "class-transformer3": "npm:class-transformer@^0.3.1",
        "class-validator": "^0.13.2",
        "class-validator12": "npm:class-validator@^0.12.2",

Never saw that syntax before, but this is working for me.

@pfgallagher
Copy link

Is there any workaround for this?
I want to use exposeDefaultValues which was added in v0.3.2

I just found a workaround which seems to work, you can install two versions of the same package using an alias:

My package.json now looks like this:

        "class-transformer": "^0.5.1",
        "class-transformer3": "npm:class-transformer@^0.3.1",
        "class-validator": "^0.13.2",
        "class-validator12": "npm:class-validator@^0.12.2",

Never saw that syntax before, but this is working for me.

@Killasushi - Could you please share your full package.json? Is there additional config you needed to do to point at the aliases? Doesn't seem to be doing the trick on my end.

@saschajungfer
Copy link

Is there any workaround for this?
I want to use exposeDefaultValues which was added in v0.3.2

I just found a workaround which seems to work, you can install two versions of the same package using an alias:

My package.json now looks like this:

        "class-transformer": "^0.5.1",
        "class-transformer3": "npm:class-transformer@^0.3.1",
        "class-validator": "^0.13.2",
        "class-validator12": "npm:class-validator@^0.12.2",

Never saw that syntax before, but this is working for me.

@Killasushi - Could you please share your full package.json? Is there additional config you needed to do to point at the aliases? Doesn't seem to be doing the trick on my end.

There is no additional config in my package.json. My package-lock.json looks like this, it is important that both versions do appear. That should be the case after running npm install class-validator12@npm:[email protected] (I'm using Node 16). Is that your case?

 "node_modules/class-validator": {
            "version": "0.13.2",
            "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.13.2.tgz",
            "integrity": "sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==",
            "dependencies": {
                "libphonenumber-js": "^1.9.43",
                "validator": "^13.7.0"
            }
        },
        "node_modules/class-validator12": {
            "name": "class-validator",
            "version": "0.12.2",
            "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.12.2.tgz",
            "integrity": "sha512-TDzPzp8BmpsbPhQpccB3jMUE/3pK0TyqamrK0kcx+ZeFytMA+O6q87JZZGObHHnoo9GM8vl/JppIyKWeEA/EVw==",
            "dependencies": {
                "@types/validator": "13.0.0",
                "google-libphonenumber": "^3.2.8",
                "tslib": ">=1.9.0",
                "validator": "13.0.0"
            }
        },   

@LucasGobatto
Copy link

Still an issue

@FrancisBehnen
Copy link

If someone is forking, please let me know!

@spicemc
Copy link

spicemc commented Jul 14, 2022

I am using overrides in my package.json. This is my workaround:

...
  "overrides": {
    "class-transformer": "^0.5.1",
    "class-validator": "^0.13.2"
  },
  "dependencies": {
    "class-transformer": "^0.5.1",
    "class-validator": "^0.13.2",
...

Try with npm install --legacy-peer-deps to get it running.

@JotaRaffalli
Copy link

Pls, update this 😮‍💨

@laujonat
Copy link

No temporary workarounds?

@spicemc
Copy link

spicemc commented Aug 29, 2022

Did you try my suggested workaround?

@Rasfuranku
Copy link

Trying to install "routing-controllers": "^0.9.0" in a new project, having the same issue.

@jstanislawczyk
Copy link

Please update it. It's hard to use it in new project when it has such big issue

@spicemc
Copy link

spicemc commented Nov 14, 2022

If someone is forking, please let me know!

i forked it. Feel free to use it in your projects.

@NoNameProvided
Copy link
Member

Hi folks! I have added branch protection bypass to @attilaorosz so he will be able to handle this.

@FrancisBehnen
Copy link

If someone is forking, please let me know!

i forked it. Feel free to use it in your projects.

Awesome, I've let the team know!

@attilaorosz attilaorosz added status: has PR Issues which has a related PR closing the issue. and removed type: feature Issues related to new features. flag: needs discussion Issues which needs discussion before implementation. labels Nov 23, 2022
@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 27, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
status: has PR Issues which has a related PR closing the issue.