Skip to content

Commit 3ef1a0f

Browse files
committed
upgrad changelog [skip ci]
1 parent 56c4b88 commit 3ef1a0f

File tree

1 file changed

+25
-20
lines changed

1 file changed

+25
-20
lines changed

CHANGELOG.md

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,42 @@
1+
# 0.2.1
2+
3+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.2.0-rust-1.32.0, to make the new default Rust 1.32.0 (the latest release of Rust at this time)
4+
- bump serverless version to [`1.36.3`](https://github.com/serverless/serverless/releases/tag/v1.36.3)
5+
16
# ⚡ 0.2.0
27

3-
* Switch from supporting the Lambda `python3.6` runtime to a new ✨ `rust` runtime ✨ ( which runs on the `provided` runtime under the covers )
4-
* you can now deploy independent functions with `npx serverless deploy function -f func-name`
5-
* you no longer have to be explicit about function binary to include, this plugin generates and configures the artifact (zip) file for you
6-
* you no longer have to set default exclusion rules
7-
* you can deploy a `rust` runtime function side by side with other serverless runtime functions
8-
within the same service, to facilitate experimentation and learning.
8+
- Switch from supporting the Lambda `python3.6` runtime to a new ✨ `rust` runtime ✨ ( which runs on the `provided` runtime under the covers )
9+
- you can now deploy independent functions with `npx serverless deploy function -f func-name`
10+
- you no longer have to be explicit about function binary to include, this plugin generates and configures the artifact (zip) file for you
11+
- you no longer have to set default exclusion rules
12+
- you can deploy a `rust` runtime function side by side with other serverless runtime functions
13+
within the same service, to facilitate experimentation and learning.
914

1015
# ⚡ 0.1.7
1116

12-
* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.30.1, to make the new default Rust 1.30.1 (the latest release of Rust at this time)
13-
* bumb serverless version to [1.33.2](https://github.com/serverless/serverless/blob/master/CHANGELOG.md#1332-18112018) ( the latest serverless release at this time)
17+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.30.1, to make the new default Rust 1.30.1 (the latest release of Rust at this time)
18+
- bump serverless version to [1.33.2](https://github.com/serverless/serverless/blob/master/CHANGELOG.md#1332-18112018) ( the latest serverless release at this time)
1419

1520
# ⚡ 0.1.6
1621

17-
* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.28.0, to make the new default Rust 1.28.0 (the latest release of Rust at this time)
22+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.28.0, to make the new default Rust 1.28.0 (the latest release of Rust at this time)
1823

1924
# ⚡ 0.1.5
2025

21-
* ensure only a unique set of artifacts are collected for cleanup
22-
* Allocate a docker pseudo-tty so that process signals are forwarded (Keyboard interrupts stop docker process)
26+
- ensure only a unique set of artifacts are collected for cleanup
27+
- Allocate a docker pseudo-tty so that process signals are forwarded (Keyboard interrupts stop docker process)
2328

2429
# ⚡ 0.1.4
2530

26-
* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.27.2, to make the new default Rust 1.27.2 (the latest release of Rust at this time)
27-
* speed up deployments by ~3.2 seconds by disabling excludeDevDependencies. it's on by default but it's not useful for for Rust focused services
28-
* the `custom.rust` config object can be overrided at the function level
31+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.27.2, to make the new default Rust 1.27.2 (the latest release of Rust at this time)
32+
- speed up deployments by ~3.2 seconds by disabling excludeDevDependencies. it's on by default but it's not useful for for Rust focused services
33+
- the `custom.rust` config object can be overrided at the function level
2934

3035
```yaml
3136
functions:
3237
hello:
3338
rust:
34-
cargoFlags: '--features ...'
39+
cargoFlags: "--features ..."
3540
handler: liblambda.handler
3641
package:
3742
include:
@@ -42,17 +47,17 @@ functions:
4247
4348
# ⚡ 0.1.3
4449
45-
* bump lambda rust docker version to 0.1.0-rust-1.27.0
50+
- bump lambda rust docker version to 0.1.0-rust-1.27.0
4651
4752
# ⚡ 0.1.2
4853
49-
* bump lambda rust docker version to 0.1.0-rust-1.26.2
50-
* use a polyfill for fs.copyFileSync to accomidate older versions of node on travis ci
54+
- bump lambda rust docker version to 0.1.0-rust-1.26.2
55+
- use a polyfill for fs.copyFileSync to accomidate older versions of node on travis ci
5156
5257
# ⚡ 0.1.1
5358
54-
* fix exporting plugin
59+
- fix exporting plugin
5560
5661
# ⚡ 0.1.0
5762
58-
* initial release
63+
- initial release

0 commit comments

Comments
 (0)