Aws-sam-cli

Latest version: v1.136.0

Safety actively analyzes 724109 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 27 of 37

0.51.0

Not secure
Support for Building `provided` runtimes

SAM CLI now supports building `provided` runtimes specified in template by specifying `BuildMethod : makefile` in the Metadata Attribute of the Function Resource.

SAM CLI supports building via `makefile` for official lambda runtimes as well.

Template

yaml
Resources:
HelloRustFunction:
Type: AWS::Serverless::Function
Properties:
Handler: bootstrap.is.real.handler
Runtime: provided
MemorySize: 512
CodeUri: .
Metadata:
BuildMethod: makefile


Makefile


build-HelloRustFunction:
cargo build --release --target x86_64-unknown-linux-musl
cp ./target/x86_64-unknown-linux-musl/release/bootstrap $(ARTIFACTS_DIR)


Layers can also be built using `BuildMethod : makefile`


Changelog

[49cb854](https://api.github.com/repos/awslabs/aws-sam-cli/commits/49cb854d3f04ecbd59a562ddd5285b31da3dfc9e) - feat: allow a custom builder workflow selection (#1957)
[39add9a](https://api.github.com/repos/awslabs/aws-sam-cli/commits/39add9acd0c7532129a6543134919eb6ae9df4f3) - feat: adding makefile workflow for layers build. (#2000)
[98be672](https://api.github.com/repos/awslabs/aws-sam-cli/commits/98be672418f76bf1cc54db7528988b8a1c6a6b52) - chore: version v0.51.0 (#2004)

0.50.0

Not secure
Support for Building Layers

SAM CLI now supports building layers specified in template by specifying `BuildMethod` under a Metadata Attribute of the Layer Resource. If `BuildMethod` is not specified, the layer is not built.


Resources:
HelloWorldFunction:
Type: AWS::Serverless::Function More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: hello_world/
Handler: app.lambda_handler
Runtime: python3.8
Layers:
- !Ref MyLayer
- !Ref MyLayer2
Events:
HelloWorld:
Type: Api More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /hello
Method: get
MyLayer:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Layer description
ContentUri: 'my_layer/'
CompatibleRuntimes:
- python3.8
Metadata:
BuildMethod: python3.8
MyLayer2:
Type: AWS::Serverless::LayerVersion
Properties:
Description: Layer description
ContentUri: 'my_layer2/'
CompatibleRuntimes:
- python3.8


`sam build MyLayer` build single layer.

`sam build HelloWorldFunction` builds function and the layer that the function uses.



[23212ef](https://api.github.com/repos/awslabs/aws-sam-cli/commits/23212ef827a105d23339712adc9422c6cc55e12c) - Build for Layers (#1936)
[de8ad8e](https://api.github.com/repos/awslabs/aws-sam-cli/commits/de8ad8e78491ebfa884c02c3439c6bcecd08516b) - Adding design doc for 'build for layers' (#1945)
[24af60e](https://api.github.com/repos/awslabs/aws-sam-cli/commits/24af60ec85d21d9ebde18a9c2219e7742bc59011) - chore: version bump to 0.50.0 (#1998)
[30b1016](https://api.github.com/repos/awslabs/aws-sam-cli/commits/30b1016bd23de4cfa3b5a3a1b7301d849355a2e1) - bug: security prompt - instrinsics in definition body (#1988)

0.49.0

Not secure
* [766ca3a](http://github.com/awslabs/aws-sam-cli/commit/766ca3aa3623b831d1335002db44103c1e221c45) - fix: allow parameters to be passed through to `SamTranslatorWrapper` (#1961)
* [660af96](http://github.com/awslabs/aws-sam-cli/commit/660af96cd7362c6a299b7731f2dd84139ef37858) - Using split instead of regex for simple key=value type tags. (#1968)
* [da9f5bd](http://github.com/awslabs/aws-sam-cli/commit/da9f5bd61ddc1aa8cb80218c6d21b483714be01b) - chore: update sam translator to 1.23.0 (#1966)
* [972fa19](http://github.com/awslabs/aws-sam-cli/commit/972fa19fb7019b10b34af5bb068df3f72fc8e30d) - refactor!: Drop support for deprecated runtimes (#1967)
* [4a13f04](http://github.com/awslabs/aws-sam-cli/commit/4a13f0439720bd8b517e8af2757cedb91ba1750f) - fix: Force strings to be outputted when string starts with 0 (#1965)
* [2e73a0b](http://github.com/awslabs/aws-sam-cli/commit/2e73a0b6fb5073972d40bdecc8ab10fcf1f6f07e) - Updated sam cli to read schemas region from boto3 (#1952)
* [1e61125](http://github.com/awslabs/aws-sam-cli/commit/1e6112577c6289840d7f19397623fea612431a52) - chore: version to 0.49.0 (#1969)
* [a225ecd](http://github.com/awslabs/aws-sam-cli/commit/a225ecd23fe58a93ba6eda637967c1eb2b0ef571) - Update python 3.7 minor version for appveyor. (#1976)
* [8d4f1ec](http://github.com/awslabs/aws-sam-cli/commit/8d4f1ecc53261e8d2139e3ba8f7ecfd6c43d726d) - Marking failing test as flaky. (#1978)
* [31c4162](http://github.com/awslabs/aws-sam-cli/commit/31c4162f010be17d52b1a67347e9932b22b49a35) - chore: version bump to 0.9.0 - aws lambda builders (#1979)
* [36010cc](http://github.com/awslabs/aws-sam-cli/commit/36010cc45ca70bf00996f6cbcd7844dd0788e95a) - chore: Force producing reproducible-linux.txt from python3.7 env (#1980)
* [706abd3](http://github.com/awslabs/aws-sam-cli/commit/706abd3e88d3cabb1c824aa7c8c0fd1df6d2b33a) - Using Previous image of AppVeyor to fix docker layer issue. (#1982)
* [feed6c5](http://github.com/awslabs/aws-sam-cli/commit/feed6c5869638437a6848bbabc00028675112ca6) - Revert "fix: Force strings to be outputted when string starts with 0 (#1965)" (1983)

0.48.0

Not secure
Changelog
* [d9a8a79f](http://github.com/awslabs/aws-sam-cli/commit/d9a8a79f7826a9335a07bf5f69c1935f0becb29b) - fix: split BuildError - showcase deeper exception (#1897)
* [08af6869](http://github.com/awslabs/aws-sam-cli/commit/08af68699a607b5c71370f8e324d30a3258875ec) - fix: logging for samconfig (#1889)
* [ecd267e3](http://github.com/awslabs/aws-sam-cli/commit/ecd267e30121eac76038869e9325b3f4161b4475) - Revert "fix: logging for samconfig (#1889)" (1918)
* [96957df0](http://github.com/awslabs/aws-sam-cli/commit/96957df032e5a0dd411c768347960e63a6491199) - feat: Allow pinned requirements for linux installs from source (#1917)
* [9b2b0d59](http://github.com/awslabs/aws-sam-cli/commit/9b2b0d59b756bdb4317298703a37f0e79cf4b544) - fix: Respect zipped symlinks (#1482)
* [5aa3df6f](http://github.com/awslabs/aws-sam-cli/commit/5aa3df6fb7f9a04aafce091f4de121b5aa2d6387) - test(integ): Skip Git layer Symlink test due to binary permission issue (#1928)
* [c3b66eaf](http://github.com/awslabs/aws-sam-cli/commit/c3b66eafdde0120e0fc980fd4de0a91aa0870dc6) - feat: Print warning about using deprecated runtimes (#1935)
* [849f28ca](http://github.com/awslabs/aws-sam-cli/commit/849f28ca818945fde6e783598dfd37319a3120d5) - fix: showcase prompts and messages on deploying - auth (#1943)
* [45a0eefe](http://github.com/awslabs/aws-sam-cli/commit/45a0eefecf3cfda76be0836ab7554f58abb6ea23) - chore: version to 0.48.0 (#1946)

0.47.0

Not secure
[0422bcf](https://api.github.com/repos/awslabs/aws-sam-cli/commits/0422bcf6c70fcea47309962db09221bddc3d5fbc) - feat: dotnetcore3.1 support (#1908)
[f4e21b9](https://api.github.com/repos/awslabs/aws-sam-cli/commits/f4e21b9843ddaaf4d625cd4cbc6e1ec0b06e2090) - chore: version bump to 0.47.0 (#1909)

0.46.2

Not secure
[3b76aff](https://api.github.com/repos/awslabs/aws-sam-cli/commits/3b76aff4d01c2be6673190a2e0b5990103aa7f0c) - fix: Use LogicalId for Env Vars fetching within the Env Var file (#1892)
[7de8bb0](https://api.github.com/repos/awslabs/aws-sam-cli/commits/7de8bb0e4c5aeacfcd0fd6c5f38531280c63489d) - chore: bump version to 0.46.2 (#1895)

Page 27 of 37

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.