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

Scala 3 Support #847

Merged
merged 33 commits into from
May 10, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ec9c58b
Initial setup
ghostdogpr Apr 14, 2021
f685e71
fmt
ghostdogpr Apr 14, 2021
a141979
Fix CI
ghostdogpr Apr 14, 2021
81d8905
Move stuff
ghostdogpr Apr 14, 2021
4963988
Simplify
ghostdogpr Apr 14, 2021
0c160f4
Fix CI
ghostdogpr Apr 14, 2021
159cced
Upgrade Scala 3 to RC2
ghostdogpr Apr 14, 2021
382fbc7
gqldoc macro for Scala 3 (#849)
javimartinez Apr 17, 2021
2aacb2e
Implement derivation for SubscriptionSchema
ghostdogpr May 1, 2021
4a6b73f
Implement ArgBuilder derivation
ghostdogpr May 2, 2021
402f66d
Polishing
ghostdogpr May 2, 2021
935b00c
Schema derivation
ghostdogpr May 2, 2021
4c85a36
Remove test code
ghostdogpr May 2, 2021
6398ac6
WIP Schema
ghostdogpr May 2, 2021
04a3760
Enable tests on Scala 3
ghostdogpr May 2, 2021
b0b85ce
Uncomment some tests
ghostdogpr May 2, 2021
04ded6d
Remove logic for value classes since it's not supported
ghostdogpr May 3, 2021
61aff5e
Fix ExecutionSpec
ghostdogpr May 3, 2021
30e3e96
Fix ValidationSchemaSpec
ghostdogpr May 3, 2021
ad4b5b6
Enable client on Scala 3
ghostdogpr May 4, 2021
665b1f3
Remove federation from Scala 3
ghostdogpr May 4, 2021
d2a5ae0
Enable Scala 3 on Caliban Client for Scala.js
ghostdogpr May 5, 2021
0d34d17
Simplify derivation and make it work with Scala enums
ghostdogpr May 5, 2021
fb3b3f0
Exclude test for now
ghostdogpr May 5, 2021
f5c670d
Remove import
ghostdogpr May 5, 2021
e203073
cats-parse scala3 (#850)
timzaak May 7, 2021
fd9a96c
Enable tests
ghostdogpr May 7, 2021
11cbbd5
Unignore last ignored test
ghostdogpr May 7, 2021
7c76866
Merge branch 'master' into scala3
ghostdogpr May 10, 2021
d6efe2b
Fix merge issue
ghostdogpr May 10, 2021
156979f
Cosmetic changes
ghostdogpr May 10, 2021
6b00ff6
fmt
ghostdogpr May 10, 2021
6af3e1b
Update docs
ghostdogpr May 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CI
  • Loading branch information
ghostdogpr committed Apr 14, 2021
commit a141979b03d9ca9a9e61129a17293843f9c020d5
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- checkout
- restore_cache:
key: sbtcache
- run: sbt ++2.12.13! core/test http4s/compile akkaHttp/compile finch/compile play/test examples/compile catsInterop/compile benchmarks/compile tools/test codegenSbt/test clientJVM/test monixInterop/compile tapirInterop/test federation/test codegenSbt/scripted
- run: sbt ++2.12.13! coreJVM/test http4s/compile akkaHttp/compile finch/compile play/test examples/compile catsInterop/compile benchmarks/compile tools/test codegenSbt/test clientJVM/test monixInterop/compile tapirInterop/test federation/test codegenSbt/scripted
- save_cache:
key: sbtcache
paths:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- checkout
- restore_cache:
key: sbtcache
- run: sbt ++3.0.0-RC1! coreJVM/test
- run: sbt ++3.0.0-RC1! coreJVM/compile
- save_cache:
key: sbtcache
paths:
Expand Down