Skip to content

Commit

Permalink
Prepare 7.17.14 (#2294)
Browse files Browse the repository at this point in the history
* Prepare 7.17.14

* Tweaks to Github action
  • Loading branch information
JoshMock committed Jul 2, 2024
1 parent d614d95 commit 7733eec
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure sysctl limits
run: |
Expand All @@ -61,10 +61,10 @@ jobs:
- name: Runs Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 7.16-SNAPSHOT
stack-version: 7.17-SNAPSHOT

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure sysctl limits
run: |
Expand All @@ -93,12 +93,12 @@ jobs:
- name: Runs Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 7.16-SNAPSHOT
stack-version: 7.17-SNAPSHOT

- name: Use Node.js 14.x
uses: actions/setup-node@v1
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 16.x

- name: Install
run: |
Expand All @@ -124,10 +124,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x

Expand All @@ -149,10 +149,10 @@ jobs:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
12 changes: 11 additions & 1 deletion docs/changelog.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
[[changelog-client]]
== Release notes

[discrete]
=== 7.17.14

[discrete]
==== Fixes

Stops retrying timed-out requests by default.
Re-enabling the old behavior can be done by providing a `retryOnTimeout` option when instantiating the client.
https://github.com/elastic/elasticsearch-js/pull/2293[#2293]

[discrete]
=== 7.17.13

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

[discrete]
===== Add TypeScript type declarations to exports
===== Add TypeScript type declarations to exports

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

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"./*": "./*.js"
},
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "7.17.13",
"versionCanary": "7.17.13-canary.1",
"version": "7.17.14",
"versionCanary": "7.17.14-canary.0",
"keywords": [
"elasticsearch",
"elastic",
Expand Down

0 comments on commit 7733eec

Please sign in to comment.