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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0822e53f40e94e9d3c113babd747f20676c51706e0fcb8c7d4f73ab30dba1264'
4
- data.tar.gz: fe3f9dc1576f199f0194e298e60330f56542ed235a65808c6edaacc6079a822e
3
+ metadata.gz: 21d326bbe0f9c09a524773b3dbc83fb9e6e337642262e4168ce220f39fd2f4a5
4
+ data.tar.gz: fee26064c4c28c05f63ae5143b98d19f875947f5bf08b5916d24346ab204ba92
5
5
  SHA512:
6
- metadata.gz: 5ec28829f3743f5fae51f54d7a387c2c2e22a79674d94c7e9af8230f0c4f0e32bbb4cfeb7e668077a68c19cad310397d81144fb78d915641636894fef8af4e24
7
- data.tar.gz: cad3a37461ad7158b6e44711dd3e8b3e2b34ddc70ae95b038c9e4794c072fd7326f8a9d7ee0c19e1c0ffbc6ec2f66e2a26cd3589f8cd01a0ac7f991c60824aa3
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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.34.0'
5
+ VERSION = '0.34.1'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.34.0",
3
+ "version": "0.34.1",
4
4
  "description": "AppyDave YouTube Automation Tools",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appydave-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.34.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys