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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,19 @@
1
+
# 0.4.0-rust-1.45.2
2
+
3
+
***Breaking change** in avoid mixed user permissions when volume mounting cargo cache directories. This docker images now configures a cargo installation to `/cargo` directory rather than `/home/root/.cargo`. You'll also want to ensure
4
+
docker runs use a docker user that maps to your host machine's user id and group.
5
+
6
+
```diff
7
+
$ docker run --rm \
8
+
+ -u $(id -u):$(id -g) \
9
+
-v ${PWD}:/code \
10
+
+ -v ${HOME}/.cargo/registry:/cargo/registry \
11
+
+ -v ${HOME}/.cargo/git:/cargo/git \
12
+
softprops/lambda-rust
13
+
```
14
+
15
+
* Upgrade to Rust [`1.45.2`](https://blog.rust-lang.org/2020/08/03/Rust-1.45.2.html)
16
+
1
17
# 0.3.0-rust-1.45.0
2
18
3
19
* Upgrade to Rust [`1.45.0`](https://blog.rust-lang.org/2020/07/16/Rust-1.45.0.html)
0 commit comments