Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

fix(deps): update module github.com/facebook/ent to v0.12.3 #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 26, 2021

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/facebook/ent require minor v0.5.0 -> v0.12.3

Release Notes

facebook/ent (github.com/facebook/ent)

v0.12.3

Compare Source

v0.12.2

Compare Source

v0.12.1

Compare Source

v0.12.0

Compare Source

v0.11.10

Compare Source

v0.11.9

Compare Source

v0.11.8

Compare Source

v0.11.7

Compare Source

v0.11.6

Compare Source

v0.11.5

Compare Source

v0.11.4

Compare Source

v0.11.3

Compare Source

v0.11.2

Compare Source

v0.11.1

Compare Source

v0.11.0

Compare Source

We're very happy to announce the release of the next version of Ent: v0.11 🎊

This release contains several bug fixes, many small features, and improvements to the ent/schema, ent runtime, and ent codegen. There are 3 major features that were added to the framework: Edge Schemas, GraphQL Schema Generator and a completely new infrastructure for generating schema migrations using Atlas. Please, visit these links to learn more about these new functionalities.

In the next version, we plan to start experimenting with generics to reduce the amount of generated code and may consider exposing new generics-based extensions. Additional tasks that are on our list are query interceptors, polymorphic edges, a toolset for executing migrations safely, and a list of small runtime improvements that exist in our issue tracker.

You are welcome to join our Discord Server, Slack channel and subscribe to the Ent newsletter to get updates on the new features, proposal discussions, and content we release.

What's Changed

New Contributors

Full Changelog: ent/ent@v0.10.1...v0.11

v0.10.1

Compare Source

Version v0.10.1 includes 2 fixes for bugs that were introduced in version v0.10.0, and additional improvements for schema migration.

What's Changed

New Contributors

Full Changelog: ent/ent@v0.10.0...v0.10.1

v0.10.0

Compare Source

Dear community,

We're very happy to announce the release of the next version of Ent: v0.10. It has been almost six months since v0.9.1, so naturally, there's a ton of new stuff in this release. Please, read more about it in the Ent blog.

What's Changed

New Contributors

Full Changelog: ent/ent@v0.9.1...0.10.0

v0.9.1

Compare Source

Version v0.9.1 includes 1 minor bug fix that was introduced in version v0.9.0, and additional bug fixes and improvements for the Upsert and Lock feature flags.

Bug fixes:

v0.9.0

Compare Source

We are excited to share the v0.9.0 release! 🎊

This release contains several bug fixes and many small features and improvements to the ent/schema, ent runtime, and ent-codegen. Also, 2 major features were added to the framework, Upsert/UpsertBulk APIs, and Row-level locking (see details below). See examples:

// Upsert one.
id, err := client.User.
    Create().
    SetAge(30).
    SetName("Ariel").
    OnConflict().
    SetName("Mashraki").
    ID(ctx)

// Upsert bulk.
err := client.User. 
    CreateBulk(builders...). 
    OnConflict(). 
    UpdateNewValues().
    Exec(ctx)

// Row-level locking.
tx.User.Query().
    Where(user.Name(name)).
    ForUpdate().
    Only(ctx)

In the next release, we'll introduce the new migration framework for SQL.

You are welcome to join our Slack channel and subscribe to the Ent newsletter to get updates on the new features, proposal discussions, and content we release.

Summary

ent/gen
schema/field
  • Allow simple types (and UUID types) to implement the sql.ValueScanner interface:
type DocID string
func (*DocID) Scan(value interface{}) (error) { ... }
func (DocID) Value() (driver.Value, error) { ... }
  • Make non-string ValueScanner types work with enum fields.
  • Support unique bytes.
  • Add support for setting update default functions to numeric fields:
field.Int("utime").
	UpdateDefault(func() int { ... })
schema/index
  • Add support for attaching custom annotations for indexes.
dialect/sql
  • Add union and with-recursive API for builder (see example #​1599).
  • Add EXISTS (and NOT EXISTS) predicates.
  • Support for USING method in CREATE INDEX builder.
  • Add support for custom SQL query modifiers (see website).
dialct/sql/schema
  • Support for PostgreSQL and MySQL numeric and decimal types in migration.
dialect/entsql
  • Add support for CHECK annotation.
  • Support for Collation annotation in schema fields.
  • Add Prefix and PrefixColumns options for index annotations (see docs).


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Apr 26, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/tritonmedia/api":"/mnt/renovate/gh/tritonmedia/api" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e CGO_ENABLED -w "/mnt/renovate/gh/tritonmedia/api" docker.io/renovate/go:1.15.11 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./..."
go: github.com/facebook/[email protected]: parsing go.mod:
	module declares its path as: entgo.io/ent
	        but was required as: github.com/facebook/ent

@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from 1e421ae to f9f70bc Compare October 18, 2021 22:51
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.8.0 fix(deps): update module github.com/facebook/ent to v0.9.1 Oct 18, 2021
@renovate
Copy link
Contributor Author

renovate bot commented Oct 18, 2021

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: github.com/facebook/[email protected]: parsing go.mod:
	module declares its path as: entgo.io/ent
	        but was required as: github.com/facebook/ent

@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from f9f70bc to 6e39cc9 Compare March 7, 2022 11:17
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.9.1 fix(deps): update module github.com/facebook/ent to v0.10.1 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from 6e39cc9 to fb5483b Compare September 25, 2022 14:18
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.10.1 fix(deps): update module github.com/facebook/ent to v0.11.2 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from fb5483b to a66cf42 Compare November 20, 2022 16:24
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.11.2 fix(deps): update module github.com/facebook/ent to v0.11.4 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from a66cf42 to 2d11fef Compare March 17, 2023 00:03
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.11.4 fix(deps): update module github.com/facebook/ent to v0.11.10 Mar 17, 2023
@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from 2d11fef to 973cf66 Compare April 17, 2023 10:56
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.11.10 fix(deps): update module github.com/facebook/ent to v0.12.1 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/github.com-facebook-ent-0.x branch from 973cf66 to 44e4b74 Compare May 28, 2023 12:15
@renovate renovate bot changed the title fix(deps): update module github.com/facebook/ent to v0.12.1 fix(deps): update module github.com/facebook/ent to v0.12.3 May 28, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants