Skip to content

Commit

Permalink
Prepare for v0.8.3 release (#130)
Browse files Browse the repository at this point in the history
* Prepare for v0.8.3 release

* update PR number in changelog ref
  • Loading branch information
fairclothjm authored Aug 31, 2023
1 parent a099c85 commit 35017ad
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Check OSV
id: osv-check
run: |
test $(curl -XPOST https://api.osv.dev/v1/query -d '{"package":{"name":"oracle-instantclient19.18-basic"}, "version": "19.18"}') = "{}"
test $(curl -XPOST https://api.osv.dev/v1/query -d '{"package":{"name":"oracle-instantclient19.20-basic"}, "version": "19.20"}') = "{}"
- name: Check NIST NVD
id: nvd-check
run: |
test $(curl -sSL 'https://services.nvd.nist.gov/rest/json/cves/2.0?cpeName=cpe:2.3:a:oracle:instant_client:19.18:*' | jq .totalResults) -eq 0
test $(curl -sSL 'https://services.nvd.nist.gov/rest/json/cves/2.0?cpeName=cpe:2.3:a:oracle:instant_client:19.20:*' | jq .totalResults) -eq 0
get-product-version:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.4
1.20.7
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## Unreleased

## 0.8.3 (August 31, 2023)
IMPROVEMENTS:
* Update dependencies [GH-129](https://github.com/hashicorp/vault-plugin-database-oracle/pull/129)
* `github.com/hashicorp/vault/api` v1.9.1 -> v1.9.2
* `github.com/hashicorp/vault/sdk` v0.9.0 -> v0.9.2
* Update dependencies [GH-130](https://github.com/hashicorp/vault-plugin-database-oracle/pull/130)
* Update Go to 1.20.7
* Update Oracle Instant Client to 19.20

## 0.8.2 (May 25, 2023)

Improvements:
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN yum update -y && yum install -y \
zip \
git

ENV GOLANG_VERSION 1.20.4
ENV GOLANG_VERSION 1.20.7

RUN set -eux; \
url="https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz"; \
Expand All @@ -34,8 +34,8 @@ ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
ENV PKG_CONFIG_PATH $GOPATH/src/github.com/hashicorp/vault-plugin-database-oracle/scripts/linux_amd64

RUN yum install -y \
oracle-instantclient19.18-basic \
oracle-instantclient19.18-devel
oracle-instantclient19.20-basic \
oracle-instantclient19.20-devel

RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" "$GOPATH/src/github.com/hashicorp/vault-plugin-database-oracle" && chmod -R 777 "$GOPATH"

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ SDK the plugin was built with:

|Plugin Release|Instant Client Version|
|---|---|
|v0.8.3|19.20|
|v0.8.2|19.18|
|v0.8.1|19.18|
|v0.8.0|19.18|
|v0.7.0|19.6 |
Expand Down
6 changes: 3 additions & 3 deletions scripts/linux_amd64/oci8.pc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
libdir=/usr/lib/oracle/19.18/client64/lib
includedir=/usr/include/oracle/19.18/client64
libdir=/usr/lib/oracle/19.20/client64/lib
includedir=/usr/include/oracle/19.20/client64

Name: oci8
Description: oci8 library
Libs: -L${libdir} -lclntsh
Cflags: -I${includedir}
Version: 19.18
Version: 19.20

0 comments on commit 35017ad

Please sign in to comment.