Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/upstream merge #13

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7087674
entgql: fix field arguments collection (#495)
a8m Apr 29, 2023
e249b26
entgql: collect interafce/union selection fields of unique edges (#498)
a8m May 3, 2023
589b2d1
entproto: support enum values with special characters (#487)
jamslinger May 9, 2023
69ea329
build(deps): bump golang.org/x/tools from 0.7.0 to 0.9.1 (#504)
dependabot[bot] May 9, 2023
dfb14ec
entgql: support collecting fields of renamed types (#505)
a8m May 9, 2023
d0e852f
entgql: implement interfaces and collect all node implementors (#507)
a8m May 11, 2023
65bc6ee
entgql: support generating non-optional Map fields (#508)
a8m May 12, 2023
b00990b
feat: add SkipGenFile option (#499)
Zxilly May 14, 2023
71a92f4
entgql: fixed Paginate query for count (#512)
giautm May 28, 2023
b724478
entgql/internal/todo: add example for json as mutation inputs (#513)
a8m May 28, 2023
7208402
entproto/cmd: fix setting target path (#521)
rotemtam Jun 15, 2023
704944f
entproto: add support for int slices (#522)
rotemtam Jun 15, 2023
02db1ac
entgql: privatize columns used in cursors predicates (#537)
amrnt Jul 21, 2023
9e1dadf
entgql: avoid naming conflicts in toCursor template (#538)
Tantatorn-dev Jul 25, 2023
e38dfb6
entgql: upgrade gqlgen and disable getters (#544)
giautm Sep 8, 2023
58da6fd
add AllowClientUUIDs for client UUIDs in POSTs (#541)
bartke Sep 21, 2023
0e1d9a2
chore: upgrade ent and atlas (#554)
giautm Nov 11, 2023
6ed0397
entgql: fixed go-fmt (#555)
giautm Nov 11, 2023
e28b645
all: upgrade ent and gqlgen to latest (#564)
giautm Feb 8, 2024
eff33e4
entgql: ensure order fields are prefixed with type name (#565)
a8m Feb 15, 2024
e03f386
entgql: add missing directive's argument (#567)
giautm Mar 14, 2024
37281ef
entgql: avoid using cte queries for single node paths (#569)
a8m Apr 4, 2024
439e519
entgql: support skipping tx-opening by operation or field name (#571)
a8m Apr 9, 2024
4ec1976
entgql: improve var name collision avoidance in toCursor (#572)
henrywoody Apr 11, 2024
8f786b7
Merge branch 'ent/master' into chore/upstream-merge
thejensemann Apr 19, 2024
6b3ac42
fix tests
thejensemann Apr 19, 2024
a98cc57
fix
thejensemann Apr 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.22
- name: Run linters
uses: golangci/golangci-lint-action@v3.2.0
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.48.0
version: v1.55.2
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.20', '1.21' ]
go: ['1.21', '1.22']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down
8 changes: 2 additions & 6 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
run:
go: '1.19'
go: '1.21'
timeout: 10m

linters-settings:
Expand All @@ -25,26 +25,22 @@ linters:
disable-all: true
enable:
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
- errcheck
- gocritic
# - gofmt; Enable back when upgrading CI to Go 1.20.
- gofmt
- goheader
- gosec
- gosimple
- govet
- ineffassign
- misspell
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unused
- varcheck
- whitespace

issues:
Expand Down
Loading
Loading