diff --git a/Changelog.md b/Changelog.md index b595f415..ea14963f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ This page contains information about changes to the PowerBI Visual Tools (pbiviz). +## 5.5.1 +* Fixed subtotal feature check + ## 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. diff --git a/package-lock.json b/package-lock.json index 44d4c235..f8e4174b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "powerbi-visuals-tools", - "version": "5.5.0", + "version": "5.5.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "powerbi-visuals-tools", - "version": "5.5.0", + "version": "5.5.1", "license": "MIT", "dependencies": { "@typescript-eslint/parser": "^7.12.0", @@ -6370,9 +6370,9 @@ } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "engines": { "node": ">=10.0.0" }, @@ -6607,9 +6607,9 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { "node": ">=8.3.0" }, diff --git a/package.json b/package.json index ddb3ddca..85815c34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "powerbi-visuals-tools", - "version": "5.5.0", + "version": "5.5.1", "description": "Command line tool for creating and publishing visuals for Power BI", "main": "./bin/pbiviz.js", "type": "module", diff --git a/src/features/TotalSubTotal.ts b/src/features/TotalSubTotal.ts index fedcf15c..d5411bb5 100644 --- a/src/features/TotalSubTotal.ts +++ b/src/features/TotalSubTotal.ts @@ -11,6 +11,6 @@ export default class TotalSubTotal implements BaseFeature { public static errorMessage = `${this.featureName} - ${this.documentationLink}` static isSupported(packageInstance: Package) { - return packageInstance.isCapabilityEnabled({ subtotals: true }) + return packageInstance.isCapabilityEnabled({ subtotals: {} }) } } \ No newline at end of file