soap 0.20.0 → 0.24.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 (54) hide show
  1. package/.editorconfig +23 -23
  2. package/.jshintrc +29 -29
  3. package/.travis.yml +22 -22
  4. package/CONTRIBUTING.md +52 -58
  5. package/History.md +52 -2
  6. package/LICENSE +7 -7
  7. package/PUBLISHING.md +28 -28
  8. package/Readme.md +1062 -931
  9. package/coverage/coverage.json +1 -0
  10. package/coverage/lcov-report/base.css +212 -0
  11. package/coverage/lcov-report/index.html +119 -0
  12. package/coverage/lcov-report/node-soap/index.html +93 -0
  13. package/coverage/lcov-report/node-soap/index.js.html +74 -0
  14. package/coverage/lcov-report/node-soap/lib/client.js.html +1001 -0
  15. package/coverage/lcov-report/node-soap/lib/http.js.html +416 -0
  16. package/coverage/lcov-report/node-soap/lib/index.html +171 -0
  17. package/coverage/lcov-report/node-soap/lib/nscontext.js.html +734 -0
  18. package/coverage/lcov-report/node-soap/lib/security/BasicAuthSecurity.js.html +137 -0
  19. package/coverage/lcov-report/node-soap/lib/security/BearerSecurity.js.html +134 -0
  20. package/coverage/lcov-report/node-soap/lib/security/ClientSSLSecurity.js.html +296 -0
  21. package/coverage/lcov-report/node-soap/lib/security/ClientSSLSecurityPFX.js.html +218 -0
  22. package/coverage/lcov-report/node-soap/lib/security/WSSecurity.js.html +278 -0
  23. package/coverage/lcov-report/node-soap/lib/security/index.html +158 -0
  24. package/coverage/lcov-report/node-soap/lib/security/index.js.html +92 -0
  25. package/coverage/lcov-report/node-soap/lib/server.js.html +1139 -0
  26. package/coverage/lcov-report/node-soap/lib/soap.js.html +314 -0
  27. package/coverage/lcov-report/node-soap/lib/utils.js.html +161 -0
  28. package/coverage/lcov-report/node-soap/lib/wsdl.js.html +6275 -0
  29. package/coverage/lcov-report/prettify.css +1 -0
  30. package/coverage/lcov-report/prettify.js +1 -0
  31. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  32. package/coverage/lcov-report/sorter.js +158 -0
  33. package/coverage/lcov.info +3325 -0
  34. package/index.js +3 -3
  35. package/lib/client.js +434 -425
  36. package/lib/http.js +129 -129
  37. package/lib/nscontext.js +223 -223
  38. package/lib/security/BasicAuthSecurity.js +24 -24
  39. package/lib/security/BearerSecurity.js +23 -23
  40. package/lib/security/ClientSSLSecurity.js +82 -65
  41. package/lib/security/ClientSSLSecurityPFX.js +51 -51
  42. package/lib/security/WSSecurity.js +90 -90
  43. package/lib/security/WSSecurityCert.js +78 -78
  44. package/lib/security/index.js +10 -10
  45. package/lib/security/templates/wsse-security-header.ejs +12 -12
  46. package/lib/security/templates/wsse-security-token.ejs +3 -3
  47. package/lib/server.js +474 -444
  48. package/lib/soap.d.ts +220 -0
  49. package/lib/soap.js +110 -110
  50. package/lib/utils.js +30 -30
  51. package/lib/wsdl.js +2272 -2234
  52. package/package.json +8 -8
  53. package/soap-stub.js +148 -148
  54. package/.npmignore +0 -2
