@lokalise/node-core 8.3.0 → 8.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,12 +12,6 @@ See [docs](/docs) for further instructions on how to use.
12
12
 
13
13
  ## Overview
14
14
 
15
- ### Dependencies
16
-
17
- - `pino`;
18
- - `unidici`;
19
- - `unidici-retry`.
20
-
21
15
  ## HTTP Client
22
16
 
23
17
  The library provides methods to implement the client side of HTTP protocols. Public methods available are:
@@ -209,7 +203,7 @@ Additionally, `DefineEither` is also provided. It is a variation of the aforemen
209
203
  There is helper function available for writing event-driven assertions in automated tests, which rely on something eventually happening:
210
204
 
211
205
  ```ts
212
- import {waitAndRetry} from "@lokalise/node-core";
206
+ import { waitAndRetry } from "@lokalise/node-core";
213
207
 
214
208
  const result = await waitAndRetry(
215
209
  () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokalise/node-core",
3
- "version": "8.3.0",
3
+ "version": "8.4.0",
4
4
  "author": {
5
5
  "name": "Lokalise",
6
6
  "url": "https://lokalise.com/"
@@ -36,8 +36,8 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "pino": "^8.16.2",
39
- "undici": "^5.28.2",
40
- "undici-retry": "^3.2.0"
39
+ "undici": "^6.0.1",
40
+ "undici-retry": "^4.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "^20.10.3",