nodejs-poolcontroller 7.6.1 → 7.7.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 (91) hide show
  1. package/.eslintrc.json +44 -44
  2. package/.github/ISSUE_TEMPLATE/1-bug-report.yml +84 -0
  3. package/.github/ISSUE_TEMPLATE/2-docs.md +12 -0
  4. package/.github/ISSUE_TEMPLATE/3-proposal.md +28 -0
  5. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  6. package/CONTRIBUTING.md +74 -74
  7. package/Changelog +220 -215
  8. package/Dockerfile +17 -17
  9. package/Gruntfile.js +40 -40
  10. package/LICENSE +661 -661
  11. package/README.md +191 -191
  12. package/app.ts +1 -1
  13. package/config/Config.ts +14 -0
  14. package/config/VersionCheck.ts +2 -2
  15. package/controller/Constants.ts +2 -1
  16. package/controller/Equipment.ts +2484 -2459
  17. package/controller/Errors.ts +180 -180
  18. package/controller/Lockouts.ts +502 -436
  19. package/controller/State.ts +106 -30
  20. package/controller/boards/AquaLinkBoard.ts +1000 -0
  21. package/controller/boards/BoardFactory.ts +49 -45
  22. package/controller/boards/EasyTouchBoard.ts +2859 -2653
  23. package/controller/boards/IntelliCenterBoard.ts +4198 -4230
  24. package/controller/boards/IntelliComBoard.ts +63 -63
  25. package/controller/boards/IntelliTouchBoard.ts +273 -241
  26. package/controller/boards/NixieBoard.ts +1728 -1675
  27. package/controller/boards/SystemBoard.ts +4925 -4697
  28. package/controller/comms/Comms.ts +442 -479
  29. package/controller/comms/messages/Messages.ts +171 -25
  30. package/controller/comms/messages/config/ChlorinatorMessage.ts +5 -2
  31. package/controller/comms/messages/config/CircuitGroupMessage.ts +0 -0
  32. package/controller/comms/messages/config/CircuitMessage.ts +1 -0
  33. package/controller/comms/messages/config/ConfigMessage.ts +0 -0
  34. package/controller/comms/messages/config/CoverMessage.ts +0 -0
  35. package/controller/comms/messages/config/CustomNameMessage.ts +30 -30
  36. package/controller/comms/messages/config/EquipmentMessage.ts +0 -0
  37. package/controller/comms/messages/config/ExternalMessage.ts +0 -0
  38. package/controller/comms/messages/config/FeatureMessage.ts +0 -0
  39. package/controller/comms/messages/config/GeneralMessage.ts +0 -0
  40. package/controller/comms/messages/config/HeaterMessage.ts +142 -10
  41. package/controller/comms/messages/config/IntellichemMessage.ts +0 -0
  42. package/controller/comms/messages/config/OptionsMessage.ts +4 -21
  43. package/controller/comms/messages/config/PumpMessage.ts +53 -35
  44. package/controller/comms/messages/config/RemoteMessage.ts +0 -0
  45. package/controller/comms/messages/config/ScheduleMessage.ts +350 -347
  46. package/controller/comms/messages/config/SecurityMessage.ts +0 -0
  47. package/controller/comms/messages/config/ValveMessage.ts +1 -1
  48. package/controller/comms/messages/status/ChlorinatorStateMessage.ts +38 -86
  49. package/controller/comms/messages/status/EquipmentStateMessage.ts +58 -22
  50. package/controller/comms/messages/status/HeaterStateMessage.ts +116 -86
  51. package/controller/comms/messages/status/IntelliChemStateMessage.ts +445 -445
  52. package/controller/comms/messages/status/IntelliValveStateMessage.ts +35 -35
  53. package/controller/comms/messages/status/PumpStateMessage.ts +23 -1
  54. package/controller/comms/messages/status/VersionMessage.ts +0 -0
  55. package/controller/nixie/Nixie.ts +162 -162
  56. package/controller/nixie/NixieEquipment.ts +103 -103
  57. package/controller/nixie/bodies/Body.ts +120 -120
  58. package/controller/nixie/bodies/Filter.ts +135 -135
  59. package/controller/nixie/chemistry/ChemController.ts +2511 -2498
  60. package/controller/nixie/chemistry/Chlorinator.ts +363 -314
  61. package/controller/nixie/circuits/Circuit.ts +261 -248
  62. package/controller/nixie/heaters/Heater.ts +650 -648
  63. package/controller/nixie/pumps/Pump.ts +906 -661
  64. package/controller/nixie/schedules/Schedule.ts +313 -257
  65. package/controller/nixie/valves/Valve.ts +170 -170
  66. package/defaultConfig.json +306 -286
  67. package/logger/DataLogger.ts +448 -448
  68. package/logger/Logger.ts +0 -0
  69. package/package.json +56 -56
  70. package/tsconfig.json +25 -25
  71. package/web/Server.ts +92 -47
  72. package/web/bindings/aqualinkD.json +505 -0
  73. package/web/bindings/influxDB.json +1051 -1021
  74. package/web/bindings/mqtt.json +702 -654
  75. package/web/bindings/mqttAlt.json +731 -684
  76. package/web/bindings/rulesManager.json +54 -54
  77. package/web/bindings/smartThings-Hubitat.json +31 -31
  78. package/web/bindings/valveRelays.json +20 -20
  79. package/web/bindings/vera.json +25 -25
  80. package/web/interfaces/baseInterface.ts +137 -136
  81. package/web/interfaces/httpInterface.ts +145 -124
  82. package/web/interfaces/influxInterface.ts +276 -245
  83. package/web/interfaces/mqttInterface.ts +535 -475
  84. package/web/services/config/Config.ts +39 -18
  85. package/web/services/config/ConfigSocket.ts +0 -0
  86. package/web/services/state/State.ts +10 -0
  87. package/web/services/state/StateSocket.ts +4 -4
  88. package/web/services/utilities/Utilities.ts +44 -42
  89. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -52
  90. package/config copy.json +0 -300
  91. package/issue_template.md +0 -52
