From 7131c49218200c56c06ef10000892828c12a1292 Mon Sep 17 00:00:00 2001 From: Fatih Acet Date: Thu, 17 Jan 2019 10:25:07 +0100 Subject: [PATCH] Release v1.9.0 with custom key pairs support --- CHANGELOG.md | 7 +++++++ README.md | 8 ++++++++ package.json | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 635f684..e0d1f4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## [1.9.0] - 2019-01-17 + +### Added +- Support for crt/key pair certificates for users that may use a *.p12 certificate + - Implemented by [@joshanne](https://gitlab.com/joshanne) with [MR !29](https://gitlab.com/fatihacet/gitlab-vscode-extension/merge_requests/29) 👍 + + ## [1.8.0] - 2019-01-02 ### Added diff --git a/README.md b/README.md index fd6143a..a159347 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,14 @@ You can toggle visibility of MR link in your sidebar. You can always find MR lin If your self-hosted GitLab instance has a self-signed SSL certificate you would probably need to set this option in to point your certificate file. More discussion can be found [in this issue](https://gitlab.com/fatihacet/gitlab-vscode-extension/issues/26). +**`gitlab.cert`** _(required: false, default: null)_ + +If your self-hosted GitLab instance requires a custom cert/key pair you would probably need to set this option in to point your certificate file. Please also see `gitlab.certKey` option. More information [here](https://gitlab.com/fatihacet/gitlab-vscode-extension/merge_requests/29#note_132284448). + +**`gitlab.certKey`** _(required: false, default: null)_ + +If your self-hosted GitLab instance requires a custom cert/key pair you would probably need to set this option in to point your certificate key file. Please also see `gitlab.cert` option. More information [here](https://gitlab.com/fatihacet/gitlab-vscode-extension/merge_requests/29#note_132284448). + **`gitlab.ignoreCertificateErrors`** _(required: false, default: false)_ If you are using a self-hosted GitLab instance with no SSL certificate or having certificate issues and unable to use the extension you may want to set this option to `true` to ignore certificate errors. More information can be found [here](https://gitlab.com/fatihacet/gitlab-vscode-extension/issues/26#note_61312786). diff --git a/package.json b/package.json index 53943b1..633afb7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "gitlab-workflow", "displayName": "GitLab Workflow", "description": "GitLab VSCode integration", - "version": "1.8.0", + "version": "1.9.0", "publisher": "fatihacet", "license": "MIT", "repository": { -- GitLab