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

Caused by: java.lang.NullPointerException: null at com.bettercloud.vault.rest.Rest.responseBodyBytes #254

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ca70544
JVD-1 Rename packages, update version (#2)
tledkov Oct 6, 2022
5a27c54
Try to print failed tests
tledkov Oct 9, 2022
27d81a6
VJD-3 Fix parse Auth.unwrap response without auth data, add Auth.wrap…
tledkov Oct 9, 2022
f94fe91
Prepare to deploy
Oct 9, 2022
6bf9a52
Update issue templates
tledkov Oct 10, 2022
e797cad
vjd-7 Upgrade tests dependencies (#11)
tledkov Oct 10, 2022
34f038c
vjd-10 Retry logic refactoring (#12)
tledkov Oct 10, 2022
abdd9cf
Publish javadoc to jopenlibs.github.io/vault-java-drive/javadoc
tledkov Oct 11, 2022
20117b2
Add copyright
tledkov Oct 11, 2022
12cbed8
Fix workflow
tledkov Oct 11, 2022
7f20b8d
Workflow: upload artifacts
tledkov Oct 11, 2022
230a61e
Workflow: upload artifacts
tledkov Oct 11, 2022
6ff349a
Merge remote-tracking branch 'origin/master'
tledkov Oct 11, 2022
03bb16e
Update test-report.yml
tledkov Oct 11, 2022
4c47b56
Update test reporter
tledkov Oct 11, 2022
a11a0c7
Update test reporter: fix reporter format
tledkov Oct 11, 2022
f59c241
Update gradle workflow: fix reporter format
tledkov Oct 11, 2022
fa3d2b0
VJD-15 Port the PR added X-Vault-Request header (#16)
tledkov Oct 11, 2022
4a13ebe
VJD-5 Support /sys/wrapping/rewrap endpoint (#17)
tledkov Oct 14, 2022
bc50a47
Update gradle.yml
tledkov Oct 14, 2022
ac3baa3
Update after release 5.2.0
tledkov Oct 14, 2022
e64e0e0
Fix in Leases section (#18)
henryx Feb 13, 2023
651ac0e
Applied code style format (#19)
henryx Feb 22, 2023
f32c8ba
Parametrize integration tests (#21)
henryx Feb 26, 2023
2e8cf71
Add custom Vault Authentication Path when using k8s login method (#27)
dttung2905 Apr 6, 2023
4f32bb5
Reorganized /sys/* endpoints (#25)
henryx Apr 6, 2023
f4c4da7
Released 5.3.0 (#28)
henryx Apr 11, 2023
72eba45
Add overloading method loginByKubernetes() with custom authPath (#29)
dttung2905 Apr 16, 2023
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
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[IMPROVEMENT] "
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Task
about: Task to do
title: "[TASK] "
labels: task
assignees: ''

---


57 changes: 49 additions & 8 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,66 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"

jobs:
build:
name: Build on JDK ${{ matrix.java }} and ${{ matrix.os }}
name: Build on JDK ${{ matrix.java }}, ${{ matrix.os }} and Vault ${{ matrix.vault }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [9, 11, 12]
os: [ubuntu-latest, windows-latest]
java:
- 11
vault:
- 1.10.11
- 1.11.0
- 1.11.1
- 1.11.2
- 1.11.3
- 1.11.4
- 1.11.5
- 1.11.6
- 1.11.7
- 1.11.8
- 1.12.0
- 1.12.1
- 1.12.2
- 1.12.3
- 1.12.4
- 1.13.0
- latest
os:
- ubuntu-latest
- windows-latest
include:
# TODO(casz) remove once https://github.com/testcontainers/testcontainers-java/pull/1780 is available
- os: 'ubuntu-latest'
tasks: 'integrationTest'
- os: 'ubuntu-latest'
tasks: 'integrationTest'

steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Build with Gradle
run: ./gradlew build ${{ matrix.tasks }} -s --info
uses: gradle/gradle-build-action@v2
with:
arguments: |
build
${{ matrix.tasks }}
-s
--info
env:
VAULT_VERSION: ${{ matrix.vault }}
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: build/test-results/
19 changes: 19 additions & 0 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Test Report'
on:
workflow_run:
workflows: [ 'CI' ] # runs after CI workflow
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results
name: Tests Report
path: '**/*.xml'
reporter: java-junit
list-suites: 'all'
list-tests: 'all'

6 changes: 4 additions & 2 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading