Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions pmd-appexchange/docs/AvoidHardcodedCredentialsInSetPassword.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
AvoidHardcodedCredentialsInSetPassword[](#avoidhardcodedcredentialsinsetpassword)
------------------------------------------------------------------------------------------------------------------------------------------------------

**Violation:**

Avoid using hard-coded credentials with setPassword


**Priority:** Critical (1)

**Description:**

Detects hard-coded credentials in the call to setPassword().

**Example(s):**



Binary file modified pmd-appexchange/lib/pmd-aura-html-sf-0.1.jar
Binary file not shown.
Binary file modified pmd-appexchange/lib/pmd-customrules-utils-0.1.jar
Binary file not shown.
Binary file modified pmd-appexchange/lib/sf_metadata_pmd_xml-0.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion pmd7/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

// Keep this in sync with src/Constants.ts > PMD7_VERSION
var pmd7Version = "7.3.0"
var pmd7Version = "7.4.0"

val pmdDist7Dir = "$buildDir/../../dist/pmd7"

Expand Down
4 changes: 2 additions & 2 deletions src/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import os = require('os');
import path = require('path');

// Keep this in sync with <repoRoot>/pmd7/build.gradle.kts > pmd7Version
export const PMD7_VERSION = '7.3.0';
export const PMD7_VERSION = '7.4.0';

export const PMD_APPEXCHANGE_RULES_VERSION = '0.14';
export const PMD_APPEXCHANGE_RULES_VERSION = '0.15';

// Keep this in sync with <repoRoot>/sfge/build.gradle.kts > version
export const SFGE_VERSION = '1.0.1-pilot';
Expand Down