-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Python version uses by Docker images, Windows binary (#1003)
* Ugrade Docker images to use latest version of Python 3.8 (3.8.14) which includes some bug / security fixes. * Update agent Windows binary to use latest Python 3.10 (Python 3.10.7). * Add changelog entries.
- Loading branch information
Showing
3 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
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
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,17 @@ | ||
Scalyr Agent 2 Changes By Release | ||
================================= | ||
|
||
## 2.1.37 "TBD" - November 15, 2022 | ||
<!--- | ||
Packaged by Joseph Makar <[email protected]> on Sep 17, 2022 12:31 -0800 | ||
---> | ||
|
||
Docker Images: | ||
* Upgrade Linux Docker images to use Python 3.8.14. | ||
|
||
Windows: | ||
* Upgrade agent Windows binary to use Python 3.10.7. | ||
|
||
## 2.1.36 "Corrntos" - September 15, 2022 | ||
<!--- | ||
Packaged by Joseph Makar <[email protected]> on Sep 17, 2022 12:31 -0800 | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
ARG BASE_IMAGE_SUFFIX | ||
|
||
# Install dependency packages for debian. | ||
FROM python:3.8.13-slim as scalyr-dependencies-slim | ||
FROM python:3.8.14-slim as scalyr-dependencies-slim | ||
MAINTAINER Scalyr Inc <[email protected]> | ||
|
||
# Workaround for weird build failure on Circle CI, see | ||
|
@@ -20,7 +20,7 @@ RUN ln -s /bin/tar /usr/sbin/tar | |
RUN apt-get update && apt-get install -y build-essential git tar curl | ||
|
||
# Install dependency packages for alpine. | ||
FROM python:3.8.13-alpine as scalyr-dependencies-alpine | ||
FROM python:3.8.14-alpine as scalyr-dependencies-alpine | ||
MAINTAINER Scalyr Inc <[email protected]> | ||
|
||
RUN apk update && apk add --virtual build-dependencies \ | ||
|
@@ -74,13 +74,13 @@ RUN rm /usr/local/lib/python3.8/_manylinux.py | |
# Install packages and tools that will be required during the final image build. | ||
|
||
# Install tools for alpine | ||
FROM python:3.8.13-alpine as ready-base-alpine | ||
FROM python:3.8.14-alpine as ready-base-alpine | ||
MAINTAINER Scalyr Inc <[email protected]> | ||
|
||
RUN apk update && apk add --virtual curl git | ||
|
||
# Install tools for debian. | ||
FROM python:3.8.13-slim as ready-base-slim | ||
FROM python:3.8.14-slim as ready-base-slim | ||
MAINTAINER Scalyr Inc <[email protected]> | ||
|
||
# Workaround for weird build failure on Circle CI, see | ||
|