Skip to content
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: tamarinkeisari/nessie-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: projectnessie/nessie-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
Showing with 2,236 additions and 1,511 deletions.
  1. +4 −3 .github/workflows/ci.yml
  2. +5 −6 .github/workflows/release-create.yml
  3. +2 −2 gradle/wrapper/gradle-wrapper.properties
  4. +2,208 −1,483 package-lock.json
  5. +16 −16 package.json
  6. +1 −1 version.txt
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -69,8 +69,9 @@ jobs:
run: npm test -- --coverage
- name: NPM lint
run: npm run lint
- name: Generate UI jar
uses: gradle/actions/setup-gradle@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
arguments: jar
- name: Generate UI jar
run: ./gradlew jar
11 changes: 5 additions & 6 deletions .github/workflows/release-create.yml
Original file line number Diff line number Diff line change
@@ -66,11 +66,12 @@ jobs:
uses: ./.github/actions/dev-tool-java
### END runner setup

- name: Bump to release version
uses: gradle/actions/setup-gradle@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
arguments: :bumpVersion --bumpType ${{ env.BUMP_TYPE }} --bumpToRelease
- name: Bump to release version
run: ./gradlew :bumpVersion --bumpType ${{ env.BUMP_TYPE }} --bumpToRelease

- name: Get release version
run: |
@@ -129,9 +130,7 @@ jobs:
# Bump to the next patch version as a SNAPSHOT
- name: Bump to next patch version
uses: gradle/actions/setup-gradle@v3
with:
arguments: :bumpVersion --bumpType patch
run: ./gradlew :bumpVersion --bumpType patch

- name: Get next patch version
run: |
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=f8b4f4772d302c8ff580bc40d0f56e715de69b163546944f787c87abf209c961
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
distributionSha256Sum=fba8464465835e74f7270bbf43d6d8a8d7709ab0a43ce1aa3323f73e9aa0c612
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading