Kevin Su
Kevin Su
Made a separate feature request to the AWS CloudFormation coverage repo for a separate `AWS::EC2::Image` resource. https://github.com/aws-cloudformation/cloudformation-coverage-roadmap/issues/2175 @austoonz Do you know which EC2 team owns `ec2:ImportSnapshot` + `ec2:ImportImage` and their...
Closing in favor of the CloudWatch coverage roadmap issue.
cc: @sparrc @singholt @swapneils ([new code owners](https://github.com/fluent/fluent-bit/commit/499ee40dbd1e8a747fca45fda1471eeb58de705e))
@sparrc @singholt @swapneils Does one of you have bandwidth to review this?
I don't think dependency updates is something that can be easily automated since there may be metadata in the dependency manifest (e.g. full version numbers) which needs manual intervention to...
Does that library handle `.msi` files as well? The Wikipedia page for Portable Executable linked in the README lists a bunch of extensions but `.msi` (for Microsoft/Windows Installer) doesn't seem...
I don't see an existing auto-update tool, but it'll probably be straightforward to write something that parses all the dependency YAML files, looks at the `Steps` list, and updates the...
Prior hash mismatch issues for `vcredist2019` + `vcredist2022` were because their dependency manifests used a latest version download link instead of a version-specific download link. That was fixed in this...
Relevant lines: https://github.com/bottlesdevs/Bottles/blob/e93cd189e966ed0daf515f8398f12e2cb6dcf620/bottles/backend/managers/installer.py#L176-L184 https://github.com/bottlesdevs/Bottles/blob/e93cd189e966ed0daf515f8398f12e2cb6dcf620/bottles/backend/managers/component.py#L154-L164 https://github.com/bottlesdevs/Bottles/blob/e93cd189e966ed0daf515f8398f12e2cb6dcf620/bottles/backend/globals.py#L27-L40 This seems to be the state on disk: ```text ~/.local/share/bottles/temp/ ├── vcredist2022_x86.exe (md5sum: 8457542fd4be74cb2c3a92b3386ae8e9) └── vcredist2022_x64.exe (md5sum: 1d545507009cc4ec7409c1bc6e93b17b) ``` Fix probably requires changing the cache...
Switching to a CAS is more to remove the current mechanism of dependency manifests needing to rename files to prevent collisions inside `~/.local/share/bottles/temp`. With the way `temp` and `install_exe`/`install_msi` work...