Skip to content

Commit

Permalink
Bump org.jenkins-ci.plugins:plugin from 4.76 to 4.77 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Feb 10, 2024
1 parent be3d4f0 commit 73e3744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.76</version>
<version>4.77</version>
</parent>

<artifactId>mask-passwords</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,11 @@ public class MaskPasswordsConfig {
* Deprecated in favor of globalVarMaskRegexesMap which has label names mapped to value's for better identification
*/
@Deprecated
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public List<VarMaskRegex> globalVarMaskRegexes;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public List<VarMaskRegexEntry> globalVarMaskRegexesU;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public HashMap<String, VarMaskRegex> globalVarMaskRegexesMap;
/**
* Whether or not to enable the plugin globally on ALL BUILDS.
Expand Down

0 comments on commit 73e3744

Please sign in to comment.