From f8b747c358a15c32c4a3657a5d04e260f742650e Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 21 Sep 2022 13:55:07 +0200 Subject: [PATCH] adds PSCredentialStore 1.1.0 release post (#23) #### :book: Summary - adds new post #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [x] Tested via CI pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification #### :books: Additional Notes Co-authored-by: OCram85 Reviewed-on: https://gitea.ocram85.com/OCram85/Blog/pulls/23 --- .vscode/dictionaries/project-words.txt | 13 ++-- config/_default/params.toml | 2 +- .../posts/pscredentialstore-update/index.md | 61 +++++++++++++++++++ 3 files changed, 70 insertions(+), 6 deletions(-) create mode 100644 content/posts/pscredentialstore-update/index.md 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 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 diff --git a/content/posts/pscredentialstore-update/index.md b/content/posts/pscredentialstore-update/index.md new file mode 100644 index 0000000..c4f4c06 --- /dev/null +++ b/content/posts/pscredentialstore-update/index.md @@ -0,0 +1,61 @@ +--- +title: "✨ PSCredentialStore 1.1.0 is released" +date: 2022-09-21T10:14:18+02:00 +draft: false + +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 + +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 the following command. + +```powershell +Install-Module -Name 'PSCredentialStore' -Force +``` + +![forthebadge](https://forthebadge.com/images/badges/contains-17-coffee-cups.svg)