nodejs-poolcontroller 7.6.1 → 8.0.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 (102) hide show
  1. package/.eslintrc.json +36 -45
  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 +242 -215
  8. package/Dockerfile +17 -17
  9. package/Gruntfile.js +40 -40
  10. package/LICENSE +661 -661
  11. package/README.md +195 -191
  12. package/anslq25/MessagesMock.ts +218 -0
  13. package/anslq25/boards/MockBoardFactory.ts +50 -0
  14. package/anslq25/boards/MockEasyTouchBoard.ts +696 -0
  15. package/anslq25/boards/MockSystemBoard.ts +217 -0
  16. package/anslq25/chemistry/MockChlorinator.ts +75 -0
  17. package/anslq25/pumps/MockPump.ts +84 -0
  18. package/app.ts +10 -14
  19. package/config/Config.ts +26 -8
  20. package/config/VersionCheck.ts +8 -4
  21. package/controller/Constants.ts +59 -25
  22. package/controller/Equipment.ts +2667 -2459
  23. package/controller/Errors.ts +181 -180
  24. package/controller/Lockouts.ts +534 -436
  25. package/controller/State.ts +596 -77
  26. package/controller/boards/AquaLinkBoard.ts +1003 -0
  27. package/controller/boards/BoardFactory.ts +53 -45
  28. package/controller/boards/EasyTouchBoard.ts +3079 -2653
  29. package/controller/boards/IntelliCenterBoard.ts +3821 -4230
  30. package/controller/boards/IntelliComBoard.ts +69 -63
  31. package/controller/boards/IntelliTouchBoard.ts +384 -241
  32. package/controller/boards/NixieBoard.ts +1871 -1675
  33. package/controller/boards/SunTouchBoard.ts +393 -0
  34. package/controller/boards/SystemBoard.ts +5244 -4697
  35. package/controller/comms/Comms.ts +905 -541
  36. package/controller/comms/ScreenLogic.ts +1663 -0
  37. package/controller/comms/messages/Messages.ts +382 -54
  38. package/controller/comms/messages/config/ChlorinatorMessage.ts +8 -4
  39. package/controller/comms/messages/config/CircuitGroupMessage.ts +5 -2
  40. package/controller/comms/messages/config/CircuitMessage.ts +82 -13
  41. package/controller/comms/messages/config/ConfigMessage.ts +3 -1
  42. package/controller/comms/messages/config/CoverMessage.ts +2 -1
  43. package/controller/comms/messages/config/CustomNameMessage.ts +31 -30
  44. package/controller/comms/messages/config/EquipmentMessage.ts +5 -1
  45. package/controller/comms/messages/config/ExternalMessage.ts +33 -3
  46. package/controller/comms/messages/config/FeatureMessage.ts +2 -1
  47. package/controller/comms/messages/config/GeneralMessage.ts +2 -1
  48. package/controller/comms/messages/config/HeaterMessage.ts +145 -11
  49. package/controller/comms/messages/config/IntellichemMessage.ts +2 -1
  50. package/controller/comms/messages/config/OptionsMessage.ts +16 -27
  51. package/controller/comms/messages/config/PumpMessage.ts +62 -47
  52. package/controller/comms/messages/config/RemoteMessage.ts +80 -13
  53. package/controller/comms/messages/config/ScheduleMessage.ts +390 -347
  54. package/controller/comms/messages/config/SecurityMessage.ts +2 -1
  55. package/controller/comms/messages/config/ValveMessage.ts +44 -27
  56. package/controller/comms/messages/status/ChlorinatorStateMessage.ts +44 -91
  57. package/controller/comms/messages/status/EquipmentStateMessage.ts +139 -30
  58. package/controller/comms/messages/status/HeaterStateMessage.ts +135 -86
  59. package/controller/comms/messages/status/IntelliChemStateMessage.ts +448 -445
  60. package/controller/comms/messages/status/IntelliValveStateMessage.ts +36 -35
  61. package/controller/comms/messages/status/PumpStateMessage.ts +92 -2
  62. package/controller/comms/messages/status/VersionMessage.ts +2 -1
  63. package/controller/nixie/Nixie.ts +173 -162
  64. package/controller/nixie/NixieEquipment.ts +104 -103
  65. package/controller/nixie/bodies/Body.ts +120 -120
  66. package/controller/nixie/bodies/Filter.ts +135 -135
  67. package/controller/nixie/chemistry/ChemController.ts +2682 -2498
  68. package/controller/nixie/chemistry/ChemDoser.ts +806 -0
  69. package/controller/nixie/chemistry/Chlorinator.ts +367 -314
  70. package/controller/nixie/circuits/Circuit.ts +402 -248
  71. package/controller/nixie/heaters/Heater.ts +815 -649
  72. package/controller/nixie/pumps/Pump.ts +934 -661
  73. package/controller/nixie/schedules/Schedule.ts +319 -257
  74. package/controller/nixie/valves/Valve.ts +170 -170
  75. package/defaultConfig.json +346 -286
  76. package/logger/DataLogger.ts +448 -448
  77. package/logger/Logger.ts +38 -9
  78. package/package.json +60 -56
  79. package/tsconfig.json +25 -25
  80. package/web/Server.ts +275 -117
  81. package/web/bindings/aqualinkD.json +560 -0
  82. package/web/bindings/homeassistant.json +437 -0
  83. package/web/bindings/influxDB.json +1066 -1021
  84. package/web/bindings/mqtt.json +721 -654
  85. package/web/bindings/mqttAlt.json +746 -684
  86. package/web/bindings/rulesManager.json +54 -54
  87. package/web/bindings/smartThings-Hubitat.json +31 -31
  88. package/web/bindings/valveRelays.json +20 -20
  89. package/web/bindings/vera.json +25 -25
  90. package/web/interfaces/baseInterface.ts +188 -136
  91. package/web/interfaces/httpInterface.ts +148 -124
  92. package/web/interfaces/influxInterface.ts +283 -245
  93. package/web/interfaces/mqttInterface.ts +695 -475
  94. package/web/interfaces/ruleInterface.ts +87 -0
  95. package/web/services/config/Config.ts +177 -49
  96. package/web/services/config/ConfigSocket.ts +2 -1
  97. package/web/services/state/State.ts +154 -3
  98. package/web/services/state/StateSocket.ts +69 -18
  99. package/web/services/utilities/Utilities.ts +232 -42
  100. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -52
  101. package/config copy.json +0 -300
  102. package/issue_template.md +0 -52
package/.eslintrc.json CHANGED
@@ -1,45 +1,36 @@
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
- }
1
+ {
2
+ "env": {
3
+ "es2021": true,
4
+ "node": true
5
+ },
6
+ "extends": [
7
+ "eslint:recommended",
8
+ "plugin:@typescript-eslint/recommended"
9
+ ],
10
+ "parser": "@typescript-eslint/parser",
11
+ "parserOptions": {
12
+ "ecmaVersion": "latest",
13
+ "sourceType": "module"
14
+ },
15
+ "plugins": [
16
+ "@typescript-eslint"
17
+ ],
18
+ "rules": {
19
+ "indent": [
20
+ "error",
21
+ "tab"
22
+ ],
23
+ "linebreak-style": [
24
+ "error",
25
+ "windows"
26
+ ],
27
+ "quotes": [
28
+ "error",
29
+ "single"
30
+ ],
31
+ "semi": [
32
+ "error",
33
+ "always"
34
+ ]
35
+ }
36
+ }
@@ -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.