appydave-tools 0.34.0 → 0.34.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/appydave/tools/dam/project_resolver.rb +2 -0
- data/lib/appydave/tools/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21d326bbe0f9c09a524773b3dbc83fb9e6e337642262e4168ce220f39fd2f4a5
|
|
4
|
+
data.tar.gz: fee26064c4c28c05f63ae5143b98d19f875947f5bf08b5916d24346ab204ba92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6705b5f5acf0f21078a8250b63b6fe6236ace4148beb3dd26f0af0f423e0f2d260f6f7cb3c0ba6715295ac5e6a53b408343241dd7ea0c3dc15fc85d4675a6e5a
|
|
7
|
+
data.tar.gz: abb73404e467b4ead3c886ad7e43b2b4a3e0e9e029551d599cca2e13805f6565cffcc51eaecd440086f97846932e018e337d971bab74bac6122e83303d6f686a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [0.34.0](https://github.com/appydave/appydave-tools/compare/v0.33.0...v0.34.0) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix RuboCop Style/EmptyStringInsideInterpolation offense in orphaned folder message ([aa0890b](https://github.com/appydave/appydave-tools/commit/aa0890b9d06b09e02e78a4c69e666f9157c80660))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* improve s3-scan UX with table format and spinner - shows file counts for all projects, spinner progress indicator, valid/orphaned visual distinction, and clickable AWS Console URLs for cleanup ([6d8ac4e](https://github.com/appydave/appydave-tools/commit/6d8ac4e896f70c38927d44420bdbe9e722b17a4d))
|
|
12
|
+
|
|
1
13
|
# [0.33.0](https://github.com/appydave/appydave-tools/compare/v0.32.5...v0.33.0) (2025-11-21)
|
|
2
14
|
|
|
3
15
|
|
|
@@ -16,6 +16,8 @@ module Appydave
|
|
|
16
16
|
# @param project_hint [String] Project name or pattern (e.g., 'b65', 'boy-baker', 'b6*')
|
|
17
17
|
# @return [String, Array<String>] Full project name or array of names for patterns
|
|
18
18
|
def resolve(brand, project_hint)
|
|
19
|
+
raise '❌ Project name is required' if project_hint.nil? || project_hint.empty?
|
|
20
|
+
|
|
19
21
|
# Check for pattern (wildcard)
|
|
20
22
|
return resolve_pattern(brand, project_hint) if project_hint.include?('*')
|
|
21
23
|
|
data/package.json
CHANGED