Skip to content

Commit 7733eec

Browse files
authored
Prepare 7.17.14 (#2294)
* Prepare 7.17.14 * Tweaks to Github action
1 parent d614d95 commit 7733eec

File tree

3 files changed

+27
-17
lines changed

3 files changed

+27
-17
lines changed

.github/workflows/nodejs.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
os: [ubuntu-latest, windows-latest, macOS-latest]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v1
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

@@ -49,7 +49,7 @@ jobs:
4949
node-version: [16.x, 18.x, 20.x]
5050

5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v4
5353

5454
- name: Configure sysctl limits
5555
run: |
@@ -61,10 +61,10 @@ jobs:
6161
- name: Runs Elasticsearch
6262
uses: elastic/elastic-github-actions/elasticsearch@master
6363
with:
64-
stack-version: 7.16-SNAPSHOT
64+
stack-version: 7.17-SNAPSHOT
6565

6666
- name: Use Node.js ${{ matrix.node-version }}
67-
uses: actions/setup-node@v1
67+
uses: actions/setup-node@v4
6868
with:
6969
node-version: ${{ matrix.node-version }}
7070

@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282

8383
steps:
84-
- uses: actions/checkout@v2
84+
- uses: actions/checkout@v4
8585

8686
- name: Configure sysctl limits
8787
run: |
@@ -93,12 +93,12 @@ jobs:
9393
- name: Runs Elasticsearch
9494
uses: elastic/elastic-github-actions/elasticsearch@master
9595
with:
96-
stack-version: 7.16-SNAPSHOT
96+
stack-version: 7.17-SNAPSHOT
9797

98-
- name: Use Node.js 14.x
99-
uses: actions/setup-node@v1
98+
- name: Use Node.js 16.x
99+
uses: actions/setup-node@v4
100100
with:
101-
node-version: 14.x
101+
node-version: 16.x
102102

103103
- name: Install
104104
run: |
@@ -124,10 +124,10 @@ jobs:
124124
runs-on: ubuntu-latest
125125

126126
steps:
127-
- uses: actions/checkout@v2
127+
- uses: actions/checkout@v4
128128

129129
- name: Use Node.js 14.x
130-
uses: actions/setup-node@v1
130+
uses: actions/setup-node@v4
131131
with:
132132
node-version: 14.x
133133

@@ -149,10 +149,10 @@ jobs:
149149
node-version: [14.x]
150150

151151
steps:
152-
- uses: actions/checkout@v2
152+
- uses: actions/checkout@v4
153153

154154
- name: Use Node.js ${{ matrix.node-version }}
155-
uses: actions/setup-node@v1
155+
uses: actions/setup-node@v4
156156
with:
157157
node-version: ${{ matrix.node-version }}
158158

docs/changelog.asciidoc

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
[[changelog-client]]
22
== Release notes
33

4+
[discrete]
5+
=== 7.17.14
6+
7+
[discrete]
8+
==== Fixes
9+
10+
Stops retrying timed-out requests by default.
11+
Re-enabling the old behavior can be done by providing a `retryOnTimeout` option when instantiating the client.
12+
https://github.com/elastic/elasticsearch-js/pull/2293[#2293]
13+
414
[discrete]
515
=== 7.17.13
616

@@ -26,7 +36,7 @@ This is the first 7.x release where patch versions of the client will no longer
2636
Fixes a type declaration bug that caused TypeScript builds to fail. https://github.com/elastic/elasticsearch-js/pull/1927[#1927]
2737

2838
[discrete]
29-
===== Add TypeScript type declarations to exports
39+
===== Add TypeScript type declarations to exports
3040

3141
Adds TypeScript type declarations file to package.json `exports` https://github.com/elastic/elasticsearch-js/pull/1930[#1930]
3242

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"./*": "./*.js"
1313
},
1414
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
15-
"version": "7.17.13",
16-
"versionCanary": "7.17.13-canary.1",
15+
"version": "7.17.14",
16+
"versionCanary": "7.17.14-canary.0",
1717
"keywords": [
1818
"elasticsearch",
1919
"elastic",

0 commit comments

Comments
 (0)