nodejs-poolcontroller 7.3.1 → 7.6.1

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 (85) hide show
  1. package/.eslintrc.json +44 -44
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +52 -52
  3. package/CONTRIBUTING.md +74 -74
  4. package/Changelog +215 -195
  5. package/Dockerfile +17 -17
  6. package/Gruntfile.js +40 -40
  7. package/LICENSE +661 -661
  8. package/README.md +191 -186
  9. package/app.ts +2 -0
  10. package/config/Config.ts +27 -2
  11. package/config/VersionCheck.ts +33 -14
  12. package/config copy.json +299 -299
  13. package/controller/Constants.ts +88 -0
  14. package/controller/Equipment.ts +2459 -2225
  15. package/controller/Errors.ts +180 -157
  16. package/controller/Lockouts.ts +437 -0
  17. package/controller/State.ts +364 -79
  18. package/controller/boards/BoardFactory.ts +45 -45
  19. package/controller/boards/EasyTouchBoard.ts +2653 -2489
  20. package/controller/boards/IntelliCenterBoard.ts +4230 -3973
  21. package/controller/boards/IntelliComBoard.ts +63 -63
  22. package/controller/boards/IntelliTouchBoard.ts +241 -167
  23. package/controller/boards/NixieBoard.ts +1675 -1105
  24. package/controller/boards/SystemBoard.ts +4697 -3201
  25. package/controller/comms/Comms.ts +222 -10
  26. package/controller/comms/messages/Messages.ts +13 -9
  27. package/controller/comms/messages/config/ChlorinatorMessage.ts +13 -4
  28. package/controller/comms/messages/config/CircuitGroupMessage.ts +6 -0
  29. package/controller/comms/messages/config/CircuitMessage.ts +0 -0
  30. package/controller/comms/messages/config/ConfigMessage.ts +0 -0
  31. package/controller/comms/messages/config/CoverMessage.ts +1 -0
  32. package/controller/comms/messages/config/CustomNameMessage.ts +30 -30
  33. package/controller/comms/messages/config/EquipmentMessage.ts +4 -0
  34. package/controller/comms/messages/config/ExternalMessage.ts +53 -33
  35. package/controller/comms/messages/config/FeatureMessage.ts +8 -1
  36. package/controller/comms/messages/config/GeneralMessage.ts +8 -0
  37. package/controller/comms/messages/config/HeaterMessage.ts +14 -28
  38. package/controller/comms/messages/config/IntellichemMessage.ts +4 -1
  39. package/controller/comms/messages/config/OptionsMessage.ts +38 -2
  40. package/controller/comms/messages/config/PumpMessage.ts +4 -20
  41. package/controller/comms/messages/config/RemoteMessage.ts +4 -0
  42. package/controller/comms/messages/config/ScheduleMessage.ts +347 -331
  43. package/controller/comms/messages/config/SecurityMessage.ts +1 -0
  44. package/controller/comms/messages/config/ValveMessage.ts +13 -3
  45. package/controller/comms/messages/status/ChlorinatorStateMessage.ts +2 -3
  46. package/controller/comms/messages/status/EquipmentStateMessage.ts +79 -25
  47. package/controller/comms/messages/status/HeaterStateMessage.ts +86 -53
  48. package/controller/comms/messages/status/IntelliChemStateMessage.ts +445 -386
  49. package/controller/comms/messages/status/IntelliValveStateMessage.ts +35 -35
  50. package/controller/comms/messages/status/PumpStateMessage.ts +0 -0
  51. package/controller/comms/messages/status/VersionMessage.ts +0 -0
  52. package/controller/nixie/Nixie.ts +162 -160
  53. package/controller/nixie/NixieEquipment.ts +103 -103
  54. package/controller/nixie/bodies/Body.ts +120 -117
  55. package/controller/nixie/bodies/Filter.ts +135 -135
  56. package/controller/nixie/chemistry/ChemController.ts +2498 -2395
  57. package/controller/nixie/chemistry/Chlorinator.ts +314 -313
  58. package/controller/nixie/circuits/Circuit.ts +248 -210
  59. package/controller/nixie/heaters/Heater.ts +649 -441
  60. package/controller/nixie/pumps/Pump.ts +661 -599
  61. package/controller/nixie/schedules/Schedule.ts +257 -256
  62. package/controller/nixie/valves/Valve.ts +170 -170
  63. package/defaultConfig.json +286 -271
  64. package/issue_template.md +51 -51
  65. package/logger/DataLogger.ts +448 -433
  66. package/logger/Logger.ts +0 -0
  67. package/package.json +56 -54
  68. package/tsconfig.json +25 -25
  69. package/web/Server.ts +522 -31
  70. package/web/bindings/influxDB.json +1022 -894
  71. package/web/bindings/mqtt.json +654 -543
  72. package/web/bindings/mqttAlt.json +684 -574
  73. package/web/bindings/rulesManager.json +54 -54
  74. package/web/bindings/smartThings-Hubitat.json +31 -31
  75. package/web/bindings/valveRelays.json +20 -20
  76. package/web/bindings/vera.json +25 -25
  77. package/web/interfaces/baseInterface.ts +136 -136
  78. package/web/interfaces/httpInterface.ts +124 -122
  79. package/web/interfaces/influxInterface.ts +245 -240
  80. package/web/interfaces/mqttInterface.ts +475 -464
  81. package/web/services/config/Config.ts +181 -152
  82. package/web/services/config/ConfigSocket.ts +0 -0
  83. package/web/services/state/State.ts +118 -7
  84. package/web/services/state/StateSocket.ts +18 -1
  85. package/web/services/utilities/Utilities.ts +42 -42
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
  }
