All Versions
324
Latest Version
Avg Release Cycle
11 days
Latest Release
941 days ago
Changelog History
Page 19
Changelog History
Page 19
-
v1.74.1 Changes
June 29, 2020🐛 Bug Fixes
- 🚀 AWS Deploy: Ensure no duplicate (case-insensitive) stack tags (#7887) (71919f1) (MickVanDuijn)
- Standalone:
- Ensure reliable access from China (#7891) (6fccede) (Mariusz Nowak)
- Support SLS_GEO_LOCATION env var (#7891) (474df11) (Mariusz Nowak)
Maintanance Improvements
lodash
replacement:- Remove
_.isInteger
(#7878) (3b19a5a) (Dai Van Nguyen)
- Remove
-
v1.74.0 Changes
June 26, 2020🔋 Features
🐛 Bug Fixes
- AWS HTTP API: Respect logRetentionInDays setting (#7856) (9dad77c) (Jonne Deprez)
- AWS Websocket: Fix resources dependency chain (9c0f646) (Mariusz Nowak)
Maintanance Improvements
lodash
replacement:- Remove
_.isBoolean
usage (#7880) (57f70f9) (Anh Dev) - Replace
_.chain
with native constructs (#7862) (288cb25) (Nguyễn Việt Đức) - Replace
_.compact
witharray.filter(Boolean)
(#7858) (7e68a0c) (Çalgan Aygün) - Replace
_.isEmpty
with native counterparts (#7873) (4c33476) (Dai Van Nguyen) - Replace
_.min
with native constructs (#7840) (ee94dce) (Nguyễn Việt Đức) - Replace
_.parseInt
withNumber
(#7877) (f2e1942) (Dai Van Nguyen) - Replace
_.pullAllWith
with native constructs (#7861) (f6743e9) (Çalgan Aygün) - Replace
_.reduce
witharray.reduce
(#7883) (297f7d8) (Dai Van Nguyen) - Replace
_.sortBy
witharray.sort
(#7823) (57e4212) (Nguyễn Việt Đức)
- Remove
-
v1.73.1 Changes
June 16, 2020 -
v1.73.0 Changes
June 16, 2020🔋 Features
- AWS Stream: Add support for
maximumRecordAgeInSeconds
property (#7833) (003fcfb) (Demián Rodriguez) - ⬇️ Drop old and support new analytics endpoint, display notifications as returned by backend (#7811) (49b5914) (Mariusz Nowak)
🐛 Bug Fixes
- AWS SQS: Revert support for
maximumRetryAttempts
option (#7832) (5a5a986) (Mariusz Nowak) - 🔌 Ensure
serverless.ts
is handled properly at plugin commands (#7806) (dc96b9a) (Bryan Hunter)
Maintanance Improvements
lodash
replacement:- Replace
_.first
witharray[0]
(#7816) (a527744) (Chris Villanueva) - Replace
_.head
witharray[0]
(#7817) (8991ceb) (Chris Villanueva) - Replace
_.includes
withval.includes
(#7818) (77fbb59) (Chris Villanueva) - Replace
_.indexOf
witharr.includes
(#7825) (332524d) (Nguyễn Việt Đức) - Replace
_.isFunction
withtypeof value === 'function'
(#7810) (e42ab2c) (Wing-Kam) - Replace
_.isNil(value)
withvalue == null
(#7809) (6cf4901) (Wing-Kam) - Replace
_.isString(value)
withtypeof value === 'string'
(#7812) (9f3ee94) (Wing-Kam) - Replace
_.isUndefined
with native checks (#7826) (20cef81) (Nguyễn Việt Đức) - Replace
_.join
witharray.join
(#7805) (5cf46bf) (Chris Villanueva) - Replace
_.map
witharray.map
(#7827) (4c6f8be) (Nguyễn Việt Đức) - Replace
_.nth
witharray[index]
(#7841) (d5de0ec) (Nguyễn Việt Đức) - Replace
_.repeat
withstring.repeat
(#7842) (a549517) (Nguyễn Việt Đức) - Replace
_.replace
withstring.replace
(#7843) (aaa2f96) (Nguyễn Việt Đức) - Replace
_.split
withstring.split
(#7820) (053f5f4) (srd2014) - Replace
_.takeRight
witharray.slice
(#7831) (3b3db7a) (Jishnu Mohan P R) - Replace
_.toUpper(string)
withstring.toUpperCase
(#7808) (22a4ed2) (Wing-Kam) - Replace
_.unset
withdelete
(#7813) (e39cdfd) (Chris Villanueva)
- Replace
- Switch to
@serverless/util/config
(#7811) (96afed4) (Mariusz Nowak)
- AWS Stream: Add support for
-
v1.72.0 Changes
June 02, 2020🔋 Features
- AWS API Gateway:
- Simplify referencing local CognitoUserPool (#7799) (2e4377e) (Alex DeBrie)
- Support
customerId
in API keys (#7786) (c6894b5) (Greg Campion) - Support toggling CloudWatch metrics (#7754) (87d40aa) (Satoru Kikuchi)
- AWS HTTP API: Support externally configured JWT authorizers (#7789) (4074739) (Michał Mrozek)
- CLI:
- Deprecations logger (#7741) (6f32f23) (Ahmad Mahmoud Mohammad & Mariusz Nowak)
- Deprecate
bin/serverless
binary (#7759) (a60d2c7) (Mariusz Nowak)
- Templates: Azure C# template (#7738) (9611137) (Tanner Barlow)
- Variables: Support non-function exports in js files (#7540) (89ba272) (Steven Rapp)
- 👌 Support
serverless.ts
(TypeScript type) as configuration input (#7755) (4db8b63) (Bryan Hunter)
🐛 Bug Fixes
- AWS API Gateway:
- Fix API key names resolution (#7804) (f9f6a3b) (Mariusz Nowak)
- Apply contentHandling only to successful responses (#7757) (aa48f0a) (Thomas Aribart)
- ⬇️ Downgrade
uuid
to v3 (#7778) (e9be1c8) (Mariusz Nowak)
Maintanance Improvements
lodash
replacement:- Replace
_.assign
and_.extend
withObject.assign
(#7766) (85e9cd4) (Nguyễn Việt Đức) - Replace
_.every
witharray.every
(#7764) (d1721cb) (Chris Villanueva) - Replace
_.filter
witharray.filter
(#7775) (dac7c56) (Midhun Rajendran) - Replace
_.keys
withObject.keys
(#7784) (d43241e) (Chris Villanueva) - Replace
_.find
witharray.find
(#7782) (0036962) (Chris Villanueva) - Replace
_.forEach
and_.each
with array.forEach (#7748) (5e0af21) (Tatsuno Yasuhiro) - Replace
_.size
with native counterparts (#7798) (2b00928) (Chris Villanueva)
- Replace
- ⬆️ Dependency upgrades:
- Replace
inquirer
with@serverless/inquirer
(#7729) (4724cb8) (Ahmad Mahmoud Mohammad) - Upgrade
json-refs
to v3 (#7763) (97e99fc) (Frédéric Barthelet) - Upgrade
globby
to v9 (#7750) (b245596) (Nguyễn Việt Đức)
- Replace
- AWS API Gateway:
-
v1.71.3 Changes
May 20, 2020🐛 Bug Fixes
- 🚀 AWS Deploy: Fix packaging logic after regression introduced with #7742 (b97e2b4) (Mariusz Nowak)
-
v1.71.2 Changes
May 20, 2020🐛 Bug Fixes
- AWS CloudFront: Fix merge of template configuration (#7739) (304a502) (Antonio Caiazzo)
- AWS Local Invocation: Ensure to mount as read only in docker (#7622) (4252422) (Alex Soto)
- 🚀 AWS Deploy: Fix changes detection when user package artifact is involved (#7742) (05499e6) (Tatsuno Yasuhiro)
🐎 Performance Improvements
- 🚀 AWS Deploy: Do not re-upload unchanged lambda layers (#7680) (2b9f63e) (Tatsuno Yasuhiro)
Maintanance Improvements
- Replace
_.{startsWith,endsWith,includes}
with native methods (#7715) (8bb5517) (Tatsuno Yasuhiro) - ⬆️ Upgrade
globby
to v9 (#7750) (b245596) (Nguyễn Việt Đức)
-
v1.71.1 Changes
May 15, 2020🐛 Bug Fixes
- CLI: Fix handling of singular
--config
param (7bcad68) (Mariusz Nowak) - Standalone: Workaround
fs-extra
v8 bug in chocolatey package generation script (548bd98) (Mariusz Nowak)
- CLI: Fix handling of singular
-
v1.71.0 Changes
May 15, 2020🔋 Features
- AWS Lambda: Support
disableLogs
setting for functions, to disable generation of log group resources (#7720) (3144be8) (Ahmad Mahmoud Mohammad) - 👌 Support
provider.stackParameters
for configuring CloudFormation deployment Parameters (#7677) (a0a43a6) (Nikody Keating)
🐛 Bug Fixes
- AWS API Gateway:
- Fix handling of stage specific settings when nested stacks are involved (#7735) (cf1692f) (Mariusz Nowak)
- Improve stage settings preliminary configuration and validation (#7735) (e472a04) (Mariusz Nowak)
- AWS CloudFront: Ensure Lambda@Edge setup comes with no VPC configuration or environment variables set (#7721) (a1472ba) (Ahmad Mahmoud Mohammad)
- AWS IAM: Remove IAM role from function's
DependsOn
section (#7722) (d8222fa) (Ahmad Mahmoud Mohammad) - CLI: Reject multitple
--config
params (#7728) (ca2a73f) (Ahmad Mahmoud Mohammad)
Maintanance Improvements
- ⬆️ Upgrade
fs-extra
to v8 (#7719) (c106d53) (Kenan Christian Dimas)
- AWS Lambda: Support
-
v1.70.1 Changes
May 11, 2020🐛 Bug Fixes
- AWS IAM: Fix role and policy name resolution (#7694) (08dc745) (Mariusz Nowak)
- Standalone: Ensure pkg bug workaround is applied on WIndows (#7699) (8bc6d54) (Mariusz Nowak)
✨ Enhancements
- Templates:
- Update aws-csharp to .NET Core 3.1 (#7708) (46df82e) (Joseph Woodward)
- Update aws-fsharp to .NET Core 3.1 (#7709) (a5a136f) (Stuart Lang)
Maintanance Improvements
- Replace
_.isArray
with nativeArray.isArray
(#7703) (3fe2e98) (Tatsuno Yasuhiro) - ⬆️ Upgrade
archiver
to v3 (#7712) (dd9bf9) (Frédéric Barthelet) - ⬆️ Upgrade
uuid
to v8 (#7707) (5b4fd0) (Kazuki Takahashi)