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
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
"debug.javascript.defaultRuntimeExecutable": {
"pwa-node": "/Users/devon/.local/share/mise/shims/node"
},
"python.defaultInterpreterPath": "/Users/devon/.local/share/mise/installs/python/3.13.2/bin/python"
"python.defaultInterpreterPath": "/Users/devon/.local/share/mise/installs/python/3.13.2/bin/python",
"java.jdt.ls.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2",
"java.import.gradle.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2"
Comment on lines +13 to +14
Copy link

Copilot AI Oct 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These settings contain user-specific absolute paths that will not work for other developers. Consider removing this file from version control by adding it to .gitignore, or use relative paths/environment variables that work across different development environments.

Suggested change
"java.jdt.ls.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2",
"java.import.gradle.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2"
"java.jdt.ls.java.home": "/Users/devon/.local/share/mise/installs/java/17.0.2"

Copilot uses AI. Check for mistakes.
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.4.2-SNAPSHOT
version=3.5.0-SNAPSHOT
mavenCentralPublishing=true
mavenCentralAutomaticPublishing=true
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import org.passay.dictionary.ArrayWordList;
import org.passay.dictionary.WordListDictionary;
import org.passay.dictionary.WordLists;
import org.passay.dictionary.sort.ArraysSort;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.MessageSource;
import org.springframework.core.io.Resource;
Expand Down Expand Up @@ -100,7 +101,7 @@ private void initCommonPasswords() {
try (
Reader reader = new BufferedReader(
new InputStreamReader(commonPasswordsResource.getInputStream()))) {
ArrayWordList wordList = WordLists.createFromReader(new Reader[] { reader }, false);
ArrayWordList wordList = WordLists.createFromReader(new Reader[] { reader }, false, new ArraysSort());
WordListDictionary dictionary = new WordListDictionary(wordList);
commonPasswordRule = new DictionaryRule(dictionary);
log.info("Common password dictionary initialized successfully.");
Expand Down