You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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
+
1
6
# ⚡ 0.2.0
2
7
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.
9
14
10
15
# ⚡ 0.1.7
11
16
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)
14
19
15
20
# ⚡ 0.1.6
16
21
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)
18
23
19
24
# ⚡ 0.1.5
20
25
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)
23
28
24
29
# ⚡ 0.1.4
25
30
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
29
34
30
35
```yaml
31
36
functions:
32
37
hello:
33
38
rust:
34
-
cargoFlags: '--features ...'
39
+
cargoFlags: "--features ..."
35
40
handler: liblambda.handler
36
41
package:
37
42
include:
@@ -42,17 +47,17 @@ functions:
42
47
43
48
# ⚡ 0.1.3
44
49
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
46
51
47
52
# ⚡ 0.1.2
48
53
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
0 commit comments