Skip to content

Commit 3abaece

Browse files
authored
Update node version to 18.12.0 on complete image (#1657)
This puts us on to the latest LTS release of node. Test by using a private location with Uptime to run a browser monitor.
1 parent 275c113 commit 3abaece

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Kind can be one of:
2+
# - breaking-change: a change to previously-documented behavior
3+
# - deprecation: functionality that is being removed in a later release
4+
# - bug-fix: fixes a problem in a previous version
5+
# - enhancement: extends functionality but does not break or fix existing behavior
6+
# - feature: new functionality
7+
# - known-issue: problems that we are aware of in a given version
8+
# - security: impacts on the security of a product or a user’s deployment.
9+
# - upgrade: important information for someone upgrading from a prior version
10+
# - other: does not fit into any of the other categories
11+
kind: feature
12+
13+
# Change summary; a 80ish characters long description of the change.
14+
summary: Upgrade node to 18.12.0
15+
16+
# Long description; in case the summary is not enough to describe the change
17+
# this field accommodate a description without length limits.
18+
#description:
19+
20+
# Affected component; a word indicating the component this changeset affects.
21+
component:
22+
23+
# PR number; optional; the PR number that added the changeset.
24+
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
25+
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
26+
# Please provide it if you are adding a fragment for a different PR.
27+
#pr: 1234
28+
29+
# Issue number; optional; the GitHub issue related to this changeset (either closes or is part of).
30+
# If not present is automatically filled by the tooling with the issue linked to the PR number.
31+
#issue: 1234

dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ RUN echo \
162162

163163
# Setup synthetics env vars
164164
ENV ELASTIC_SYNTHETICS_CAPABLE=true
165-
ENV NODE_VERSION=16.15.0
165+
ENV NODE_VERSION=18.12.0
166166
ENV PATH="$NODE_PATH/node/bin:$PATH"
167167
# Install the latest version of @elastic/synthetics forcefully ignoring the previously
168168
# cached node_modules, heartbeat then calls the global executable to run test suites

dev-tools/packaging/templates/docker/Dockerfile.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ USER {{ .user }}
160160
# Setup synthetics env vars
161161
ENV ELASTIC_SYNTHETICS_CAPABLE=true
162162
ENV SUITES_DIR={{ $beatHome }}/suites
163-
ENV NODE_VERSION=16.15.0
163+
ENV NODE_VERSION=18.12.0
164164
ENV PATH="$NODE_PATH/node/bin:$PATH"
165165
# Install the latest version of @elastic/synthetics forcefully ignoring the previously
166166
# cached node_modules, heartbeat then calls the global executable to run test suites

0 commit comments

Comments
 (0)