Dom Corvasce
5500a07d12
Show available env vars in the help output
2019-07-11 11:41:26 +02:00
Dom Corvasce
38f42dfb5c
Rename SLS_NO_WARNINGS to SLS_WARNING_DISABLE
2019-07-10 11:52:05 +02:00
Dom Corvasce
508ed78442
Add SLS_NO_WARNINGS to hide warnings
2019-07-08 18:27:16 +02:00
Philipp Muens
3364b58e98
Minor code improvements
2019-07-08 11:26:48 +02:00
Johann Bich
57c1cc36e8
remove useless boolean / replaced switch case with ifs
2019-07-05 13:59:16 +09:00
Johann Bich
c18cf13d9f
fix authentication issue
2019-07-04 17:05:46 +09:00
Johann Bich
49068f95f7
remove useless dependency
2019-07-04 17:05:40 +09:00
Johann Bich
a5b00dbb06
allow create from templates hosted on github entreprise
2019-07-04 17:05:22 +09:00
Philipp Muens
88e0da51a9
Merge pull request #6322 from axel-springer-kugawana/fix-alb-target-group-names
...
Make ALB event target group names unique
2019-07-02 13:03:19 +02:00
Philipp Muens
aa72173c37
Merge pull request #6324 from nahumzs/patch-1
...
Update Webpack version and usage of aws-nodejs-ecma-script template
2019-07-02 12:43:24 +02:00
Philipp Muens
00b40d149c
Update packages
2019-07-02 12:34:59 +02:00
Philipp Muens
b46a9fe8ec
Fix formatting via Prettier
2019-07-02 12:29:00 +02:00
Philipp Muens
35e81fa1ac
Merge pull request #6310 from christophgysin/fix/websocket-logs
...
Websockets: fix passing log group ARN
2019-07-01 13:45:32 +02:00
nahum zsilva
434ae9c52f
updating webpack file
...
The current config will not work in the newest webpack version
2019-06-29 14:17:20 -07:00
Edward Goubely
c66d2b128c
Make ALB event target group names unique
2019-06-28 19:56:08 +02:00
Mariusz Nowak
e11cc2c51b
Ensure to expose non-errors in informative way
2019-06-28 15:19:53 +02:00
Mariusz Nowak
223a7d845e
Whitespace
2019-06-28 14:51:06 +02:00
Mariusz Nowak
87b88cdbf9
Fix service.provider.region resolution
2019-06-28 10:19:22 +02:00
Alex DeBrie
2bded42fd6
Remove unneeded check
2019-06-27 12:33:49 -05:00
Alex DeBrie
86fb74c7fe
New Prettier formatting
2019-06-27 11:58:04 -05:00
Alex DeBrie
d2d178c226
Cleaner check
2019-06-27 11:54:20 -05:00
Alex DeBrie
99644975da
logFormat --> format
2019-06-27 11:54:20 -05:00
Alex DeBrie
9329e3f874
Update lib/plugins/aws/package/compile/events/apiGateway/lib/hack/updateStage.js
...
Co-Authored-By: Daniel Schep <dschep@gmail.com>
2019-06-27 11:54:20 -05:00
Alex DeBrie
a2b60c3429
Add a logFormat property
2019-06-27 11:54:20 -05:00
Alex DeBrie
8d629552dd
Update docs
2019-06-27 11:54:20 -05:00
Christoph Gysin
6b00ef5bcc
websockets: fix passing log group ARN
...
The log group ARN contains a trailing ":*" that seems to cause
deployment to fail. Instead, generate the ARN with the trailing
wildcard.
fixes #6304
2019-06-27 10:46:39 +03:00
Mariusz Nowak
e6ae8983de
Fix lint issues after prettification
2019-06-26 12:43:01 +02:00
Mariusz Nowak
4944f471b1
Prettify
2019-06-26 12:43:01 +02:00
Mariusz Nowak
b5787c02d5
Merge pull request #6272 from christophgysin/feature/support-external-websocket-api
...
Feature/support external websocket api
2019-06-26 09:08:32 +02:00
Philipp Muens
de12ed3093
Merge pull request #6293 from axel-springer-kugawana/add-alb-event-conditions
...
Add ip, method, header and query conditions to ALB events
2019-06-25 13:20:24 +02:00
Edward Goubely
bc0e05fbbd
Add ip, method, header and query conditions to ALB events
2019-06-23 22:38:11 +02:00
Philipp Muens
21b014efad
Merge pull request #6285 from joetravis/apiKeys-stackName
...
Use naming to get stackName
2019-06-21 13:05:46 +02:00
Philipp Muens
6d05d83edb
Merge pull request #6200 from mydiemho/myho/removeRegionDefaultFromBase
...
Remove default stage value in provider object
2019-06-21 12:54:57 +02:00
joetravis
f76f549e04
Use naming to get stackName
2019-06-20 10:05:15 -07:00
Philipp Muens
070c34b311
Merge pull request #6261 from mnapoli/import-relative-file
...
#6017 Allow to load plugin from path
2019-06-20 12:10:18 +02:00
Philipp Muens
5b3fe2525f
Merge pull request #6268 from JonathanWilbur/patch-1
...
Fix #6267
2019-06-20 12:01:06 +02:00
Matthieu Napoli
1019939969
#6017 Plugin relative paths should start with ./
...
Following the discussion in #6261 it should be possible to load plugin via relative paths, as long as the path starts with `./`.
For example:
```yaml
plugins:
# will load myfirstplugin/plugin.js or myfirstplugin/plugin/index.js
- './myfirstplugin/plugin'
# will load mysecondplugin/plugin.js or mysecondplugin/plugin/index.js
- './mysecondplugin/plugin'
```
2019-06-20 11:55:55 +02:00
Jonathan Wilbur
b96404763b
Make stackTrace undefined if err.stack undefined
2019-06-19 09:12:44 -04:00
Philipp Muens
d69d57ea09
Merge pull request #6244 from serverless/RemoveDuplicatePackaging
...
Fix duplicate packaging issue
2019-06-19 10:20:50 +02:00
Christoph Gysin
142a9d8304
Support external ApiGateway websocket API
...
fixes #6270
2019-06-19 09:21:54 +03:00
Jonathan Wilbur
c6f64e50e1
Fix #6267
2019-06-18 17:58:45 -04:00
Matthieu Napoli
152b4c460a
Fix #6017 Allow to load plugin from path
...
The list of plugins can now contain relative paths.
For example:
```yaml
plugins:
# will load myfirstplugin/plugin.js or myfirstplugin/plugin/index.js
- 'myfirstplugin/plugin'
# will load mysecondplugin/plugin.js or mysecondplugin/plugin/index.js
- 'mysecondplugin/plugin'
```
2019-06-18 16:12:49 +02:00
Philipp Muens
d00e700bcf
Remove unused code
2019-06-18 15:20:08 +02:00
Philipp Muens
214e09cb56
Move duplicate file detection to package zipping code
2019-06-18 15:18:10 +02:00
Christoph Gysin
f596448f70
Extract setting up routes with and without authorizer definition
2019-06-18 16:15:02 +03:00
Mariusz Nowak
b954fa4a17
Merge pull request #6255 from serverless/fix-timeout-response-template
...
Fix lambda integration timeout response template
2019-06-18 10:52:59 +02:00
Mariusz Nowak
be78da0b04
Merge branch 'master' into fix-timeout-response-template
2019-06-17 14:00:06 +02:00
Philipp Muens
ca830fd640
Merge pull request #6231 from DASPRiD/bugfix/request-model-api-gateway-reference
...
Reference custom ApiGateway for models and request validators if conf…
2019-06-17 13:59:37 +02:00
Mariusz Nowak
aedfbf289d
Merge pull request #6254 from serverless/improve-user-message
...
Improve user message
2019-06-17 13:48:04 +02:00
Philipp Muens
c0b51bc12f
Address PR review comments / add tests
2019-06-17 13:01:02 +02:00