Skip to content

Commit f2d2cfc

Browse files
authored
Switch 8.7 clients to only get patch updates to transport (#2211)
1 parent 5835505 commit f2d2cfc

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

docs/changelog.asciidoc

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

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

@@ -10,6 +17,13 @@
1017
You can find all the API changes
1118
https://www.elastic.co/guide/en/elasticsearch/reference/8.7/release-notes-8.7.0.html[here].
1219

20+
[discrete]
21+
=== 8.6.1
22+
23+
[discrete]
24+
===== Bump @elastic/transport to `~8.3.1`
25+
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.
26+
1327
[discrete]
1428
=== 8.6.0
1529

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elastic/elasticsearch",
3-
"version": "8.7.2",
4-
"versionCanary": "8.7.2-canary.0",
3+
"version": "8.7.3",
4+
"versionCanary": "8.7.3-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.1",
89+
"@elastic/transport": "~8.3.1",
9090
"tslib": "^2.4.0"
9191
},
9292
"tap": {
@@ -96,4 +96,4 @@
9696
"coverage": false,
9797
"check-coverage": false
9898
}
99-
}
99+
}

0 commit comments

Comments
 (0)