pipedrive 18.0.0 → 18.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +9 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
@@ -7,9 +7,16 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
|
|
7
7
|
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
|
+
|
11
|
+
## [18.0.1] - 2022-12-15
|
12
|
+
### Fixed
|
13
|
+
- Move @babel/runtime from devDependencies to dependencies to fix a runtime error
|
14
|
+
|
15
|
+
## 18.0.0
|
10
16
|
### Security
|
11
17
|
- Removed `.instance` static property from sdk client to prevent race conditions when using it as a singleton
|
12
18
|
See the updated examples in the readme to get an overview of the necessary code changes.
|
19
|
+
|
13
20
|
## 17.5.2
|
14
21
|
### Changed
|
15
22
|
- Updated endpoint descriptions to warn about permanently removing deleted entities:
|
@@ -404,4 +411,5 @@ structure
|
|
404
411
|
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
|
405
412
|
* Fixed typo in lead example response (`crrency` to `currency`)
|
406
413
|
|
407
|
-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/
|
414
|
+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v18.0.1...HEAD
|
415
|
+
[18.0.1]: https://github.com/pipedrive/api-docs/compare/v1.0.0...v18.0.1
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pipedrive",
|
3
|
-
"version": "18.0.
|
3
|
+
"version": "18.0.1",
|
4
4
|
"description": "Pipedrive REST client for NodeJS",
|
5
5
|
"license": "MIT",
|
6
6
|
"main": "dist/index.js",
|
@@ -13,14 +13,16 @@
|
|
13
13
|
"test:functional": "node ./test/functional/environment.js",
|
14
14
|
"test:coverage": "npm run test:functional -- --collectCoverage",
|
15
15
|
"sonar": "pipedrive-sonar-scanner",
|
16
|
-
"lint-staged": "lint-staged"
|
16
|
+
"lint-staged": "lint-staged",
|
17
|
+
"version": "changelog-updater && git add CHANGELOG.md"
|
17
18
|
},
|
18
19
|
"browser": {
|
19
20
|
"fs": false
|
20
21
|
},
|
21
22
|
"dependencies": {
|
22
23
|
"lodash": "^4.17.21",
|
23
|
-
"superagent": "^7.1.3"
|
24
|
+
"superagent": "^7.1.3",
|
25
|
+
"@babel/runtime": "^7.20.1"
|
24
26
|
},
|
25
27
|
"devDependencies": {
|
26
28
|
"@babel/cli": "^7.0.0",
|
@@ -45,8 +47,8 @@
|
|
45
47
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
46
48
|
"@babel/preset-env": "^7.0.0",
|
47
49
|
"@babel/register": "^7.0.0",
|
48
|
-
"@babel/runtime": "^7.20.1",
|
49
50
|
"babel-eslint": "^10.1.0",
|
51
|
+
"changelog-updater": "^2.0.3",
|
50
52
|
"eslint": "^8.27.0",
|
51
53
|
"eslint-config-pipedrive": "^13.0.0",
|
52
54
|
"eslint-plugin-jest": "^27.1.5",
|