Skip to content

Commit 3c5178c

Browse files
authored
Stop supporting Node v14 and v16 (#2055)
1 parent 9e2ff66 commit 3c5178c

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
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
node-version: [14.x, 16.x, 18.x, 20.x]
39+
node-version: [18.x, 20.x]
4040
os: [ubuntu-latest, windows-latest, macOS-latest]
4141

4242
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
@@ -47,7 +47,7 @@
4747
},
4848
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
4949
"engines": {
50-
"node": ">=14"
50+
"node": ">=18"
5151
},
5252
"devDependencies": {
5353
"@sinonjs/fake-timers": "github:sinonjs/fake-timers#0bfffc1",

0 commit comments

Comments
 (0)