Skip to content

Commit

Permalink
Merge pull request #113 from privacysandbox/release-0.79.0
Browse files Browse the repository at this point in the history
Release 0.79.0
  • Loading branch information
pmeric authored Feb 11, 2025
2 parents 62184c2 + e1e5ce9 commit 0a315e4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## 0.79.0 (2025-02-09)


### Dependencies

* **deps:** Upgrade Amazon Linux to AL2023.6

## 0.78.0 (2025-01-31)


Expand Down
2 changes: 1 addition & 1 deletion images/build-amazonlinux2023/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM amazonlinux:2023.5.20241001.1
FROM amazonlinux:2023.6.20250128.0

COPY /install_apps install_golang_apps install_go.sh generate_system_bazelrc .bazelversion /scripts/
COPY get_workspace_mount /usr/local/bin
Expand Down
4 changes: 2 additions & 2 deletions images/build-amazonlinux2023/install_apps
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ function install_nitro() {
return 1
fi
dnf install -y \
"aws-nitro-enclaves-cli-1.3.1-0.amzn2023.${ext}" \
"aws-nitro-enclaves-cli-devel-1.3.1-0.amzn2023.${ext}"
"aws-nitro-enclaves-cli-1.3.4-0.amzn2023.${ext}" \
"aws-nitro-enclaves-cli-devel-1.3.4-0.amzn2023.${ext}"
}

function install_gcc() {
Expand Down
2 changes: 1 addition & 1 deletion tests/data/hashes/build-amazonlinux2023
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9cde9b8ca775243a0093c486e229f3fa885bead7e12afc3bdd1408a919076e7e
19da24c50966835c7d8bc86bfdbf6c0914aa1a3619a6564dc197a5c77dfe8b47
10 changes: 9 additions & 1 deletion tools/get-builder-image-tagged
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ USAGE
cat &>/dev/stderr <<USAGE
--sha-only Emit only the SHA rather than the image name
--verbose Enable verbose output
--docker-network \`--network\` parameter used in docker build. Valid names:
default, host, none
environment variables (all optional):
IMAGE_BUILD_VERBOSE Capture docker build output if set
Expand All @@ -93,7 +95,7 @@ readonly IMAGES_DIR="${BUILDERS_DIR}"/images
declare -i SHA_ONLY=0
declare -i BUILD_IMAGE_IF_NEEDED=1
declare -i VERBOSE=0
declare -r -a DOCKER_BUILD_ARGS=(
declare -a DOCKER_BUILD_ARGS=(
--progress plain
)

Expand Down Expand Up @@ -121,6 +123,12 @@ while [[ $# -gt 0 ]]; do
VERBOSE=1
shift
;;
--docker-network)
DOCKER_BUILD_ARGS+=(
"--network=$2"
)
shift 2 || usage
;;
-h | --help) usage 0 ;;
*)
printf "unrecognized arg: %s\n" "$1"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.78.0
0.79.0

0 comments on commit 0a315e4

Please sign in to comment.