-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from aws/develop
chore: Merge develop into master
- Loading branch information
Showing
16 changed files
with
83 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,6 @@ for: | |
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PYTHON%\\bin;%PATH%" | ||
- "%PYTHON%\\python.exe -m pip install -r requirements/dev.txt" | ||
- "%PYTHON%\\python.exe -m pip install -e ." | ||
- "set PATH=C:\\Ruby25-x64\\bin;%PATH%" | ||
- "gem --version" | ||
- "gem install bundler -v 1.17.3" | ||
- "bundler --version" | ||
|
@@ -76,6 +75,9 @@ for: | |
# setup make | ||
- "choco install make" | ||
|
||
# install dotnet6 | ||
- ps: "&powershell -NoProfile -ExecutionPolicy unrestricted -Command \"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://dot.net/v1/dotnet-install.ps1'))) -Version 6.0.200 -InstallDir 'C:\\Program Files\\dotnet\\'\"" | ||
|
||
# Echo final Path | ||
- "echo %PATH%" | ||
|
||
|
@@ -91,7 +93,6 @@ for: | |
- sh: "JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64" | ||
- sh: "PATH=$JAVA_HOME/bin:$PATH" | ||
- sh: "source ${HOME}/venv${PYTHON_VERSION}/bin/activate" | ||
- sh: "rvm use 2.5" | ||
- sh: "nvm install ${nodejs_version}" | ||
- sh: "npm install [email protected] -g" | ||
- sh: "npm -v" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
AWS Lambda Builder Library | ||
""" | ||
__version__ = "1.12.0" | ||
__version__ = "1.13.0" | ||
RPC_PROTOCOL_VERSION = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...thDefaultsFile2.1/WithDefaultsFile.csproj → ...WithDefaultsFile6/WithDefaultsFile.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 10 additions & 13 deletions
23
...ltsFile2.1/aws-lambda-tools-defaults.json → ...aultsFile6/aws-lambda-tools-defaults.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,16 @@ | ||
{ | ||
"Information" : [ | ||
"Information": [ | ||
"This file provides default values for the deployment wizard inside Visual Studio and the AWS Lambda commands added to the .NET Core CLI.", | ||
"To learn more about the Lambda commands with the .NET Core CLI execute the following command at the command line in the project root directory.", | ||
|
||
"dotnet lambda help", | ||
|
||
"All the command line options for the Lambda command can be specified in this file." | ||
], | ||
|
||
"profile":"", | ||
"region" : "", | ||
"configuration" : "Release", | ||
"framework" : "netcoreapp2.1", | ||
"function-runtime":"dotnetcore2.1", | ||
"function-memory-size" : 256, | ||
"function-timeout" : 30, | ||
"function-handler" : "WithDefaultsFile::WithDefaultsFile.Function::FunctionHandler" | ||
} | ||
"profile": "", | ||
"region": "", | ||
"configuration": "Release", | ||
"framework": "net6.0", | ||
"function-runtime": "dotnet6", | ||
"function-memory-size": 256, | ||
"function-timeout": 30, | ||
"function-handler": "WithDefaultsFile::WithDefaultsFile.Function::FunctionHandler" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.