Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: 0.6.0 Release #636

Merged
merged 35 commits into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
bc59a39
fix: Functional tests must run on localhost to work in Windows (#552)
sanathkr Jul 17, 2018
73dd4a9
fix: spacing typo in Log statement in start-lambda (#559)
JCoelhoo Jul 17, 2018
fab32d9
docs: Fix syntax highlighting in README.md (#561)
GabLeRoux Jul 18, 2018
afbd7e1
docs: Change jest to mocha in Nodejs init README (#564)
bluzi Jul 19, 2018
5da4174
docs: Fix @mhart link in README (#562)
GabLeRoux Jul 19, 2018
43e1d07
docs(README): removed cloudtrail, added SNS to generate-event (#569)
MattTunny Jul 23, 2018
81d9ac7
docs: Update repo name references (#577)
alexcasalboni Jul 25, 2018
0e0f815
feat(debugging): Fixing issues around debugging Golang functions. (#565)
jfuss Jul 25, 2018
48f8b1f
fix(init): Improve current init samples around docs and fixes (#558)
heitorlessa Jul 25, 2018
b8ecb35
docs(README): Update launch config to SAM CLI from SAM Local (#587)
alexcasalboni Jul 31, 2018
4ae2f7c
docs(README): Update sample code for calling Local Lambda Invoke (#584)
alexcasalboni Aug 1, 2018
bd3c3bc
refactor(init): renamed handler for camel case, moved callback call u…
alexcasalboni Aug 2, 2018
f5c297f
chore: aws-lambda-java-core 1.1.0 -> 1.2.0 for java sam init (#578)
sullis Aug 2, 2018
d4af44b
feat(validate): Add profile and region options (#582)
jfuss Aug 2, 2018
2e9b839
docs(README): Update README prerequisites to include awscli (#596)
campionfellin Aug 3, 2018
b7c3d89
fix(start-lambda): Remove Content-Type Header check (#594)
jrmdayn Aug 6, 2018
c21a080
docs: Disambiguation "Amazon Kinesis" (#599)
Aug 6, 2018
ced3739
docs: Adding instructions for how to add pyenv to your PATH for Windo…
jschwarzwalder Aug 6, 2018
f6ff7b7
docs: Update README with small grammar fix (#601)
PGrocholske Aug 6, 2018
4cbb277
fix: Update link in NodeJS package.json (#603)
DebbieIsMyName Aug 6, 2018
4c96f09
docs: Creating instructions for Windows users to install sam (#605)
jschwarzwalder Aug 7, 2018
8dfc337
docs: Adding a note directing Windows users to use pipenv (#606)
jschwarzwalder Aug 7, 2018
546d271
fix: Fix stringifying λ environment variables when using Python2 (#579)
Cliffzz Aug 7, 2018
dcd65f4
feat(generate-event): Added support for 50+ events (#612)
Aug 10, 2018
6657cba
feat(invoke): Add region parameter to all invoke related commands (#608)
sameergoyal Aug 10, 2018
a33376e
docs: Breaking up README into separate files to make it easier to rea…
jschwarzwalder Aug 10, 2018
f8678e8
chore: Update JVM size params to match docker-lambda (#615)
jason-riddle Aug 14, 2018
799c390
feat(invoke): Invoke Function Without Parameters through --no-event (…
akkaash Aug 15, 2018
b908957
docs: Update advanced_usage.rst with clarification on --env-vars usag…
Aug 17, 2018
9359e49
docs: Remove an extra word in the sam packaging command (#618)
NSCoder Aug 17, 2018
6e3740a
UX: Improves event names to reflect Lambda Event Sources (#619)
heitorlessa Aug 22, 2018
9f2d639
docs: Fix git clone typo in installation docs (#630)
jakemayeux Aug 24, 2018
d1b5512
docs(README): Callout go1.x runtime support (#631)
piotrkubisa Aug 27, 2018
5bebced
docs(installation): Update sam --version command (#634)
AlJohri Aug 28, 2018
d729b5f
chore(0.6.0): SAM CLI Version bump (#635)
jfuss Aug 28, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions DEVELOPMENT_GUIDE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ This document will make your life easier by helping you setup a development envi
or anything that will help you be more productive. If you found something is missing or inaccurate, update this guide
and send a Pull Request.

**Note**: ``pyenv`` currently only supports macOS and Linux. If you are a Windows users, consider using `pipenv`_.

Environment Setup
-----------------

Expand All @@ -17,6 +19,8 @@ Follow the idioms from this `excellent cheatsheet`_ to make sure your code is co
Our CI/CD pipeline is setup to run unit tests against both Python versions. So make sure you test it with both
versions before sending a Pull Request. `pyenv`_ is a great tool to easily setup multiple Python versions.

Note: For Windows, type ``export PATH="/c/Users/<user>/.pyenv/libexec:$PATH"`` to add pyenv to your path.

#. Install PyEnv - ``curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash``
#. ``pyenv install 2.7.14``
#. ``pyenv install 3.6.4``
Expand Down Expand Up @@ -105,3 +109,4 @@ best practices that we have learnt over time.
.. _pyenv: https://github.com/pyenv/pyenv
.. _tox: http://tox.readthedocs.io/en/latest/
.. _numpy docstring: https://numpydoc.readthedocs.io/en/latest/format.html
.. _pipenv: https://docs.pipenv.org/
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ include requirements/base.txt
include requirements/dev.txt
recursive-include samcli/local/init/templates *
recursive-include samcli/lib *.json
recursive-include samcli/commands/local/lib/generated_sample_events *.json
prune tests

Loading