Skip to content

Commit 2068de7

Browse files
authoredJun 16, 2019
Merge pull request #43 from softprops/update-deps
update deps
2 parents 165fe31 + b455f51 commit 2068de7

File tree

6 files changed

+1718
-230
lines changed

6 files changed

+1718
-230
lines changed
 

‎CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ⚡ 0.3.5 (unreleased)
2+
3+
* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.2.1-rust-1.35.0 to gain [new rust 1.35.0 features](https://blog.rust-lang.org/2019/05/23/Rust-1.35.0.html).
4+
15
# ⚡ 0.3.4
26

37
- fix a `npx serverless invoke local` for versions of serverless framework `1.40.*` which now emits `package` events within `invokeLocal` events. [#38](https://github.com/softprops/serverless-rust/pull/38)
@@ -27,7 +31,7 @@ You can still use this plugin with older versions of serverless but `invoke loca
2731

2832
# ⚡ 0.3.0
2933

30-
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.2.1-rust-1.32.0, fixing a bug where cargo binaries named `bootstrap` weren't getting packaged. Reminder: this plugin renames binaries to `bootstrap` for the lambda runtime for you. You don't have do to this manually in your Cargo configuration. This also introduces an effiency in the way binaries are identified for packaging that may help some windows users.
34+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.2.1-rust-1.32.0, fixing a bug where cargo binaries named `bootstrap` weren't getting packaged. Reminder: this plugin renames binaries to `bootstrap` for the lambda runtime for you. You don't have do to this manually in your Cargo configuration. This also introduces an efficiency in the way binaries are identified for packaging that may help some windows users.
3135
- bump serverless version to [`1.37.1`](https://github.com/serverless/serverless/releases/tag/v1.37.1)
3236

3337

@@ -63,7 +67,7 @@ You can still use this plugin with older versions of serverless but `invoke loca
6367

6468
- 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)
6569
- 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
66-
- the `custom.rust` config object can be overrided at the function level
70+
- the `custom.rust` config object can be overridden at the function level
6771

6872
```yaml
6973
functions:
@@ -85,7 +89,7 @@ functions:
8589
# ⚡ 0.1.2
8690
8791
- bump lambda rust docker version to 0.1.0-rust-1.26.2
88-
- use a polyfill for fs.copyFileSync to accomidate older versions of node on travis ci
92+
- use a polyfill for fs.copyFileSync to accommodate older versions of node on travis ci
8993
9094
# ⚡ 0.1.1
9195

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { spawnSync } = require("child_process");
88
const { homedir } = require("os");
99
const path = require("path");
1010

11-
const DEFAULT_DOCKER_TAG = "0.2.1-rust-1.34.1";
11+
const DEFAULT_DOCKER_TAG = "0.2.1-rust-1.35.0";
1212
const RUST_RUNTIME = "rust";
1313
const BASE_RUNTIME = "provided";
1414
const NO_OUTPUT_CAPTURE = { stdio: ["ignore", process.stdout, process.stderr] };

0 commit comments

Comments
 (0)
Failed to load comments.