From 7c3239b2bf6d78eb3e6addbc46c7df12d39e1edd Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 11:28:51 +0200 Subject: [PATCH 1/8] adds project words --- .vscode/dictionaries/project-words.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.vscode/dictionaries/project-words.txt b/.vscode/dictionaries/project-words.txt index 8813993..bb13c9f 100644 --- a/.vscode/dictionaries/project-words.txt +++ b/.vscode/dictionaries/project-words.txt @@ -1,5 +1,8 @@ -CAFS -gitea -gitlocal -hashtable -umami +CAFS +gitea +gitlocal +hashtable +lastmod +UCS +umami +Veyor -- 2.45.1 From 64ddadc5abd67a693802a7327acca5be47358a88 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 11:29:01 +0200 Subject: [PATCH 2/8] add new post --- .../posts/pscredentialstore-update/index.md | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 content/posts/pscredentialstore-update/index.md diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md new file mode 100644 index 0000000..a85d926 --- /dev/null +++ b/content/posts/pscredentialstore-update/index.md @@ -0,0 +1,46 @@ +--- +title: "✨ PSCredentialStore 1.1.0 is released" +date: 2022-09-21T10:14:18+02:00 +draft: true + +categories: ['Projects'] +tags: ['PSCredentialStore'] + +# lastmod: 2022-09-21T10:14:18+02:00 +# showDateUpdated: true + +# custom overrides for pages +# showDate: false +# showAuthor: false +# showWordCount: false +# showReadingTime: false +# showTableOfContents: false +# showTaxonomies: true +# showEdit: false +# sharingLinks: [null] +--- + +![PSCredLogo](https://gitea.ocram85.com/OCram85/PSCredentialStore/raw/branch/master/assets/social-logo.png) + +Today I'm proud to present the release of PSCredentialStore version [1.1.0](https://www.powershellgallery.com/packages/PSCredentialStore/1.1.0). + +This version was mainly focused on updating the build pipeline and codebase. +So let me explain the changes in detail: + +- 🧰 Reworked the build pipeline and replace Travis, AppVeyor by Drone.IO. +- 🧰 Updated the PowerShell style to the lates community standards. +- 🧰 Migrated from Github to [self hosted Gitea](https://gitea.ocram85.com/OCram85/PSCredentialStore). +- 🧰 Migrated to self hosted Drone and Woodpecker CI. +- 🧰 Updated Pester unit tests to Pester5+ syntax. +- Šī¸ Changed from MIT to GNU AGPLv3 license. +- 🧰 Removed the optional dependency helper. +- đŸ“Ļ Updated embedded OpenSSL (LibreSSL) files to version 3.5.3. + - Started building and deploying the LibreSSL windows portable version on Github: https://github.com/OCram85/libressl-portable. +- 🧰 Added gitea project template files for issues and pull requests. +- 🤖 Implemented [DroneHelper](https://gitea.ocram85.com/OCram85/DroneHelper) base Drone pipeline. + +Additionally we fixed some issues and added new connection types: + +- 🌟 Added CiscoUCSCentral connection type +- 🐛 Fixed `Test-CredentialStoreItem` output +- 🐛 Fixed CiscoUCS connection -- 2.45.1 From 8b013652cc0ccec3ad4462a3ee20ce5b03eebf16 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 11:44:01 +0200 Subject: [PATCH 3/8] fix edit post link --- config/_default/params.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/_default/params.toml b/config/_default/params.toml index c83a98e..5d81171 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -28,7 +28,7 @@ showScrollToTop = true showBreadcrumbs = false showDraftLabel = true showEdit = true - editURL = "https://github.com/OCram85/Blog/edit/master/content/" + editURL = "https://gitea.ocram85.com/OCram85/Blog/_edit/psCredUpdate/content/" editAppendPath = true showHeadingAnchors = true showPagination = true -- 2.45.1 From f021c83653ce8259c4500549066a5f4aa262ce52 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 11:44:13 +0200 Subject: [PATCH 4/8] disable post draft mode --- content/posts/pscredentialstore-update/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md index a85d926..aa453b4 100644 --- a/content/posts/pscredentialstore-update/index.md +++ b/content/posts/pscredentialstore-update/index.md @@ -1,7 +1,7 @@ --- title: "✨ PSCredentialStore 1.1.0 is released" date: 2022-09-21T10:14:18+02:00 -draft: true +draft: false categories: ['Projects'] tags: ['PSCredentialStore'] -- 2.45.1 From 07c0f7c241faca9139d615bdbed435a32b322bca Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 11:46:04 +0200 Subject: [PATCH 5/8] replace emoji --- content/posts/pscredentialstore-update/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md index aa453b4..f672de4 100644 --- a/content/posts/pscredentialstore-update/index.md +++ b/content/posts/pscredentialstore-update/index.md @@ -32,7 +32,7 @@ So let me explain the changes in detail: - 🧰 Migrated from Github to [self hosted Gitea](https://gitea.ocram85.com/OCram85/PSCredentialStore). - 🧰 Migrated to self hosted Drone and Woodpecker CI. - 🧰 Updated Pester unit tests to Pester5+ syntax. -- Šī¸ Changed from MIT to GNU AGPLv3 license. +- đŸ’Ŗ Changed from MIT to GNU AGPLv3 license. - 🧰 Removed the optional dependency helper. - đŸ“Ļ Updated embedded OpenSSL (LibreSSL) files to version 3.5.3. - Started building and deploying the LibreSSL windows portable version on Github: https://github.com/OCram85/libressl-portable. -- 2.45.1 From 246d7ee86d8a369576b14bd72c2fe7d49543079e Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 13:42:46 +0200 Subject: [PATCH 6/8] add badges --- content/posts/pscredentialstore-update/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md index f672de4..93bc839 100644 --- a/content/posts/pscredentialstore-update/index.md +++ b/content/posts/pscredentialstore-update/index.md @@ -22,6 +22,10 @@ tags: ['PSCredentialStore'] ![PSCredLogo](https://gitea.ocram85.com/OCram85/PSCredentialStore/raw/branch/master/assets/social-logo.png) +

