@travetto/config 3.2.1 → 3.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/config",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "Configuration support",
5
5
  "keywords": [
6
6
  "yaml",
@@ -26,9 +26,9 @@
26
26
  "directory": "module/config"
27
27
  },
28
28
  "dependencies": {
29
- "@travetto/di": "^3.2.1",
30
- "@travetto/schema": "^3.2.1",
31
- "@travetto/yaml": "^3.2.1"
29
+ "@travetto/di": "^3.2.2",
30
+ "@travetto/schema": "^3.2.2",
31
+ "@travetto/yaml": "^3.2.2"
32
32
  },
33
33
  "travetto": {
34
34
  "displayName": "Configuration"
@@ -28,7 +28,7 @@ export class Configuration {
28
28
  #storage: Record<string, unknown> = {}; // Lowered, and flattened
29
29
  #profiles: string[] = ['application', ...GlobalEnv.profiles, 'override'];
30
30
  #sources: string[] = [];
31
- #secrets: (RegExp | string)[] = [/password|private|secret|(api(-|_)?key)/i];
31
+ #secrets: (RegExp | string)[] = [/password|private|secret|salt|(api(-|_)?key)/i];
32
32
 
33
33
  /**
34
34
  * Get a sub tree of the config, or everything if namespace is not passed