Skip to content

Releases: steebchen/prisma-client-go

v0.2.0

07 Dec 13:45
22b80ca
Compare
Choose a tag to compare

v0.2.0

JSON support, native mocks, helper methods & minor improvements

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release.

Major changes

Changes

Contributors

@steebchen

Interested in providing feedback for the Go client?

We would like to ask you a few questions and get your feedback about the Go client. We'll send merch along your away as a thank you.
If you're interested, email me at steeb@prisma.io or join our public Slack and DM me.

v0.1.0

09 Nov 17:11
041b891
Compare
Choose a tag to compare

v0.1.0

Go client early access

The Go client is now an early access product and is not considered experimental anymore. 🎉
This means we will continue to invest in the Go client, but at the same time those resourced will be limited and we may have breaking changes in minor releases.

Release Notes

This release contains minor improvements and bumps the internal Prisma CLI to 2.10.2.

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release.

Major changes

  • bump internal Prisma CLI to 2.10.2 (#290, #291)
  • improve docs (#284)
  • fix .Link() method parameters (#288)

Changes

Contributors

@steebchen

Interested in providing feedback for the Go client?

We would like to ask you a few questions and get your feedback about the Go client. We'll send merch along your away as a thank you.
If you're interested, email me at steeb@prisma.io, join our public Slack, or schedule a call directly with us.

v0.0.10

15 Oct 18:03
e1500b9
Compare
Choose a tag to compare
v0.0.10 Pre-release
Pre-release

v0.0.10

Tons of bugfixes, minor improvements, docs updates... and number type operations!

post, err := client.Post.FindOne(
	Post.ID.Equals("a"),
).Update(
	Post.IntField1.Increment(3),
	Post.FloatField2.Decrement(2.5),
	Post.IntField3.Multiply(2),
	Post.FloatField4.Divide(1.5),
).Exec(ctx)

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release.

Major changes

Changes

Contributors

@FranciscoMendes10866, @janpio, @jaymecd and @steebchen

Interested in providing feedback for the Go client?

We would like to ask you a few questions and get your feedback about the Go client. We'll send merch along your away as a thank you.
If you're interested, email me at steeb@prisma.io or join our public Slack and DM me.

v0.0.9

22 Sep 15:17
8df9786
Compare
Choose a tag to compare
v0.0.9 Pre-release
Pre-release

v0.0.9

This upgrades the Prisma CLI to 2.7.1.

It's known that this release currently doesn't work on windows. If you need windows support, please stay on v0.0.8 and follow the windows support tracking issue.

Major changes

Contributors

@steebchen

v0.0.8

22 Sep 12:51
35e3f72
Compare
Choose a tag to compare
v0.0.8 Pre-release
Pre-release

v0.0.8

A small release containing bugfixes and documentation updates.

Changes

Contributors

@satishbabariya and @steebchen

v0.0.7

04 Sep 09:25
ca4e908
Compare
Choose a tag to compare
v0.0.7 Pre-release
Pre-release

v0.0.7

A small patch release to adapt the naming of generated query engine go files, plus clean up some old documentation.

Major changes

The generated go query engine files are now named query-engine-{platform}_gen.go, and the automatically generated gitignore is adapted as well.

Changes

Contributors

@steebchen

v0.0.6

24 Aug 15:45
1a13860
Compare
Choose a tag to compare
v0.0.6 Pre-release
Pre-release

v0.0.6

Upgrades Prisma to its stable version 2.0.0 and introduces a new pagination API as well as differences in the raw API. We also renamed internal structs from "RawX" to "InternalX" to prevent confusion with the SQL raw API.

Major changes

Contributors

@steebchen

v0.0.5

21 Aug 16:11
d31b455
Compare
Choose a tag to compare
v0.0.5 Pre-release
Pre-release

v0.0.5

Binary files refactor. The prisma go client uses the prisma query engine internally.

Instead of fetching the query engine on runtime, it is now fetched on generate time into the user's project dir.
The correct binary is picked up by go build using build constraints. There will also be a .gitignore generated into the output dir so that the generated prisma client and the query engine files are ignored by default.

The output field in the schema.prisma file now accepts a folder instead of a file.

Major changes

Contributors

@steebchen

v0.0.4

08 Jul 05:54
c4748f9
Compare
Choose a tag to compare
v0.0.4 Pre-release
Pre-release

v0.0.4

Bug fixes and docs improvements.

Changes

Contributors

@brenelz, @matthewmueller and @steebchen

v0.0.3

19 Jun 07:59
d60f95f
Compare
Choose a tag to compare
v0.0.3 Pre-release
Pre-release

v0.0.3

This release adds alpine support, improves code constraints, adds features, and provides various bugfixes.

Major changes

  • Alpine Linux support (#154)
  • Improve code constraints (#157, #158)
  • Change default package name to db (#160) (use the package option in schema.prisma to override)
  • Add postgres scalar list support (#163)
  • Tons of bugfixes

Changes

Contributors

@Jolg42 and @steebchen