Skip to content

Commit 272d04f

Browse files
authored
[Backport 8.11] Stop supporting Node v14 and v16 (#2055) (#2056)
1 parent 1c68dfd commit 272d04f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ steps:
1313
- "free"
1414
- "platinum"
1515
nodejs:
16-
- "16"
1716
- "18"
1817
- "20"
1918
command: ./.buildkite/run-tests.sh

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
node-version: [14.x, 16.x, 18.x, 20.x]
14+
node-version: [18.x, 20.x]
1515
os: [ubuntu-latest, windows-latest, macOS-latest]
1616

1717
steps:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ of the getting started documentation.
2828

2929
### Node.js support
3030

31-
NOTE: The minimum supported version of Node.js is `v14`.
31+
NOTE: The minimum supported version of Node.js is `v18`.
3232

3333
The client versioning follows the Elastic Stack versioning, this means that
3434
major, minor, and patch releases are done following a precise schedule that
@@ -53,6 +53,7 @@ of `^7.10.0`).
5353
| `10.x` | `April 2021` | `7.12` (mid 2021) |
5454
| `12.x` | `April 2022` | `8.2` (early 2022) |
5555
| `14.x` | `April 2023` | `8.8` (early 2023) |
56+
| `16.x` | `September 2023` | `8.11` (late 2023) |
5657

5758
### Compatibility
5859

docs/installation.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To learn more about the supported major versions, please refer to the
2424
[[nodejs-support]]
2525
=== Node.js support
2626

27-
NOTE: The minimum supported version of Node.js is `v14`.
27+
NOTE: The minimum supported version of Node.js is `v18`.
2828

2929
The client versioning follows the {stack} versioning, this means that
3030
major, minor, and patch releases are done following a precise schedule that
@@ -64,6 +64,10 @@ of `^7.10.0`).
6464
|`14.x`
6565
|April 2023
6666
|`8.8` (early 2023)
67+
68+
|`16.x`
69+
|September 2023
70+
|`8.11` (late 2023)
6771
|===
6872

6973
[discrete]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
4848
"engines": {
49-
"node": ">=14"
49+
"node": ">=18"
5050
},
5151
"devDependencies": {
5252
"@sinonjs/fake-timers": "github:sinonjs/fake-timers#0bfffc1",

0 commit comments

Comments
 (0)