appydave-tools 0.25.0 → 0.27.0
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 +14 -0
- data/lib/appydave/tools/dam/s3_operations.rb +8 -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: 98ad1a8b7a772bba1b2ad08693eb15fb76d6e10529a2bbbb374b75305139d34a
|
|
4
|
+
data.tar.gz: 1fb1f348214919a632bc529a6cb6dfdac36a19c40f8dc759709c0d3f77ba98c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d722f6768edd7f46e570e5a4d3d819848a7951640fa4a4ea10ae2ff057d57beafda651e8003e46c370c30122152b13dded3c632ad981815eed41f0ca295307b5
|
|
7
|
+
data.tar.gz: 4dd29b411a49b5a9b220383c479b2046ff3cb75987af0b453f4395d5cbcd999cdfe80ffaab73d29a03925978b0a2b8a3f2e670096580653953961c8af14d9b4d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [0.26.0](https://github.com/appydave/appydave-tools/compare/v0.25.0...v0.26.0) (2025-11-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* exclude Windows Zone.Identifier files from upload and archive ([e018b6d](https://github.com/appydave/appydave-tools/commit/e018b6d9750394e38877421d49a9dd7d4319315c))
|
|
7
|
+
|
|
8
|
+
# [0.25.0](https://github.com/appydave/appydave-tools/compare/v0.24.0...v0.25.0) (2025-11-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add download timing using shared format_duration helper ([c729792](https://github.com/appydave/appydave-tools/commit/c729792c89507e16ce4c51de55c7a05173da97e7))
|
|
14
|
+
|
|
1
15
|
# [0.24.0](https://github.com/appydave/appydave-tools/compare/v0.23.0...v0.24.0) (2025-11-19)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -26,6 +26,7 @@ module Appydave
|
|
|
26
26
|
**/.vercel/**
|
|
27
27
|
**/tmp/**
|
|
28
28
|
**/.DS_Store
|
|
29
|
+
**/*:Zone.Identifier
|
|
29
30
|
].freeze
|
|
30
31
|
|
|
31
32
|
def initialize(brand, project_id, brand_info: nil, brand_path: nil, s3_client: nil)
|
|
@@ -132,6 +133,13 @@ module Appydave
|
|
|
132
133
|
|
|
133
134
|
files.each do |file|
|
|
134
135
|
relative_path = file.sub("#{staging_dir}/", '')
|
|
136
|
+
|
|
137
|
+
# Skip excluded files (e.g., Windows Zone.Identifier, .DS_Store)
|
|
138
|
+
if excluded_path?(relative_path)
|
|
139
|
+
skipped += 1
|
|
140
|
+
next
|
|
141
|
+
end
|
|
142
|
+
|
|
135
143
|
s3_path = build_s3_key(relative_path)
|
|
136
144
|
|
|
137
145
|
# Check if file already exists with same MD5
|
data/package.json
CHANGED