Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: graphql-java-kickstart/graphql-spring-boot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v11.1.0
Choose a base ref
...
head repository: graphql-java-kickstart/graphql-spring-boot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on May 8, 2021

  1. Copy the full SHA
    fb8b7d4 View commit details
  2. Copy the full SHA
    68ff838 View commit details
  3. Copy the full SHA
    76932e0 View commit details
  4. Copy the full SHA
    125e130 View commit details
  5. Copy the full SHA
    6869916 View commit details
  6. Copy the full SHA
    d880e27 View commit details
  7. feat: fix unit tests

    oliemansm committed May 8, 2021
    Copy the full SHA
    945012c View commit details
  8. feat: fix unit tests

    oliemansm committed May 8, 2021
    Copy the full SHA
    8cb2ee4 View commit details
  9. Copy the full SHA
    e057e0a View commit details
  10. Copy the full SHA
    a12cc1f View commit details
  11. Copy the full SHA
    166f991 View commit details
  12. Copy the full SHA
    cc9b648 View commit details
  13. Copy the full SHA
    8dec6f8 View commit details
  14. Copy the full SHA
    9522ad9 View commit details
  15. Copy the full SHA
    8db422f View commit details

Commits on May 9, 2021

  1. Copy the full SHA
    eff2209 View commit details
  2. Copy the full SHA
    15f68ac View commit details
  3. Copy the full SHA
    90ad411 View commit details
  4. Copy the full SHA
    ff73dc5 View commit details
  5. Copy the full SHA
    9bb473d View commit details

Commits on May 10, 2021

  1. Copy the full SHA
    9f35684 View commit details
  2. fix: google code format

    oliemansm committed May 10, 2021
    Copy the full SHA
    0f9cadd View commit details

Commits on May 11, 2021

  1. Copy the full SHA
    a1274bf View commit details
  2. Copy the full SHA
    8f44046 View commit details
  3. Copy the full SHA
    58e02d1 View commit details
  4. Copy the full SHA
    03d81a3 View commit details
  5. Copy the full SHA
    62db3d1 View commit details
  6. Copy the full SHA
    87ac673 View commit details
  7. feat: fix unit tests

    oliemansm committed May 11, 2021
    Copy the full SHA
    5573ef1 View commit details
  8. feat: fix unit tests

    oliemansm committed May 11, 2021
    Copy the full SHA
    09f59a8 View commit details
  9. Copy the full SHA
    79f9f77 View commit details
  10. Copy the full SHA
    718d8de View commit details
  11. Copy the full SHA
    e27a27b View commit details
  12. Copy the full SHA
    65ce6d9 View commit details
  13. Copy the full SHA
    73a35e1 View commit details
  14. Copy the full SHA
    f7e7bea View commit details
  15. Copy the full SHA
    bb36c10 View commit details
  16. Copy the full SHA
    3e56798 View commit details
  17. Copy the full SHA
    e6df35e View commit details
  18. Copy the full SHA
    56cf9fe View commit details
  19. Copy the full SHA
    401a3d9 View commit details
  20. Copy the full SHA
    efcd618 View commit details
  21. Copy the full SHA
    d22a92f View commit details
  22. fix: google code format

    oliemansm committed May 11, 2021
    Copy the full SHA
    188f0ed View commit details
  23. Copy the full SHA
    f8768ac View commit details

Commits on May 12, 2021

  1. Copy the full SHA
    46c0ae5 View commit details
  2. Copy the full SHA
    8a9da81 View commit details

Commits on May 13, 2021

  1. chore: clean up samples

    oliemansm committed May 13, 2021
    Copy the full SHA
    65546fb View commit details
  2. Copy the full SHA
    fd91df1 View commit details
  3. Copy the full SHA
    fc19251 View commit details
Showing 551 changed files with 4,813 additions and 5,179 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
name: Gradle Wrapper Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1

test:
@@ -19,16 +19,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 8
distribution: 'temurin'
java-version: 17
- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
env:
java-version: 8
java-version: 17
with:
path: |
~/.gradle/caches
@@ -47,16 +47,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 8
distribution: 'temurin'
java-version: 17
- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
env:
java-version: 8
java-version: 17
with:
path: |
~/.gradle/caches
@@ -78,22 +78,22 @@ jobs:
needs: validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
distribution: 'temurin'
java-version: 17
- name: Cache SonarCloud packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
37 changes: 21 additions & 16 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -8,19 +8,19 @@ jobs:
name: Gradle Wrapper Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1

commitlint:
name: Validate conventional commits
runs-on: ubuntu-latest
needs: validation
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout
with:
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
name: Setup Node
with:
node-version: 14
@@ -33,19 +33,19 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 8, 11, 16 ]
needs: [ validation, commitlint, verify-google-java-format ]
java: [ 17 ]
needs: [ validation, commitlint ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
env:
java-version: ${{ matrix.java }}
with:
@@ -64,6 +64,11 @@ jobs:
if: matrix.os == 'windows-latest'
shell: cmd
run: gradlew --info check
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: always() && matrix.os != 'ubuntu-latest'
with:
files: '**/build/test-results/**/*.xml'

build:
name: Sonar analysis
@@ -72,26 +77,26 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
if: env.SONAR_TOKEN != null
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
- name: Set up JDK 17
if: env.SONAR_TOKEN != null
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
distribution: 'temurin'
java-version: 17
- name: Cache SonarCloud packages
if: env.SONAR_TOKEN != null
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
if: env.SONAR_TOKEN != null
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ jobs:
name: Gradle Wrapper Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1

test:
@@ -15,16 +15,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 8
distribution: 'temurin'
java-version: 17
- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
env:
java-version: 8
java-version: 17
with:
path: |
~/.gradle/caches
@@ -43,16 +43,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 8
distribution: 'temurin'
java-version: 17
- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
env:
java-version: 8
java-version: 17
with:
path: |
~/.gradle/caches
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -69,3 +69,4 @@ fabric.properties

**/node_modules
**/.husky
/projectFilesBackup/.idea/workspace.xml
16 changes: 14 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
# Table of contents

- [How to contribute](#how-to-contribute)
- [Answering questions and writing documentation](#answering-questions-and-writing-documentation)
- [Submitting changes](#submitting-changes)
- [Coding conventions](#coding-conventions)
- [SonarLint](#sonarlint)
- [Commit messages](#commit-messages)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

# How to contribute

We're really glad you're reading this, because we need more volunteer developers to help with this
@@ -71,6 +84,5 @@ To remove the git hook, just delete the `commitlint/.husky` folder.

As for the optional scope part of the commit message:
- if your commit addresses an issue, please refer the issue number in the scope - e.g. `fix(#123): ...`
- otherwise, if applicable, please use the modified / affected subproject name, without the repetitive prefix/postfix
parts (like `graphql-kickstart-spring-boot`, `spring-boot-starter` or `autoconfigure`) - e.g. `feat(webflux): ...`
- otherwise, if applicable, please refer to the added or modified feature - e.g. `feat(webflux): ...`

Loading