Skip to content

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 15 Jun 15:45

What's New in v0.1.4

protoc-gen-protorm generates Prisma, GORM, SQL, and CSV database schemas
from your Protobuf definitions. Download the binary for your platform below.

Installation

Homebrew

brew install the-protobuf-project/tap/protoc-gen-protorm

Manual (macOS / Linux)

# Pick your platform, e.g. darwin_arm64 / linux_amd64
curl -LO https://github.com/the-protobuf-project/protorm/releases/download/v0.1.4/protoc-gen-protorm_0.1.4_darwin_arm64.tar.gz
tar -xzf protoc-gen-protorm_0.1.4_darwin_arm64.tar.gz
sudo mv protoc-gen-protorm /usr/local/bin/

Then reference it from buf.gen.yaml:

plugins:
  - local: protoc-gen-protorm
    out: generated
    opt: [target=prisma]   # prisma | gorm | sql | csv

Changelog

Features

Bug Fixes

Others