@@ -1,52 +1,52 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
- title: ''
5
- labels: ''
6
- assignees: ''
7
-
8
- ---
9
-
10
- **Describe the bug**
11
- A clear and concise description of what the bug is.
12
-
13
- **To Reproduce**
14
- Steps to reproduce the behavior:
15
- 1. Go to '...'
16
- 2. Click on '....'
17
- 3. Scroll down to '....'
18
- 4. See error
19
-
20
- **Expected behavior**
21
- A clear and concise description of what you expected to happen.
22
-
23
- **Screenshots**
24
- If applicable, add screenshots to help explain your problem.
25
-
26
- **Packet Capture**
27
- 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.
28
-
29
- **Pool Equipment**
30
- - Controller: [e.g. IntelliCenter, EasyTouch, IntelliTouch]
31
- - Controller Model: [e.g. IntelliCenter i5PS, EasyTouch2 8P]
32
- - Controller Firmware Version: [e.g. 1.047]
33
- - Pump(s) manufacturer and model: [e.g. IntelliFlow 2 VST 011056]
34
- - Chlorinator: [e.g. iChlor, IntelliChlor-40]
35
- - Heater(s): [e.g. gas, solar, heatpump, ultratemp]
36
- - Chemical controller: [e.g. IntelliChem, homegrown]
37
- - Valves: [e.g. Intellivalve]
38
- - Any other relevant equipment:
39
-
40
- **Desktop (please complete the following information):**
41
- - OS: [e.g. iOS]
42
- - Browser [e.g. chrome, safari]
43
- - Version [e.g. 22]
44
-
45
- **Smartphone (please complete the following information):**
46
- - Device: [e.g. iPhone6]
47
- - OS: [e.g. iOS8.1]
48
- - Browser [e.g. stock browser, safari]
49
- - Version [e.g. 22]
50
-
51
- **Additional context**
52
- Add any other context about the problem here.
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ **To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1. Go to '...'
16
+ 2. Click on '....'
17
+ 3. Scroll down to '....'
18
+ 4. See error
19
+
20
+ **Expected behavior**
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ **Screenshots**
24
+ If applicable, add screenshots to help explain your problem.
25
+
26
+ **Packet Capture**
27
+ 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.
28
+
29
+ **Pool Equipment**
30
+ - Controller: [e.g. IntelliCenter, EasyTouch, IntelliTouch]
31
+ - Controller Model: [e.g. IntelliCenter i5PS, EasyTouch2 8P]
32
+ - Controller Firmware Version: [e.g. 1.047]
33
+ - Pump(s) manufacturer and model: [e.g. IntelliFlow 2 VST 011056]
34
+ - Chlorinator: [e.g. iChlor, IntelliChlor-40]
35
+ - Heater(s): [e.g. gas, solar, heatpump, ultratemp]
36
+ - Chemical controller: [e.g. IntelliChem, Relay Equipment Manager (REM)]
37
+ - Valves: [e.g. Intellivalve]
38
+ - Any other relevant equipment:
39
+
40
+ **Desktop (please complete the following information):**
41
+ - OS: [e.g. iOS]
42
+ - Browser [e.g. chrome, safari]
43
+ - Version [e.g. 22]
44
+
45
+ **Smartphone (please complete the following information):**
46
+ - Device: [e.g. iPhone6]
47
+ - OS: [e.g. iOS8.1]
48
+ - Browser [e.g. stock browser, safari]
49
+ - Version [e.g. 22]
50
+
51
+ **Additional context**
52
+ Add any other context about the problem here.
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.