Skip to content

Commit

Permalink
Merge pull request #1792 from Bit-Quill/integ-update-odbc-links-1.5.0.0
Browse files Browse the repository at this point in the history
Update ODBC Driver Download Links
  • Loading branch information
dtaivpp authored Jul 24, 2023
2 parents 21dbdf9 + 57c6c26 commit 49864cb
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
role: driver
artifact_id: opensearch-sql-odbc
version: 1.5.0.0
platform: macos
architecture: x64
artifact_url: https://artifacts.opensearch.org/opensearch-clients/odbc/opensearch-sql-odbc-driver-64-bit-1.5.0.0-Darwin.pkg
slug: opensearch-sql-odbc-mac-1.5.0.0
category: opensearch
type: pkg
code_signer: true
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
role: driver
artifact_id: opensearch-sql-odbc
version: 1.5.0.0
platform: windows
architecture: x86
artifact_url: https://artifacts.opensearch.org/opensearch-clients/odbc/opensearch-sql-odbc-driver-32-bit-1.5.0.0-Windows.msi
slug: opensearch-sql-odbc-win32-1.5.0.0
category: opensearch
type: msi
windows_signer: true
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
role: driver
artifact_id: opensearch-sql-odbc
version: 1.5.0.0
platform: windows
architecture: x64
artifact_url: https://artifacts.opensearch.org/opensearch-clients/odbc/opensearch-sql-odbc-driver-64-bit-1.5.0.0-Windows.msi
slug: opensearch-sql-odbc-win64-1.5.0.0
category: opensearch
type: msi
windows_signer: true
---
16 changes: 15 additions & 1 deletion _layouts/versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ <h4 class="instruction-label">
{% if details.signature %}
{% capture artifact_extra %}
<div class="extra_links extra_{{artifact_id}}"> <a href="{{details.signature}}"> {{signature_pretty}} </a>
<a href="/verify-signatures.html">Signature verification how to</a></div>
<a href="/verify-signatures.html#Pgp">Signature verification how to</a></div>
{% endcapture %}
{% assign artifact_extras = artifact_extras | append: artifact_extra %}
{% endif %}
Expand All @@ -256,6 +256,20 @@ <h4 class="instruction-label">
{% endcapture %}
{% assign artifact_extras = artifact_extras | append: artifact_extra %}
{% endif %}
{% if details.code_signer %}
{% capture artifact_extra %}
<div class="extra_links extra_{{artifact_id}}">
<a href="/verify-signatures.html#CodeSigner">Signature verification how to</a></div>
{% endcapture %}
{% assign artifact_extras = artifact_extras | append: artifact_extra %}
{% endif %}
{% if details.windows_signer %}
{% capture artifact_extra %}
<div class="extra_links extra_{{artifact_id}}">
<a href="/verify-signatures.html#WindowsSigner">Signature verification how to</a></div>
{% endcapture %}
{% assign artifact_extras = artifact_extras | append: artifact_extra %}
{% endif %}
{% assign artifact_extra = nil %}
{% endfor %}
{%endfor%}
Expand Down
2 changes: 1 addition & 1 deletion _versions/2023-06-06-opensearch-2.8.0.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ components:
version: 2.8.0
- role: drivers
artifact: opensearch-sql-odbc
version: 1.1.0.1
version: 1.5.0.0
- role: drivers
artifact: opensearch-sql-jdbc
version: 1.3.0.0
Expand Down
47 changes: 41 additions & 6 deletions verify-signatures.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: How to verify signatures

## How to verify signatures for downloadable artifacts

### PGP
### <a name="Pgp">PGP</a>
Download our PGP key using the link below and import it.

If you’re using gpg, you just need to run:
Expand Down Expand Up @@ -36,14 +36,49 @@ To verify signature run in the terminal:
jarsigner -verify -verbose <path_to_jar>
```
### <a name="WindowsSigner">Windows</a>
ODBC driver .msi can be verified by a few different methods.
Verify signature in PowerShell version > 5.1:
```
Get-AuthenticodeSignature -FilePath <path_to_msi>
```
Verify signature using SigCheck:
- Download [SigCheck](https://learn.microsoft.com/en-us/sysinternals/downloads/sigcheck)
Verify signature using SignTool:
- Download [SignTool](https://learn.microsoft.com/en-us/windows/win32/seccrypto/using-signtool-to-verify-a-file-signature)
Signature Fingerprint:
```
2DA2 DC02 8EE6 42CD 77C4 BA04 F289 1F24 7831 2C29
```
### <a name="CodeSigner">CodeSign</a>
Signature of ODBC driver installer for MacOS could be verified using `pgkutil`.
To verify signature run in the terminal:
```
pkgutil --verbose --check-signature <path_to_pkg>
```
Certificate Fingerprint:
```
49 68 39 4A BA 83 3B F0 CC 5E 98 3B E7 C1 72 AC 85 97 65 18 B9 4C BA 34 62 BF E9 23 76 98 C5 DA
```
## Change Log ##
<div class="table-styler"></div>
| Date | Issue | Created | Expires |
|:-------------|:-------|:----------------|:----------------|
| 2022-05-11 | [Issue 2040](https://github.com/opensearch-project/opensearch-build/issues/2040){:target="_blank"} | 2022-05-12 | 2023-05-12 |
| 2023-05-04 | [Issue 2136](https://github.com/opensearch-project/opensearch-build/issues/2136){:target="_blank"} | 2023-05-03 | 2024-05-12 |
| 2023-06-21 | [Issue 97](https://github.com/opensearch-project/sql-jdbc/issues/97){:target="_blank"} | 2023-04-13 | 2031-11-09 |
| Date | Issue | Created | Expires |
|:-----------|:-------|:-----------|:-----------|
| 2022-05-11 | [Issue 2040](https://github.com/opensearch-project/opensearch-build/issues/2040){:target="_blank"} | 2022-05-12 | 2023-05-12 |
| 2023-05-04 | [Issue 2136](https://github.com/opensearch-project/opensearch-build/issues/2136){:target="_blank"} | 2023-05-03 | 2024-05-12 |
| 2023-06-21 | [Issue 97](https://github.com/opensearch-project/sql-jdbc/issues/97){:target="_blank"} | 2023-04-13 | 2031-11-09 |
| 2023-07-17 | [Issue 3633](https://github.com/opensearch-project/opensearch-build/issues/3633){:target="_blank"} | 2023-07-05 | 2027-06-28 |
<br>

0 comments on commit 49864cb

Please sign in to comment.