package/.editorconfig CHANGED
@@ -1,23 +1,23 @@
1
- # EditorConfig for the node-soap library - head over to editorconfig.org to see if you editor supports this file.
2
-
3
- # this is the topmost .editorconfig file
4
- root = true
5
-
6
- [*]
7
- end_of_line = lf
8
- insert_final_newline = true
9
-
10
- [*.xml]
11
- insert_final_newline = false
12
-
13
- [*.js]
14
- indent_style = space
15
- indent_size = 2
16
-
17
- [*.json]
18
- indent_style = space
19
- indent_size = 2
20
-
21
- [{package.json,.travis.yml}]
22
- indent_style = space
23
- indent_size = 2
1
+ # EditorConfig for the node-soap library - head over to editorconfig.org to see if you editor supports this file.
2
+
3
+ # this is the topmost .editorconfig file
4
+ root = true
5
+
6
+ [*]
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+
10
+ [*.xml]
11
+ insert_final_newline = false
12
+
13
+ [*.js]
14
+ indent_style = space
15
+ indent_size = 2
16
+
17
+ [*.json]
18
+ indent_style = space
19
+ indent_size = 2
20
+
21
+ [{package.json,.travis.yml}]
22
+ indent_style = space
23
+ indent_size = 2
package/.jshintrc CHANGED
@@ -1,29 +1,29 @@
1
- {
2
- "bitwise":false,
3
- "boss":true,
4
- "expr":true,
5
- "camelcase":false,
6
- "curly":false,
7
- "eqeqeq":true,
8
- "freeze":true,
9
- "immed":true,
10
- "indent":2,
11
- "latedef":"nofunc",
12
- "laxbreak":true,
13
- "laxcomma":true,
14
- "newcap":true,
15
- "noarg":true,
16
- "node":true,
17
- "strict": true,
18
- "trailing":true,
19
- "undef":true,
20
- "predef": [
21
- "describe", // Used by mocha
22
- "it", // Used by mocha
23
- "xit", // Used by mocha
24
- "before", // Used by mocha
25
- "beforeEach", // Used by mocha
26
- "after", // Used by mocha
27
- "afterEach" // Used by mocha
28
- ]
29
- }
1
+ {
2
+ "bitwise":false,
3
+ "boss":true,
4
+ "expr":true,
5
+ "camelcase":false,
6
+ "curly":false,
7
+ "eqeqeq":true,
8
+ "freeze":true,
9
+ "immed":true,
10
+ "indent":2,
11
+ "latedef":"nofunc",
12
+ "laxbreak":true,
13
+ "laxcomma":true,
14
+ "newcap":true,
15
+ "noarg":true,
16
+ "node":true,
17
+ "strict": true,
18
+ "trailing":true,
19
+ "undef":true,
20
+ "predef": [
21
+ "describe", // Used by mocha
22
+ "it", // Used by mocha
23
+ "xit", // Used by mocha
24
+ "before", // Used by mocha
25
+ "beforeEach", // Used by mocha
26
+ "after", // Used by mocha
27
+ "afterEach" // Used by mocha
28
+ ]
29
+ }
package/.travis.yml CHANGED
@@ -1,22 +1,22 @@
1
- sudo: false
2
- language: node_js
3
- notifications:
4
- email: false
5
- node_js:
6
- - 4.0
7
- - 6.9.4
8
- - 7.4.0
9
- - node
10
- env:
11
- - CXX=g++-4.8
12
- addons:
13
- apt:
14
- sources:
15
- - ubuntu-toolchain-r-test
16
- packages:
17
- - g++-4.8
18
- before_install:
19
- - npm -g install npm@latest
20
- script:
21
- - npm run cover
22
- - npm run coveralls
1
+ sudo: false
2
+ language: node_js
3
+ notifications:
4
+ email: false
5
+ node_js:
6
+ - 4.8.4
7
+ - 6.9.4
8
+ - 7.4.0
9
+ - "lts/*"
10
+ env:
11
+ - CXX=g++-4.8
12
+ addons:
13
+ apt:
14
+ sources:
15
+ - ubuntu-toolchain-r-test
16
+ packages:
17
+ - g++-4.8
18
+ before_install:
19
+ - npm -g install npm@latest
20
+ script:
21
+ - npm run cover
22
+ - npm run coveralls
package/CONTRIBUTING.md CHANGED
@@ -1,58 +1,52 @@
1
- # Contribution Guidelines
2
-
3
- Thank you for your support! node-soap wouldn't be where it is today without contributors like you who are willing to take the time to improve it for everyone else.
4
-
5
- Because SOAP Web Services can differ amongst implementations, there is high risk involved in making changes. What works for your WSDL, might not work with another. It is therefore _essential_ that contributors to node-soap adhere to these guidelines.
6
-
7
- ## Filing issues
8
- * Please look through the issues that are currently open in the attempt to find one that matches yours.
9
- * If you find an issue that matches yours, please submit your documentation about it there as it will help everyone understand it more.
10
- * If you plan on fixing the issue, please take the time to fix it first and then provide a Pull Request.
11
- * Please be descriptive in your issue titles I.E. "Error occurs when calling client.foo on WSDL without import element."
12
-
13
- ## Submitting a Pull Request
14
- * Pull Requests **must be rebased to the latest version of master and _squashed to a single commit_** i.e. `git checkout master;git pull upstream master;git checkout feature-branch;git rebase -i master`
15
- * Pull Requests **must have accompanying tests** (either Unit or Request/Response Sample tests are welcome). Your chances of getting the PR merged are very low if you don't provide any tests.
16
- * Pull Requests must have passing travis builds.
17
- * Pull Requests must be able to merge automatically from github.
18
- * Please **do not close a pull request due to a request to rebase**. Git is a powerful VCS and deserves your time in learning how to rebase properly. Pull Requests are updated automatically on github when you force push to your branch after rebasing.
19
-
20
- Very useful articles/help on this topic:
21
- - [GitHub Help - About Git rebase](https://help.github.com/articles/about-git-rebase/)
22
- - [GitHub Help - Using Git rebase](https://help.github.com/articles/using-git-rebase/)
23
-
24
- * Please use descriptive commit messages. Commit messages are used during the creation of history and release notes. You'll make the job of maintainers much easier by doing this.
25
-
26
- ## Making Changes
27
- * Any and all pull requests to change documentation or typos are welcome!
28
- * Any WSDL checked in should be as small and as generic as possible. This is to keep the size of the codebase from growing too large and to keep the reason for submitting the WSDL clear I.E. if the WSDL was submitted because attributes were not being parsed on response XML, then it would be appropriate to submit a WSDL that defines a response with attributes *and nothing else*. If you find an issue with the parser not being able to handle large WSDLs, then it would be appropriate to submit a large WSDL to recreate the issue with.
29
- * If your issue is WSDL related:
30
- ````
31
- 1. Make your WSDL as generic as possible to recreate the issue
32
- 2. Add the WSDL to the appropriate path in test/wsdl.
33
- 3. Commit your changes to a feature branch within your fork.
34
- 4. Issue a pull request.
35
- ````
36
-
37
- * If your issue is client related:
38
- ````
39
- 1. Capture the request / response XML via client.lastRequest and client.lastResponse as well as the WSDL.
40
- 2. Make the WSDL, request, and response XML as generic as possible.
41
- 3. Only include the messages or operations that are having issues.
42
- 4. Add the appropriate files to test/request-response-samples (see the README therein)
43
- 5. Commit your changes to a feature branch within your fork.
44
- 6. Issue a pull request
45
- ````
46
-
47
- * If your issue is neither WSDL nor client related:
48
- ````
49
- 1. Provide a test of some form in an appropriate *-test.js file under test/
50
- 2. Commit your changes to a feature branch within your fork.
51
- 3. Issue a pull request.
52
- ````
53
-
54
- ## Issue Expiration
55
- Any pull request or issue filed is subject to an expiration date. We will close any open issue that has not received a response within a 2 week timeframe. The goal is not to sweep dirt under the rug, but to keep the focus on merging in pull requests. Please provide pull requests that meet the above criteria wherever possible.
56
-
57
- ## Other ways you can contribute
58
- Please add response, request, and WSDL files to test/wsdl, and test/request-response-samples (see README therein). Doing so documents behavior and reduces the likelihood that bugs will be introduced by future pull requests.
1
+ # Contribution Guidelines
2
+
3
+ Thank you for your support! node-soap wouldn't be where it is today without contributors like you who are willing to take the time to improve it for everyone else.
4
+
5
+ Because SOAP Web Services can differ amongst implementations, there is high risk involved in making changes. What works for your WSDL, might not work with another. It is therefore _essential_ that contributors to node-soap adhere to these guidelines.
6
+
7
+ ## Submitting a Pull Request
8
+ * Pull Requests **must be rebased to the latest version of master and _squashed to a single commit_** i.e. `git checkout master;git pull upstream master;git checkout feature-branch;git rebase -i master`
9
+ * Pull Requests **must have accompanying tests** (either Unit or Request/Response Sample tests are welcome). Your chances of getting the PR merged are very low if you don't provide any tests.
10
+ * Pull Requests must have passing travis builds.
11
+ * Pull Requests must be able to merge automatically from github.
12
+ * Please **do not close a pull request due to a request to rebase**. Git is a powerful VCS and deserves your time in learning how to rebase properly. Pull Requests are updated automatically on github when you force push to your branch after rebasing.
13
+
14
+ Very useful articles/help on this topic:
15
+ - [GitHub Help - About Git rebase](https://help.github.com/articles/about-git-rebase/)
16
+ - [GitHub Help - Using Git rebase](https://help.github.com/articles/using-git-rebase/)
17
+
18
+ * Please use descriptive commit messages. Commit messages are used during the creation of history and release notes. You'll make the job of maintainers much easier by doing this.
19
+
20
+ ## Making Changes
21
+ * Any and all pull requests to change documentation or typos are welcome!
22
+ * Any WSDL checked in should be as small and as generic as possible. This is to keep the size of the codebase from growing too large and to keep the reason for submitting the WSDL clear I.E. if the WSDL was submitted because attributes were not being parsed on response XML, then it would be appropriate to submit a WSDL that defines a response with attributes *and nothing else*. If you find an issue with the parser not being able to handle large WSDLs, then it would be appropriate to submit a large WSDL to recreate the issue with.
23
+ * If your Pull Request is WSDL related:
24
+ ````
25
+ 1. Make your WSDL as generic as possible to recreate the issue
26
+ 2. Add the WSDL to the appropriate path in test/wsdl.
27
+ 3. Commit your changes to a feature branch within your fork.
28
+ 4. Issue a pull request.
29
+ ````
30
+
31
+ * If your Pull Request is client related:
32
+ ````
33
+ 1. Capture the request / response XML via client.lastRequest and client.lastResponse as well as the WSDL.
34
+ 2. Make the WSDL, request, and response XML as generic as possible.
35
+ 3. Only include the messages or operations that are having issues.
36
+ 4. Add the appropriate files to test/request-response-samples (see the README therein)
37
+ 5. Commit your changes to a feature branch within your fork.
38
+ 6. Issue a pull request
39
+ ````
40
+
41
+ * If your Pull Request is neither WSDL nor client related:
42
+ ````
43
+ 1. Provide a test of some form in an appropriate *-test.js file under test/
44
+ 2. Commit your changes to a feature branch within your fork.
45
+ 3. Issue a pull request.
46
+ ````
47
+
48
+ ## Issue Expiration
49
+ Any pull request filed is subject to an expiration date. We will close any open Pull Request that has not received a response within a 2 week timeframe. The goal is not to sweep dirt under the rug, but to keep the focus on merging in pull requests. Please provide pull requests that meet the above criteria wherever possible.
50
+
51
+ ## Other ways you can contribute
52
+ Please add response, request, and WSDL files to test/wsdl, and test/request-response-samples (see README therein). Doing so documents behavior and reduces the likelihood that bugs will be introduced by future pull requests.
package/History.md CHANGED
@@ -1,11 +1,61 @@
1
+ 0.24.0 / 2018-04-05
2
+ ===================
3
+ * [DOC] Error on custom deserializer example (#1000)
4
+ * [DOC] Fix broken link
5
+ * [DOC] adding bullets to separate each option
6
+ * [DOC] changed ClientSSLSecurity to ClientSSLSecurityPFX in the readme file
7
+ * [DOC] clarify section on client events in Readme.md (#989)
8
+ * [ENHANCEMENT] Added one-way response configuration options
9
+ * [ENHANCEMENT] Adding support for SOAP 1.2 Envelope Headers in the server side (#1003)
10
+ * [ENHANCEMENT] Enable multiArgs during promisification
11
+ * [ENHANCEMENT] add Client.wsdl for accessing client.wsdl during soap.createClient() (#990)
12
+ * [ENHANCEMENT] add option to remove element-by-element namespacing of json arrays (#994)
13
+ * [ENHANCEMENT] add rawRequest to callback arguments (#992)
14
+ * [FIX] Fixed checking for empty obj.Body before further actions (#986)
15
+ * [FIX] Lookup definitions in child element first (#958)
16
+ * [FIX] only detect xsi:nil if its value is `true` (#983)
17
+ * [MAINTENANCE] Updating the coverage to use the new version of Istanbul framework, the nyc.
18
+ * [MAINTENANCE] Upgrade Lodash to 4.17.5 (#1001)
19
+
20
+ 0.23.0 / 2017-10-18
21
+ ===================
22
+ * [FIX] Fixing tests broken by #979
23
+ * [FEATURE] replace non identifier chars to underscore (#978)
24
+ * [FEATURE] Pool keep alive connections if forever option is used (#979)
25
+ * [MAINTENANCE] Use assert.ifError function in tests (#976)
26
+ * [FEATURE] Add function support for server addSoapHeader (#977)
27
+
28
+ 0.22.0 / 2017-10-02
29
+ ===================
30
+ * [ENHANCEMENT] Added `forever` option to `ClientSSLSecurity` in order to allow `keep-alive` connections. (#974)
31
+ * [ENHANCEMENT] Added `preserveWhitespace` option to prevent the client from trimming resolved `String` values. (#972)
32
+ * [MAINTENANCE] Removed `compres` dependency in favor of `zlib`. (#971)
33
+ * [MAINTENANCE] (Security) Updated `debug` dependency to avoid possible vulnerability. (#973)
34
+ * [FIX] Updated `.travis.yml` to test against latest `node.js 4.8.x` release to avoid Travis CI error.
35
+ * [FIX] Fix performance bug at POJO to XML conversion. (#968)
36
+ * [ENHANCEMENT] Added possibility to override the `bluebird.js` suffix (default: "async"). (#961)
37
+ * [DOC] Updated the `Security` section by listing all available optional methods. (#966)
38
+
39
+ 0.21.0 / 2017-08-28
40
+ ===================
41
+ * [DOC] Removed issues from Contributing Readme (#963)
42
+ * [DOC] Add server option details to readme.md (#965)
43
+ * [DOC] Added details to clientSSLSecurity (#960)
44
+ * [ENHANCEMENT] Added 'useEmptyTag' wsdlOption, which if set, creates <Tag /> instead of <Tag></Tag> if no body is present (#962)
45
+ * [ENHANCEMENT] Add typescript support (#955)
46
+ * [FIX] `path.resolve` cannot resolve a null path (#959)
47
+ * [MAINTENANCE] Updated minimum node version to 4.0.0 (#964)
48
+ * [MAINTENANCE] Update `uuid` library to latest release (`3.1.0`) and use their newly introduced "modules" instead of the outdated/deprecated direct method calls.
49
+ * [MAINTENANCE] Fixed JSHint indentation errors in `test/client-test.js`.
50
+
1
51
  0.20.0 / 2017-08-08
2
52
  ===================
3
- * [ENHANCEMENT] Added `bluebird.js` promise library in order to provide `[methodName]Asyc` in `Client` (#956)
53
+ * [ENHANCEMENT] Added `bluebird.js` promise library in order to provide `[methodName]Asyc` in `Client` (#956)
4
54
  * [ENHANCEMENT] Added `option` to handle `nilAsNull` in `SOAP` responses (#952)
5
55
  * [ENHANCEMENT] Added `option` to return a `SOAP Fault` instead of `stack` (error) on bad request (#951)
6
56
  * [MAINTENANCE] Removed uneccessary variable declaration in `http.js` (#948)
7
57
  * [ENHANCEMENT] Added possibiltiy to alter `XML` before it is sent (#943)
8
- * [FIX] Updated vulnerable module `finalhandler` to version `^1.0.3` (#946)
58
+ * [FIX] Updated vulnerable module `finalhandler` to version `^1.0.3` (#946)
9
59
  * [ENHANCEMENT] Added possibility to submit `XML`-Strings to SOAP Client API (#918)
10
60
 
11
61
  0.19.2 / 2017-06-12
package/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
- Copyright (C) 2013 Vinay Pulim
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
-
5
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
-
7
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (C) 2013 Vinay Pulim
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/PUBLISHING.md CHANGED
@@ -1,28 +1,28 @@
1
- Publishing
2
- ===================
3
-
4
- This document describes the steps a maintainer of this project generally takes in
5
- order to publish a newer version of `node-soap`.
6
-
7
- ## Ideals
8
- * Pull Requests that alter, add, or correct functionality have a single commit.
9
- * All commit messages are descriptive.
10
- * Maintainers spend little time looking at git history to update HISTORY.md.
11
-
12
- ## Process
13
- 1. Checkout the commit that you would like to publish. This is usually accomplished
14
- with `git checkout master`.
15
- 2. Run `git log --oneline`
16
- 3. Copy the commit messages above the last release commit message into History.md.
17
- 4. Consolidate the commit messages:
18
- * Remove any futile commits I.E. "Removing white space"
19
- * Remove Pull Request merge commits. In some cases, you may need to reference the issue in
20
- order to get the commit message for that Pull Request.
21
- * Prefix commit messages with "Enhancement", "Fixed", "Deprecated" and so forth
22
- accordingly.
23
- * Reword line items as necessary.
24
- 5. Update package.json to the appropriate version for the release.
25
- 6. Commit your changes to master and push them up to github.
26
- 7. Use the github interface to create a tag.
27
- * Use existing release notes as a reference when adding the release notes to github.
28
- 8. `npm publish`.
1
+ Publishing
2
+ ===================
3
+
4
+ This document describes the steps a maintainer of this project generally takes in
5
+ order to publish a newer version of `node-soap`.
6
+
7
+ ## Ideals
8
+ * Pull Requests that alter, add, or correct functionality have a single commit.
9
+ * All commit messages are descriptive.
10
+ * Maintainers spend little time looking at git history to update HISTORY.md.
11
+
12
+ ## Process
13
+ 1. Checkout the commit that you would like to publish. This is usually accomplished
14
+ with `git checkout master`.
15
+ 2. Run `git log --oneline`
16
+ 3. Copy the commit messages above the last release commit message into History.md.
17
+ 4. Consolidate the commit messages:
18
+ * Remove any futile commits I.E. "Removing white space"
19
+ * Remove Pull Request merge commits. In some cases, you may need to reference the issue in
20
+ order to get the commit message for that Pull Request.
21
+ * Prefix commit messages with "Enhancement", "Fixed", "Deprecated" and so forth
22
+ accordingly.
23
+ * Reword line items as necessary.
24
+ 5. Update package.json to the appropriate version for the release.
25
+ 6. Commit your changes to master and push them up to github.
26
+ 7. Use the github interface to create a tag.
27
+ * Use existing release notes as a reference when adding the release notes to github.
28
+ 8. `npm publish`.