Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

prisma-safety

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prisma-safety

A safe migration checker for Prisma.

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

prisma-safety

A safe schema change checker for Prisma. Errors if a model is deleted without previously having been marked @@ignore or a field is deleted without previously having been marked @ignore.

Motivation

https://github.com/prisma/prisma/discussions/13922

Installation

> npm install --save-dev prisma-safety
# or
> yarn add --dev prisma-safety

Usage

> npx prisma-safety <base-sha>
# or
> yarn prisma-safety <base-sha>

A schema file path can be specified with the -s, --schema option. The default path is prisma/schema.prisma.

Run yarn prisma-safety --help for more.

CLI

Example usage locally from CLI:

> yarn prisma-safety d282130914405c7055a360834229dc5ae00fbc73
Unsafe change to "LineItem.invoiceId": Expected deleted field to have been marked with @ignore prior to delete.

GitHub Actions

Example usage in GitHub Actions:

jobs:
  prisma-safety:
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '18.13.0'
          cache: 'yarn'
      - run: yarn
      - name: Check Prisma schema change safety
        run: |
          # Even though we don't diff again main's HEAD, we need to fetch it
          # because the base SHA is not fetched as part of the shallow clone
          # GitHub Actions uses to fetch the PR branch HEAD.
          git fetch origin ${{ github.base_ref }}
          yarn prisma-safety ${{ github.event.pull_request.base.sha }}

FAQs

Package last updated on 22 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc