-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare for Release v1.3.0 #615
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "nitro-cli" | ||
version = "1.2.3" | ||
version = "1.3.0" | ||
authors = ["The AWS Nitro Enclaves Team <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2020-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# Copyright 2020-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
%define ne_name nitro_enclaves | ||
|
@@ -20,7 +20,7 @@ | |
|
||
Summary: AWS Nitro Enclaves tools for managing enclaves | ||
Name: aws-nitro-enclaves-cli | ||
Version: 1.2.3 | ||
Version: 1.3.0 | ||
Release: 0%{?dist} | ||
|
||
License: Apache 2.0 | ||
|
@@ -195,6 +195,45 @@ fi | |
%{ne_include_dir}/* | ||
|
||
%changelog | ||
* Tue Apr 16 2024 Erdem Meydanli <[email protected]> - 1.3.0-0 | ||
+ This release focuses on resolving two critical issues: | ||
the vsock-proxy DNS lookup limitation (#553) and the compatibility | ||
problem with Docker versions 25 and later (#591). Furthermore, it | ||
updates several important crate dependencies to their latest versions. | ||
- cargo: Update cargo.lock to eliminate build failures | ||
- build(deps): bump base64 from 0.21.4 to 0.22.0 | ||
- build(deps): bump tokio from 1.28.2 to 1.32.0 | ||
- fix(deps): downgrade crate versions due to compatibility issues | ||
- version: Release vsock_proxy v1.0.0 | ||
- vsock_proxy: Introduce DnsResolutionInfo type | ||
- vsock_proxy: add tests | ||
- vsock_proxy: change function's signature | ||
- clippy/cargo: resolve build errors and warnings | ||
- vsock_proxy: Perform DNS resolution after the expiration of the TTL | ||
- vsock_proxy: Handle allowlisting out of Proxy | ||
- vsock_proxy: rename starter.rs | ||
- vsock_proxy: Refactor DNS-related functionality | ||
- vsock_proxy: refactor | ||
- cargo: Upgrade num-derive to v0.4 | ||
- enclave_build: Extract stream output handling | ||
- enclave_build: Refactor docker.rs for consistent Runtime creation | ||
- enclave_build: Extract build_tarball method | ||
- enclave_build: Extract parse_docker_host method | ||
- enclave_build: Extract inspect method | ||
- enclave_build: Add more tests | ||
- fix: Switch to bollard for docker API interaction | ||
- ci: use cargo-about v0.5.0 | ||
- ci: disable automatic license file generation | ||
- enclave_build: fix clippy failure | ||
- build(deps): bump inotify from 0.10.0 to 0.10.2 | ||
- build(deps): bump dns-lookup from 1.0.8 to 2.0.3 | ||
- vsock_proxy: set log level to warn | ||
- github: update the action version | ||
- clippy: eliminate warnings & errors | ||
- rust: msrv version bump | ||
- build(deps): bump mio from 0.8.6 to 0.8.11 | ||
- docs: Correct image signing manual | ||
|
||
* Wed Jan 31 2024 Costin Lupu <[email protected]> - 1.2.3-0 | ||
- Dependencies updates: base64 bindgen chrono env_logger flexi_logger futures | ||
idna inotify libc log nix num-traits openssl page_size rand rustix serde | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May be just aggregated view of all the dependencies update in a single line instead for readability purposes?
I am in favor of more human readable description of what was changed =)