Skip to content

Commit a8da143

Browse files
authored
Switch 8.9 clients to only get patch updates to transport (#2213)
1 parent f6f0747 commit a8da143

File tree

2 files changed

+47
-3
lines changed

2 files changed

+47
-3
lines changed

docs/changelog.asciidoc

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

4+
[discrete]
5+
=== 8.9.2
6+
7+
[discrete]
8+
==== Fixes
9+
10+
[discrete]
11+
===== Bump @elastic/transport to `~8.3.4`
12+
13+
Switching from `^8.3.4` to `~8.3.4` ensures 8.9 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details.
14+
415
[discrete]
516
=== 8.9.1
617

@@ -37,6 +48,17 @@ In the https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/curre
3748

3849
The `user-agent` header the client used to connect to Elasticsearch was using a non-standard format that has been improved.
3950

51+
[discrete]
52+
=== 8.8.2
53+
54+
[discrete]
55+
==== Fixes
56+
57+
[discrete]
58+
===== Bump @elastic/transport to `~8.3.2`
59+
60+
Switching from `^8.3.2` to `~8.3.2` ensures 8.8 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details.
61+
4062
[discrete]
4163
=== 8.8.1
4264

@@ -82,6 +104,17 @@ https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.0.
82104

83105
Prior releases contained a bug where type declarations for legacy types that include a `body` key were not actually importing the type that includes the `body` key.
84106

107+
[discrete]
108+
=== 8.7.3
109+
110+
[discrete]
111+
==== Fixes
112+
113+
[discrete]
114+
===== Bump @elastic/transport to `~8.3.1`
115+
116+
Switching from `^8.3.1` to `~8.3.1` ensures 8.7 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details.
117+
85118
[discrete]
86119
=== 8.7.0
87120

@@ -91,6 +124,17 @@ Prior releases contained a bug where type declarations for legacy types that inc
91124
You can find all the API changes
92125
https://www.elastic.co/guide/en/elasticsearch/reference/8.7/release-notes-8.7.0.html[here].
93126

127+
[discrete]
128+
=== 8.6.1
129+
130+
[discrete]
131+
==== Fixes
132+
133+
[discrete]
134+
===== Bump @elastic/transport to `~8.3.1`
135+
136+
Switching from `^8.3.1` to `~8.3.1` ensures 8.6 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details.
137+
94138
[discrete]
95139
=== 8.6.0
96140

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elastic/elasticsearch",
3-
"version": "8.9.1",
4-
"versionCanary": "8.9.1-canary.1",
3+
"version": "8.9.2",
4+
"versionCanary": "8.9.2-canary.0",
55
"description": "The official Elasticsearch client for Node.js",
66
"main": "index.js",
77
"types": "index.d.ts",
@@ -86,7 +86,7 @@
8686
"zx": "^7.2.2"
8787
},
8888
"dependencies": {
89-
"@elastic/transport": "^8.3.4",
89+
"@elastic/transport": "~8.3.4",
9090
"tslib": "^2.4.0"
9191
},
9292
"tap": {

0 commit comments

Comments
 (0)