From 7caecb32d404332a65657da289be7f5b97457a92 Mon Sep 17 00:00:00 2001 From: David Chung Date: Thu, 27 Apr 2023 15:18:46 -0700 Subject: [PATCH] Updated CodeBuild nodejs and python runtime versions --- CHANGELOG.md | 6 ++++++ buildspec.yml | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index efdabd3b..61c5fd26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.1.2] - 2023-04-27 + +### Changed + +* Updated buildspec nodejs and python version to 14 and 3.9 respectively + ## [5.1.1] - 2023-04-13 ### Changed diff --git a/buildspec.yml b/buildspec.yml index 91112b85..5b1ef496 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -3,13 +3,17 @@ version: 0.2 ############################################################################### # DO NOT MODIFY THIS FILE. # This file is used by the build pipeline for the [Media Insights on AWS solution](https://aws.amazon.com/solutions/implementations/media-insights-on-aws/). +# +# NOTE - Ensure aws/codebuild/standard:5.0 Codebuild image version is selected +# when creating the build pipeline. +# ############################################################################### phases: install: runtime-versions: - nodejs: 16 - python: 3.10 + nodejs: 14 + python: 3.9 commands: - echo "nothing to do in install" pre_build: