Skip to content

Commit 71ac5ab

Browse files
authored
Switch 8.8 clients to only get patch updates to transport (#2212)
1 parent 168c0b1 commit 71ac5ab

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

docs/changelog.asciidoc

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

4+
[discrete]
5+
=== 8.8.2
6+
7+
[discrete]
8+
===== Bump @elastic/transport to `~8.3.2`
9+
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.
10+
411
[discrete]
512
=== 8.8.1
613

@@ -46,6 +53,13 @@ https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.0.
4653

4754
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.
4855

56+
[discrete]
57+
=== 8.7.3
58+
59+
[discrete]
60+
===== Bump @elastic/transport to `~8.3.1`
61+
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.
62+
4963
[discrete]
5064
=== 8.7.0
5165

@@ -55,6 +69,13 @@ Prior releases contained a bug where type declarations for legacy types that inc
5569
You can find all the API changes
5670
https://www.elastic.co/guide/en/elasticsearch/reference/8.7/release-notes-8.7.0.html[here].
5771

72+
[discrete]
73+
=== 8.6.1
74+
75+
[discrete]
76+
===== Bump @elastic/transport to `~8.3.1`
77+
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.
78+
5879
[discrete]
5980
=== 8.6.0
6081

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elastic/elasticsearch",
3-
"version": "8.8.1",
4-
"versionCanary": "8.8.1-canary.2",
3+
"version": "8.8.2",
4+
"versionCanary": "8.8.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": "^6.1.0"
8787
},
8888
"dependencies": {
89-
"@elastic/transport": "^8.3.2",
89+
"@elastic/transport": "~8.3.2",
9090
"tslib": "^2.4.0"
9191
},
9292
"tap": {

0 commit comments

Comments
 (0)