So prisma has been renamed to prisma1 on NPM? :thi...
# orm-help
b
So prisma has been renamed to prisma1 on NPM? 🤔
m
Yep. We'll be transitioning Prisma 1 to the
prisma1
package and
prisma@2.x
will point to Prisma 2.
prisma@1.x
will continue to point to Prisma 1, but all updates going forward will be published to the
prisma1
repo.
b
So prisma@ will stop being used?
m
prisma
will point to Prisma 2 going forward. We'll wait a bit before doing this to let folks transition to the
prisma1
package.
b
Though you can't
npm install prisma@1.32.4
any more as it directs us to move to prisma1, which is a breaking change for a lot of our CI deployment pipelines
Would also like to know how this will be impacting the prisma v1 docker images, which we use throughout our stack
m
Ah. I'm sorry for the inconvenience. I'd suggest doing a find & replace across the codebases changing it to
prisma1
. Alternatively, pinning the CLI to
prisma@1.34.10
. I'll look into the docker images. This one https://hub.docker.com/r/prismagraphql/prisma right?
b
That's the one
Are the images included in maintenance mode support?
t
The images don’t need to renamed for now, just the npm package. You don’t need to upgrade and can for now also stay on the old
prisma
npm version.
👀 1