+ +

+ Today I'm proud to present the release of PSCredentialStore version [1.1.0](https://www.powershellgallery.com/packages/PSCredentialStore/1.1.0). This version was mainly focused on updating the build pipeline and codebase. @@ -44,3 +48,10 @@ Additionally we fixed some issues and added new connection types: - 🌟 Added CiscoUCSCentral connection type - 🐛 Fixed `Test-CredentialStoreItem` output - 🐛 Fixed CiscoUCS connection + +You can find the PSCredential store at [PowerShell Gallery](https://www.powershellgallery.com/packages/PSCredentialStore) +and [gitea.ocram85.com](https://gitea.ocram85.com/OCram85/PSCredentialStore/releases) + +❤ī¸ Feel free to install or upgrade to the latest version with `Install-Module -Name 'PSCredentialStore' -Force` + +![forthebadge](https://forthebadge.com/images/badges/contains-17-coffee-cups.svg) -- 2.45.1 From 272b2042c21f903373203999fcaa71595dc5f446 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 13:43:46 +0200 Subject: [PATCH 7/8] fix typo --- content/posts/pscredentialstore-update/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md index 93bc839..2ee6e5d 100644 --- a/content/posts/pscredentialstore-update/index.md +++ b/content/posts/pscredentialstore-update/index.md @@ -50,8 +50,8 @@ Additionally we fixed some issues and added new connection types: - 🐛 Fixed CiscoUCS connection You can find the PSCredential store at [PowerShell Gallery](https://www.powershellgallery.com/packages/PSCredentialStore) -and [gitea.ocram85.com](https://gitea.ocram85.com/OCram85/PSCredentialStore/releases) +and [gitea.ocram85.com](https://gitea.ocram85.com/OCram85/PSCredentialStore/releases). -❤ī¸ Feel free to install or upgrade to the latest version with `Install-Module -Name 'PSCredentialStore' -Force` +❤ī¸ Feel free to install or upgrade to the latest version with `Install-Module -Name 'PSCredentialStore' -Force`. ![forthebadge](https://forthebadge.com/images/badges/contains-17-coffee-cups.svg) -- 2.45.1 From 0115f4801b449cf7f82358ed4b91c6b20d34face Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 13:50:41 +0200 Subject: [PATCH 8/8] simplify install command --- content/posts/pscredentialstore-update/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md index 2ee6e5d..c4f4c06 100644 --- a/content/posts/pscredentialstore-update/index.md +++ b/content/posts/pscredentialstore-update/index.md @@ -52,6 +52,10 @@ Additionally we fixed some issues and added new connection types: You can find the PSCredential store at [PowerShell Gallery](https://www.powershellgallery.com/packages/PSCredentialStore) and [gitea.ocram85.com](https://gitea.ocram85.com/OCram85/PSCredentialStore/releases). -❤ī¸ Feel free to install or upgrade to the latest version with `Install-Module -Name 'PSCredentialStore' -Force`. +Feel free to install or upgrade to the latest version with the following command. + +```powershell +Install-Module -Name 'PSCredentialStore' -Force +``` ![forthebadge](https://forthebadge.com/images/badges/contains-17-coffee-cups.svg) -- 2.45.1