8000 efs-utils v2.2.1-1 release by dluthcke · Pull Request #275 · aws/efs-utils · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

efs-utils v2.2.1-1 release #275

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

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,20 +233,20 @@ workflows:
workflow:
jobs:
- test:
name: python3_12
image: python:3.12.4
name: python3_8
image: python:3.8.13
- test:
name: python3_11
image: python:3.11.9
name: python3_9
image: python:3.9.13
- test:
name: python3_10
image: python:3.10.13
- test:
name: python3_9
image: python:3.9.13
name: python3_11
image: python:3.11.9
- test:
name: python3_8
image: python:3.8.13
name: python3_12
image: python:3.12.4
- build-deb-package:
name: ubuntu-latest
image: ubuntu:latest
Expand Down Expand Up @@ -318,4 +318,4 @@ workflows:
image: opensuse/leap:15.4
- build-suse-rpm-package:
name: opensuse-leap-latest
image: opensuse/leap:latest
image: opensuse/leap:latest
8 changes: 6 additions & 2 deletions amazon-efs-utils.spec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
%{?!include_vendor_tarball:%define include_vendor_tarball true}

Name : amazon-efs-utils
Version : 2.2.0
Version : 2.2.1
Release : 1%{platform}
Summary : This package provides utilities for simplifying the use of EFS file systems

Expand Down Expand Up @@ -192,6 +192,10 @@ fi
%clean

%changelog
* Thu Mar 06 2025 Daniel Luthcke <dluthcke@amazon.com> - 2.2.1
- Readme Updates
- Update log4rs to mitigate CVE-2020-35881

* Wed Nov 13 2024 Anthony Tse <anthotse@amazon.com> - 2.2.0
- Use region-specific domain suffixes for dns endpoints where missing
- Merge PR #211 - Amend Debian control to use binary architecture
Expand Down Expand Up @@ -347,4 +351,4 @@ fi
* Tue Mar 03 2020 Yuan Gao <ygaochn@amazon.com> - 1.23.2
- Support new option: netns, enable file system to mount in given network namespace
- Support new option: awscredsuri, enable sourcing iam authorization from aws credentials relative uri
- List openssl and util-linux as package dependency for IAM/AP authorization and command nsenter to mount file system to given network namespace
- List openssl and util-linux as package dependency for IAM/AP authorization and command nsenter to mount file system to given network namespace
2 changes: 1 addition & 1 deletion build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -ex

BASE_DIR=$(pwd)
BUILD_ROOT=${BASE_DIR}/build/debbuild
VERSION=2.2.0
VERSION=2.2.1
RELEASE=1
ARCH=$(dpkg --print-architecture)
DEB_SYSTEM_RELEASE_PATH=/etc/os-release
Expand Down
2 changes: 1 addition & 1 deletion config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
#

[global]
version=2.2.0
version=2.2.1
release=1
2 changes: 1 addition & 1 deletion src/mount_efs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
BOTOCORE_PRESENT = False


VERSION = "2.2.0"
VERSION = "2.2.1"
SERVICE = "elasticfilesystem"

AMAZON_LINUX_2_RELEASE_ID = "Amazon Linux release 2 (Karoo)"
Expand Down
2 changes: 1 addition & 1 deletion src/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "efs-proxy"
edition = "2021"
build = "build.rs"
# The version of efs-proxy is tied to efs-utils.
version = "2.1.0"
version = "2.2.1"
publish = false
license = "MIT"

Expand Down
2 changes: 1 addition & 1 deletion src/watchdog/__init__.py
505D
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
AMAZON_LINUX_2_RELEASE_ID,
AMAZON_LINUX_2_PRETTY_NAME,
]
VERSION = "2.2.0"
VERSION = "2.2.1"
SERVICE = "elasticfilesystem"

CONFIG_FILE = "/etc/amazon/efs/efs-utils.conf"
Expand Down
0