Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hashgraph/solo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.22.0
Choose a base ref
...
head repository: hashgraph/solo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.22.1
Choose a head ref
  • 7 commits
  • 73 files changed
  • 3 contributors

Commits on Mar 14, 2024

  1. fix: solo should use a fixed FST chart version (#139)

    Signed-off-by: Lenin Mehedy <[email protected]>
    leninmehedy authored Mar 14, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b0d5f8b View commit details

Commits on Mar 19, 2024

  1. fix: refactor account initialization and mirror node setup from node …

    …command (#159)
    
    Signed-off-by: Lenin Mehedy <[email protected]>
    leninmehedy authored Mar 19, 2024
    Copy the full SHA
    b1d1e2d View commit details
  2. fix: use FST chart version v0.23.0 (#170)

    Signed-off-by: Lenin Mehedy <[email protected]>
    leninmehedy authored Mar 19, 2024
    Copy the full SHA
    54efab3 View commit details

Commits on Mar 20, 2024

  1. Copy the full SHA
    1d3dcf4 View commit details

Commits on Mar 21, 2024

  1. Copy the full SHA
    feba5f9 View commit details

Commits on Mar 22, 2024

  1. Copy the full SHA
    a27d1d2 View commit details
  2. chore(release): 0.22.1 [skip ci]

    ## [0.22.1](v0.22.0...v0.22.1) (2024-03-22)
    
    ### Bug Fixes
    
    * download JRE for keytool dependency and allow generation of pfx keys ([#152](#152)) ([1d3dcf4](1d3dcf4))
    * refactor account initialization and mirror node setup from node command ([#159](#159)) ([b1d1e2d](b1d1e2d))
    * solo should use a fixed FST chart version ([#139](#139)) ([b0d5f8b](b0d5f8b))
    * update HAProxy UP check to use HAProxy Data Plane API ([#173](#173)) ([a27d1d2](a27d1d2))
    * use FST chart version v0.23.0 ([#170](#170)) ([54efab3](54efab3))
    swirlds-automation committed Mar 22, 2024
    Copy the full SHA
    542d5ad View commit details
Showing with 3,331 additions and 1,480 deletions.
  1. +223 −163 README.md
  2. +73 −245 package-lock.json
  3. +4 −2 package.json
  4. +136 −1 src/commands/account.mjs
  5. +12 −9 src/commands/cluster.mjs
  6. +3 −1 src/commands/flags.mjs
  7. +4 −1 src/commands/index.mjs
  8. +307 −0 src/commands/mirror_node.mjs
  9. +0 −7 src/commands/network.mjs
  10. +298 −273 src/commands/node.mjs
  11. +27 −78 src/core/account_manager.mjs
  12. +2 −2 src/core/chart_manager.mjs
  13. +1 −1 src/core/config_manager.mjs
  14. +15 −4 src/core/constants.mjs
  15. +18 −10 src/core/dependency_managers/helm_dependency_manager.mjs
  16. +2 −1 src/core/dependency_managers/index.mjs
  17. +167 −0 src/core/dependency_managers/keytool_dependency_manager.mjs
  18. +8 −3 src/core/helm.mjs
  19. +78 −51 src/core/helpers.mjs
  20. +3 −1 src/core/index.mjs
  21. +63 −45 src/core/k8.mjs
  22. +167 −8 src/core/key_manager.mjs
  23. +96 −0 src/core/keytool.mjs
  24. +67 −36 src/core/package_downloader.mjs
  25. +3 −36 src/core/platform_installer.mjs
  26. +7 −2 src/core/templates.mjs
  27. +5 −2 src/index.mjs
  28. +6 −0 test/data/pem/keys/a-private-node0.pem
  29. +6 −0 test/data/pem/keys/a-private-node1.pem
  30. +6 −0 test/data/pem/keys/a-private-node2.pem
  31. +40 −0 test/data/pem/keys/a-public-node0.pem
  32. +40 −0 test/data/pem/keys/a-public-node1.pem
  33. +40 −0 test/data/pem/keys/a-public-node2.pem
  34. +30 −0 test/data/pem/keys/hedera-node0.crt
  35. +52 −0 test/data/pem/keys/hedera-node0.key
  36. +30 −0 test/data/pem/keys/hedera-node1.crt
  37. +52 −0 test/data/pem/keys/hedera-node1.key
  38. +30 −0 test/data/pem/keys/hedera-node2.crt
  39. +52 −0 test/data/pem/keys/hedera-node2.key
  40. +40 −0 test/data/pem/keys/s-private-node0.pem
  41. +40 −0 test/data/pem/keys/s-private-node1.pem
  42. +40 −0 test/data/pem/keys/s-private-node2.pem
  43. +24 −0 test/data/pem/keys/s-public-node0.pem
  44. +24 −0 test/data/pem/keys/s-public-node1.pem
  45. +24 −0 test/data/pem/keys/s-public-node2.pem
  46. +23 −0 test/data/pfx/keys/hedera-node0.crt
  47. +40 −0 test/data/pfx/keys/hedera-node0.key
  48. +23 −0 test/data/pfx/keys/hedera-node1.crt
  49. +40 −0 test/data/pfx/keys/hedera-node1.key
  50. +23 −0 test/data/pfx/keys/hedera-node2.crt
  51. +40 −0 test/data/pfx/keys/hedera-node2.key
  52. BIN test/data/pfx/keys/private-node0.pfx
  53. BIN test/data/pfx/keys/private-node1.pfx
  54. BIN test/data/pfx/keys/private-node2.pfx
  55. BIN test/data/pfx/keys/public.pfx
  56. +62 −180 test/e2e/commands/01_node.test.mjs
  57. +190 −168 test/e2e/commands/02_account.test.mjs
  58. +56 −0 test/e2e/core/account_manager.test.mjs
  59. +13 −21 test/e2e/core/k8_e2e.test.mjs
  60. +12 −42 test/e2e/core/platform_installer_e2e.test.mjs
  61. +16 −2 test/e2e/setup-e2e.sh
  62. +5 −5 test/scripts/README.md
  63. +22 −17 test/scripts/gen-legacy-keys.sh
  64. 0 test/scripts/{gen-standard-keys.sh → gen-openssl-keys.sh}
  65. +156 −3 test/test_util.js
  66. +9 −2 test/unit/commands/init.test.mjs
  67. +16 −10 test/unit/core/dependency_managers/helm_dependency_manager.test.mjs
  68. +72 −0 test/unit/core/dependency_managers/keytool_dependency_manager.test.mjs
  69. +7 −3 test/unit/core/helm.test.mjs
  70. +42 −43 test/unit/core/helpers.test.mjs
  71. +32 −2 test/unit/core/key_manager.test.mjs
  72. +60 −0 test/unit/core/keytool.test.mjs
  73. +7 −0 version.mjs
Loading