Skip to content

Commit

Permalink
Merge branch 'develop' v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrahan committed Jul 21, 2023
2 parents 46dfdcb + afcc89f commit b621156
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2] - 2023-07-21
### Added
- Additional temporary fix to resolve YouTube playlist download failures by patching cipher.py for pytube version 15.0.0 - See PR #31

## [0.3.1] - 2023-07-06
### Added
- Temporary fix to resolve YouTube playlist download failures by patching cipher.py for pytube version 15.0.0
- Temporary fix to resolve YouTube playlist download failures by patching cipher.py for pytube version 15.0.0 - See PR #30

## [0.3.0] - 2023-05-16
### Added
Expand All @@ -23,7 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.3.1...develop
[Unreleased]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.3.2...develop
[0.3.2]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/aws-samples/aws-kendra-transcribe-media-search/compare/v0.1.0...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion cfn-templates/msfinder.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Description: >
MediaSearch Solution - Finder stack (v0.3.1)
MediaSearch Solution - Finder stack (v0.3.2)
Resources:
##Create Cognito Userpool for Authentication
Expand Down
2 changes: 1 addition & 1 deletion cfn-templates/msindexer.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Description: >
MediaSearch Solution - Indexer stack (v0.3.1)
MediaSearch Solution - Indexer stack (v0.3.2)
Resources:
# This MediaBucket only holds the downloaded YouTube videos
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if [[ `pip3 list --path lambdalayer/pytube/python | grep pytube | awk '{print $2
replacewith=`head -287 lambdalayer/pytube/python/pytube/cipher.py| tail -1 | sed 's/;//g'`
lines=`wc -l lambdalayer/pytube/python/pytube/cipher.py | awk '{print $1}'`
head -286 lambdalayer/pytube/python/pytube/cipher.py > cipher.py && echo $replacewith >> cipher.py && tail -`expr $lines - 287` lambdalayer/pytube/python/pytube/cipher.py >> cipher.py
mv cipher.py lambdalayer/pytube/python/pytube/cipher.py
sed 's/raise RegexMatchError(caller="get_transform_object", pattern=pattern)/return []/g' cipher.py > lambdalayer/pytube/python/pytube/cipher.py
fi
echo "Create timestamped zipfile for lambdas and layers"
# pytube-llayer
Expand Down

0 comments on commit b621156

Please sign in to comment.