Skip to content
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.1 #624

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nitro-cli"
version = "1.3.0"
version = "1.3.1"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
8 changes: 7 additions & 1 deletion SPECS/aws-nitro-enclaves-cli.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

Summary: AWS Nitro Enclaves tools for managing enclaves
Name: aws-nitro-enclaves-cli
Version: 1.3.0
Version: 1.3.1
Release: 0%{?dist}

License: Apache 2.0
Expand Down Expand Up @@ -195,6 +195,12 @@ fi
%{ne_include_dir}/*

%changelog
* Mon Jun 3 2024 Erdem Meydanli <[email protected]> - 1.3.1-0
- vsock-proxy: Bump version to 1.0.1
- vsock_proxy: Use system-configured nameservers for DNS resolution
- Update init blob to support user namespaces
- clippy: resolve build errors for Rust 1.78

* 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
Expand Down
2 changes: 1 addition & 1 deletion THIRD_PARTY_LICENSES_RUST_CRATES.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sources
Original file line number Diff line number Diff line change
@@ -1 +1 @@
53eac21b7bfd5c336846d04c2288c2a62cddd992 nitro-cli-dependencies.tar.gz
27e70be63e4c1f05eb80dbea6985753f2da61083 nitro-cli-dependencies.tar.gz
2 changes: 1 addition & 1 deletion vsock_proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vsock-proxy"
version = "1.0.0"
version = "1.0.1"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
rust-version = "1.68"
Expand Down
6 changes: 3 additions & 3 deletions vsock_proxy/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![deny(warnings)]

/// Simple proxy for translating vsock traffic to TCP traffic
/// Example of usage:
/// vsock-proxy 8000 127.0.0.1 9000
///
use clap::{App, AppSettings, Arg};
use clap::{App, Arg};
use env_logger::init;
use log::info;

Expand All @@ -20,7 +20,7 @@ fn main() -> VsockProxyResult<()> {

let matches = App::new("Vsock-TCP proxy")
.about("Vsock-TCP proxy")
.setting(AppSettings::DisableVersion)
.version(env!("CARGO_PKG_VERSION"))
.arg(
Arg::with_name("ipv4")
.short('4')
Expand Down