ng2-file-upload
ng2-file-upload copied to clipboard
Angular V17 support
Hi. Please add support for Angular 17
@serderovsh: As I am not quite sure when this will get upgraded and we need it badly, I have forked and published a new version. Check out @augwit/ng2-file-upload@^6.0.0.
That fork is only for Angular upgrades, no other features and bug fixes are intended to be done.
Adding something like
"overrides": {
"ng2-file-upload": {
"@angular/common": "17.0.4",
"@angular/core": "17.0.4"
}
}
to package.json
could also be used as a stopgap measure.
Adding something like
"overrides": { "ng2-file-upload": { "@angular/common": "17.0.4", "@angular/core": "17.0.4" } }
to
package.json
could also be used as a stopgap measure.
I used the following, which ties it to the version you otherwise have installed (so you don't have to muck with the versions manually over time). Thanks for the tip!
"overrides": {
"ng2-file-upload": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
}
}
Adding something like
"overrides": { "ng2-file-upload": { "@angular/common": "17.0.4", "@angular/core": "17.0.4" } }
to
package.json
could also be used as a stopgap measure.
This is a great tip! Thanks!!!
Adding something like
"overrides": { "ng2-file-upload": { "@angular/common": "17.0.4", "@angular/core": "17.0.4" } }
to
package.json
could also be used as a stopgap measure.I used the following, which ties it to the version you otherwise have installed (so you don't have to muck with the versions manually over time). Thanks for the tip!
"overrides": { "ng2-file-upload": { "@angular/common": "$@angular/common", "@angular/core": "$@angular/core" } }
this is great but we need native support! ;-)
plz @valorkin !
ofc, please do a PR and mention me
So Angular 17 support is done, right? https://github.com/valor-software/ng2-file-upload/pull/1266
Can we get a release please @valorkin ? :)
Any updates on this? I'm still using the trick of overriding the library dependencies.