Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecated old logic and changed path for certificate #512

Merged
merged 13 commits into from
Jun 4, 2024
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This page contains information about changes to the PowerBI Visual Tools (pbiviz).

## 5.5.0
* Changed path for storing certificates. It allows the certificate to be reused regardless of tools version. New path is `({home directory}/pbiviz-certs)`.
* Windows version lower 10 is deprecated.
* Resolve of symlinks is disabled.

## 5.4.3
* Fixed bug with missing plugins for Eslint.
* New flag `--use-default` for `pbiviz package` and `pbiviz lint` commands. Use this command to lint files according to recommended lint config.
Expand Down
8 changes: 5 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
"package": { "dropFolder": "dist" },
"server": {
"assetsRoute": "/assets",
"privateKey": "certs/PowerBICustomVisualTest_private.key",
"certificate": "certs/PowerBICustomVisualTest_public.crt",
"pfx": "certs/PowerBICustomVisualTest_public.pfx"
"certificateFolder": "pbiviz-certs",
"privateKey": "PowerBICustomVisualTest_private.key",
"certificate": "PowerBICustomVisualTest_public.crt",
"pfx": "PowerBICustomVisualTest_public.pfx",
"passphrase": "PowerBICustomVisualTestPass.txt"
},
"visualTemplates": {
"circlecard": "https://codeload.github.com/microsoft/powerbi-visuals-circlecard-react/zip/master"
Expand Down
Loading
Loading