package/.eslintrc.json CHANGED
@@ -1,45 +1,45 @@
1
- {
2
- /* See all the pre-defined configs here: https://www.npmjs.com/package/eslint-config-defaults */
3
- "extends": [
4
- "eslint:recommended"
5
- ],
6
- "parser": "@typescript-eslint/parser",
7
- "parserOptions": {
8
- "ecmaVersion": 6,
9
- "ecmaFeatures": {
10
- "jsx": true
11
- },
12
- "sourceType": "module"
13
- },
14
- "env": {
15
- "amd": true,
16
- "browser": true,
17
- "jquery": true,
18
- "node": true,
19
- "es6": true,
20
- "worker": true
21
- },
22
- "rules": {
23
- "eqeqeq": 2,
24
- "comma-dangle": 1,
25
- "no-console": 0,
26
- "no-debugger": 1,
27
- "no-extra-semi": 1,
28
- "no-extra-parens": 0,
29
- "no-irregular-whitespace": 0,
30
- "no-undef": 0,
31
- "no-unused-vars": 0,
32
- "no-case-declaration": 0,
33
- "no-prototype-builtins": 0,
34
- "semi": 1,
35
- "semi-spacing": 1,
36
- "valid-jsdoc": [
37
- 2,
38
- {
39
- "requireReturn": false
40
- }
41
- ],
42
- "space-infix-ops": 2,
43
- "keyword-spacing": ["error",{"before": true, "after": true}]
44
- }
1
+ {
2
+ /* See all the pre-defined configs here: https://www.npmjs.com/package/eslint-config-defaults */
3
+ "extends": [
4
+ "eslint:recommended"
5
+ ],
6
+ "parser": "@typescript-eslint/parser",
7
+ "parserOptions": {
8
+ "ecmaVersion": 6,
9
+ "ecmaFeatures": {
10
+ "jsx": true
11
+ },
12
+ "sourceType": "module"
13
+ },
14
+ "env": {
15
+ "amd": true,
16
+ "browser": true,
17
+ "jquery": true,
18
+ "node": true,
19
+ "es6": true,
20
+ "worker": true
21
+ },
22
+ "rules": {
23
+ "eqeqeq": 2,
24
+ "comma-dangle": 1,
25
+ "no-console": 0,
26
+ "no-debugger": 1,
27
+ "no-extra-semi": 1,
28
+ "no-extra-parens": 0,
29
+ "no-irregular-whitespace": 0,
30
+ "no-undef": 0,
31
+ "no-unused-vars": 0,
32
+ "no-case-declaration": 0,
33
+ "no-prototype-builtins": 0,
34
+ "semi": 1,
35
+ "semi-spacing": 1,
36
+ "valid-jsdoc": [
37
+ 2,
38
+ {
39
+ "requireReturn": false
40
+ }
41
+ ],
42
+ "space-infix-ops": 2,
43
+ "keyword-spacing": ["error",{"before": true, "after": true}]
44
+ }
45
45
  }
@@ -0,0 +1,84 @@
1
+ name: "\U0001F41B Bug report"
2
+ description: Create a report to help us improve
3
+ title: '[BUG] '
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Thank you for reporting an issue. Most issues can be more readily resolved by attaching a Packet Capture. Follow the instructions to complete a [packet capture](https://github.com/tagyoureit/nodejs-poolController/wiki/How-to-capture-all-packets-for-issue-resolution) and attach the resulting zip/log files.
9
+
10
+ If you require more general support please file an start a discussion on our discussion board https://github.com/tagyoureit/nodejs-poolController/discussions
11
+
12
+ Having trouble installing? Be sure to check out the wiki! https://github.com/tagyoureit/nodejs-poolController/wiki
13
+
14
+ Please fill in as much of the form below as you're able.
15
+ - type: input
16
+ attributes:
17
+ label: nodejs-poolController Version/commit
18
+ description: can be viewed under dashPanel. Hamburger menu => System.
19
+ validations:
20
+ required: true
21
+ - type: input
22
+ attributes:
23
+ label: nodejs-poolController-dashPanel Version/commit
24
+ description: if applicable
25
+ - type: input
26
+ attributes:
27
+ label: relayEquipmentManager Version/commit
28
+ description: if applicable
29
+ - type: input
30
+ attributes:
31
+ label: Node Version
32
+ description: Output of `node -v`
33
+ - type: input
34
+ attributes:
35
+ label: Platform
36
+ description: |
37
+ UNIX: output of `uname -a`
38
+ Windows: output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in PowerShell console
39
+ - type: input
40
+ attributes:
41
+ label: RS485 Adapter
42
+ description: Elfin? JBTek?
43
+ - type: checkboxes
44
+ attributes:
45
+ label: Are you using Docker?
46
+ options:
47
+ - label: Yes.
48
+ - type: input
49
+ attributes:
50
+ label: OCP
51
+ description: Outdoor Control Panel. Eg EasyTouch2 8P, Intellicenter i5PS, none.
52
+ placeholder: None / Nixie (standalone setup)
53
+ - type: input
54
+ attributes:
55
+ label: Pump(s)
56
+ description: Please list all pumps. EG Intelliflo 2 VST, Intelliflo VS
57
+ placeholder: Intelliflo VS
58
+ - type: input
59
+ attributes:
60
+ label: Chlorinator(s)
61
+ description: Please list all chlorinators. EG Intellichlor IC-40, Aquarite, None
62
+ placeholder: None
63
+ - type: textarea
64
+ attributes:
65
+ label: What steps will reproduce the bug?
66
+ description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies.
67
+ validations:
68
+ required: true
69
+ - type: textarea
70
+ attributes:
71
+ label: What happens?
72
+ description: If possible please provide textual output instead of screenshots.
73
+ validations:
74
+ required: true
75
+ - type: textarea
76
+ attributes:
77
+ label: What should have happened?
78
+ description: If possible please provide textual output instead of screenshots.
79
+ validations:
80
+ required: true
81
+ - type: textarea
82
+ attributes:
83
+ label: Additional information
84
+ description: Tell us anything else you think we should know.
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: 📚 Documentation
3
+ about: Report an issue related to documentation
4
+ ---
5
+
6
+ ## 📚 Documentation
7
+
8
+ (A clear and concise description of how the docs could be better, with links if possible)
9
+
10
+ ### Have you read the [Contributing Guidelines on docs](https://github.com/serialport/node-serialport/blob/master/CONTRIBUTING.md#writing-documentation)?
11
+
12
+ (Write your answer here.)
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: 💥 Proposal / Feature
3
+ about: Propose a non-trivial change or new feature for SerialPort
4
+ ---
5
+
6
+ ## 💥 Proposal
7
+
8
+ ### What feature you'd like to see
9
+
10
+ (A clear and concise description of what the proposal is.)
11
+
12
+ ## Motivation
13
+
14
+ (Please outline the motivation for the proposal. It's interesting knowing what people are working on and also could help community members make suggestions for work-arounds until the feature is built)
15
+
16
+ ## Pitch
17
+
18
+ (Please explain why this feature should be implemented and how it would be used.)
19
+
20
+ <!--
21
+ What happens if you skip this step?
22
+
23
+ Someone will read your feature proposal and maybe will be able to help you,
24
+ but it’s unlikely that it will get much attention from the team. Eventually,
25
+ the issue will likely get closed in favor of issues that have better explanations
26
+
27
+ Thanks for helping us help you!
28
+ -->
@@ -0,0 +1,8 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: ⁉️ Need help with nodejs-poolController?
4
+ url: https://github.com/tagyoureit/nodejs-poolController/discussions
5
+ about: Please start a discussion before opening a bug.
6
+ - name: Gitter
7
+ url: https://gitter.im/nodejs-poolController/Lobby
8
+ about: Legacy Gitter discussion forums
package/CONTRIBUTING.md CHANGED
@@ -1,74 +1,74 @@
1
- # How to contribute
2
-
3
- Third-party patches are essential for keeping nodejs-poolController great. We
4
- simply can't access the huge number of platforms and myriad configurations for
5
- running different pools and their equipment. We want to keep it as easy as
6
- possible to contribute changes that get things working in your environment.
7
- There are a few guidelines that we need contributors to follow so that we can
8
- have a chance of keeping on top of things.
9
-
10
-
11
- ## Getting Started
12
-
13
- * Make sure you have a [GitHub account](https://github.com/signup/free)
14
- * Submit a ticket for your issue, assuming one does not already exist.
15
- * Clearly describe the issue including steps to reproduce when it is a bug.
16
- * Make sure you fill in the earliest version that you know has the issue.
17
- * Fork the repository on GitHub
18
-
19
- ## Making Changes
20
-
21
- * Create a topic branch from where you want to base your work.
22
- * This is usually the master branch.
23
- * Only target release branches if you are certain your fix must be on that
24
- branch.
25
- * To quickly create a topic branch based on master; `git checkout -b
26
- fix/master/my_contribution master`. Please avoid working directly on the
27
- `master` branch.
28
- * Make commits of logical units.
29
- * Check for unnecessary whitespace with `git diff --check` before committing.
30
-
31
- * Make sure you have added the necessary tests for your changes.
32
- * Run _all_ the tests to assure nothing else was accidentally broken.
33
-
34
- ## Submitting Changes
35
-
36
- * By submitting any changes, you agree that any contributions provided will become the sole property of the Copyright holders subject to the terms below.
37
- 1. Definitions.
38
-
39
- "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Russell Goldin. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
40
-
41
- "Contribution" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Russell Goldin for inclusion in, or documentation of, any of the products owned or managed by Russell Goldin (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to Russell Goldin or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, Russell Goldin for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
42
-
43
- 2. Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Russell Goldin and to recipients of software distributed by Russell Goldin a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute Your Contributions and such derivative works.
44
-
45
- 3. Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Russell Goldin and to recipients of software distributed by Russell Goldin a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed.
46
-
47
- 4. You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to Russell Goldin, or that your employer has executed a separate Corporate CLA with Russell Goldin.
48
-
49
- 5. You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.
50
-
51
- 6. You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON- INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE.
52
-
53
- 7. Should You wish to submit work that is not Your original creation, You may submit it to Russell Goldin separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]".
54
-
55
- 8. You agree to notify Russell Goldin of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.
56
-
57
- * Push your changes to a topic branch in your fork of the repository.
58
- * Submit a pull request to the repository.
59
- * The core team looks at Pull Requests on a regular basis.
60
-
61
- ## Revert Policy
62
- By running tests in advance and by engaging with peer review for prospective
63
- changes, your contributions have a high probability of becoming long lived
64
- parts of the the project. After being merged, the code will run through a
65
- series of testing pipelines on a large number of operating system
66
- environments. These pipelines can reveal incompatibilities that are difficult
67
- to detect in advance.
68
-
69
- If the code change results in a test failure, we will make our best effort to
70
- correct the error.
71
-
72
-
73
- ### Summary
74
- * Changes resulting in failures will be reverted.
1
+ # How to contribute
2
+
3
+ Third-party patches are essential for keeping nodejs-poolController great. We
4
+ simply can't access the huge number of platforms and myriad configurations for
5
+ running different pools and their equipment. We want to keep it as easy as
6
+ possible to contribute changes that get things working in your environment.
7
+ There are a few guidelines that we need contributors to follow so that we can
8
+ have a chance of keeping on top of things.
9
+
10
+
11
+ ## Getting Started
12
+
13
+ * Make sure you have a [GitHub account](https://github.com/signup/free)
14
+ * Submit a ticket for your issue, assuming one does not already exist.
15
+ * Clearly describe the issue including steps to reproduce when it is a bug.
16
+ * Make sure you fill in the earliest version that you know has the issue.
17
+ * Fork the repository on GitHub
18
+
19
+ ## Making Changes
20
+
21
+ * Create a topic branch from where you want to base your work.
22
+ * This is usually the master branch.
23
+ * Only target release branches if you are certain your fix must be on that
24
+ branch.
25
+ * To quickly create a topic branch based on master; `git checkout -b
26
+ fix/master/my_contribution master`. Please avoid working directly on the
27
+ `master` branch.
28
+ * Make commits of logical units.
29
+ * Check for unnecessary whitespace with `git diff --check` before committing.
30
+
31
+ * Make sure you have added the necessary tests for your changes.
32
+ * Run _all_ the tests to assure nothing else was accidentally broken.
33
+
34
+ ## Submitting Changes
35
+
36
+ * By submitting any changes, you agree that any contributions provided will become the sole property of the Copyright holders subject to the terms below.
37
+ 1. Definitions.
38
+
39
+ "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Russell Goldin. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
40
+
41
+ "Contribution" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Russell Goldin for inclusion in, or documentation of, any of the products owned or managed by Russell Goldin (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to Russell Goldin or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, Russell Goldin for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
42
+
43
+ 2. Grant of Copyright License. Subject to the terms and conditions of this Agreement, You hereby grant to Russell Goldin and to recipients of software distributed by Russell Goldin a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute Your Contributions and such derivative works.
44
+
45
+ 3. Grant of Patent License. Subject to the terms and conditions of this Agreement, You hereby grant to Russell Goldin and to recipients of software distributed by Russell Goldin a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed.
46
+
47
+ 4. You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to Russell Goldin, or that your employer has executed a separate Corporate CLA with Russell Goldin.
48
+
49
+ 5. You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.
50
+
51
+ 6. You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON- INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE.
52
+
53
+ 7. Should You wish to submit work that is not Your original creation, You may submit it to Russell Goldin separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]".
54
+
55
+ 8. You agree to notify Russell Goldin of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.
56
+
57
+ * Push your changes to a topic branch in your fork of the repository.
58
+ * Submit a pull request to the repository.
59
+ * The core team looks at Pull Requests on a regular basis.
60
+
61
+ ## Revert Policy
62
+ By running tests in advance and by engaging with peer review for prospective
63
+ changes, your contributions have a high probability of becoming long lived
64
+ parts of the the project. After being merged, the code will run through a
65
+ series of testing pipelines on a large number of operating system
66
+ environments. These pipelines can reveal incompatibilities that are difficult
67
+ to detect in advance.
68
+
69
+ If the code change results in a test failure, we will make our best effort to
70
+ correct the error.
71
+
72
+
73
+ ### Summary
74
+ * Changes resulting in failures will be reverted.