Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update solo context connect to connect to single remote cluster #993

Conversation

Ivo-Yankov
Copy link
Contributor

@Ivo-Yankov Ivo-Yankov commented Dec 16, 2024

Description

This pull request changes the following:

  • Adds a clusterContextMapping property to LocalConfig
  • Adds new task methods related to the solo context command command.
  • Changes the flow of the command. It can be summerized as follows:
 - Determines which context to use to connect to a remote cluster based on the provided flags: `namespace`, `context`, `cluster`. The user is prompted for additional input if required, unless the `--quiet` flag is used, in which case the default settings from `kubeConfig` are used.
 - Connects to the remote cluster and pulls the `remoteConfig`
 - The `LocalConfig` is updated with cluster data from the `remoteConfig`. If new clusters are added to the deployment in the local config, the `clusterContextMapping` is updated.

Related Issues

…ect-connects-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment
Signed-off-by: Ivo Yankov <[email protected]>
…s-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment
…ect-connects-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment
…s-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment
@Ivo-Yankov Ivo-Yankov changed the title feat: implement solo context connect for single cluster feat: solo context connect for single cluster Dec 16, 2024
Copy link
Contributor

github-actions bot commented Dec 16, 2024

Unit Test Results - Linux

  1 files  ±0   58 suites  +1   3s ⏱️ ±0s
229 tests +9  229 ✅ +9  0 💤 ±0  0 ❌ ±0 
239 runs  +9  239 ✅ +9  0 💤 ±0  0 ❌ ±0 

Results for commit ff5c910. ± Comparison against base commit a4ef700.

This pull request removes 8 and adds 17 tests. Note that renamed tests count towards both.
should not set invalid context mappings ‑ LocalConfig should not set invalid context mappings
should prompt for all flags if none are provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for all flags if none are provided
should prompt for cluster if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for cluster if no value is provided
should prompt for context if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for context if no value is provided
should prompt for namespace if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for namespace if no value is provided
should update local configuration with provided values ‑ ContextCommandTasks unit tests updateLocalConfig should update local configuration with provided values
should use cluster from kubectl if no value is provided and quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should use cluster from kubectl if no value is provided and quiet=true
should use namespace from kubectl if no value is provided and quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should use namespace from kubectl if no value is provided and quiet=true
should not set invalid clusterContextMapping ‑ LocalConfig should not set invalid clusterContextMapping
should prompt for clusters and contexts if selected deployment is not found in local config ‑ ContextCommandTasks unit tests selectContext should prompt for clusters and contexts if selected deployment is not found in local config
should prompt for context if selected cluster is not found in local config mapping ‑ ContextCommandTasks unit tests selectContext should prompt for context if selected cluster is not found in local config mapping
should prompt for context if selected deployment is found in local config but the context is not ‑ ContextCommandTasks unit tests selectContext should prompt for context if selected deployment is found in local config but the context is not
should set clusterContextMapping ‑ LocalConfig should set clusterContextMapping
should throw a validation error if clusterContextMapping format is not correct ‑ LocalConfig should throw a validation error if clusterContextMapping format is not correct
should update clusterContextMapping with provided context ‑ ContextCommandTasks unit tests updateLocalConfig should update clusterContextMapping with provided context
should update currentDeployment with clusters from remoteConfig ‑ ContextCommandTasks unit tests updateLocalConfig should update currentDeployment with clusters from remoteConfig
should update multiple clusterContextMappings with default KubeConfig context if quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should update multiple clusterContextMappings with default KubeConfig context if quiet=true
should update multiple clusterContextMappings with prompted context no value was provided ‑ ContextCommandTasks unit tests updateLocalConfig should update multiple clusterContextMappings with prompted context no value was provided
…

♻️ This comment has been updated with latest results.

Copy link
Contributor

github-actions bot commented Dec 16, 2024

Unit Test Results - Windows

  1 files  ±0   58 suites  +1   13s ⏱️ -1s
229 tests +9  229 ✅ +9  0 💤 ±0  0 ❌ ±0 
239 runs  +9  239 ✅ +9  0 💤 ±0  0 ❌ ±0 

Results for commit ff5c910. ± Comparison against base commit a4ef700.

This pull request removes 8 and adds 17 tests. Note that renamed tests count towards both.
should not set invalid context mappings ‑ LocalConfig should not set invalid context mappings
should prompt for all flags if none are provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for all flags if none are provided
should prompt for cluster if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for cluster if no value is provided
should prompt for context if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for context if no value is provided
should prompt for namespace if no value is provided ‑ ContextCommandTasks unit tests updateLocalConfig should prompt for namespace if no value is provided
should update local configuration with provided values ‑ ContextCommandTasks unit tests updateLocalConfig should update local configuration with provided values
should use cluster from kubectl if no value is provided and quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should use cluster from kubectl if no value is provided and quiet=true
should use namespace from kubectl if no value is provided and quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should use namespace from kubectl if no value is provided and quiet=true
should not set invalid clusterContextMapping ‑ LocalConfig should not set invalid clusterContextMapping
should prompt for clusters and contexts if selected deployment is not found in local config ‑ ContextCommandTasks unit tests selectContext should prompt for clusters and contexts if selected deployment is not found in local config
should prompt for context if selected cluster is not found in local config mapping ‑ ContextCommandTasks unit tests selectContext should prompt for context if selected cluster is not found in local config mapping
should prompt for context if selected deployment is found in local config but the context is not ‑ ContextCommandTasks unit tests selectContext should prompt for context if selected deployment is found in local config but the context is not
should set clusterContextMapping ‑ LocalConfig should set clusterContextMapping
should throw a validation error if clusterContextMapping format is not correct ‑ LocalConfig should throw a validation error if clusterContextMapping format is not correct
should update clusterContextMapping with provided context ‑ ContextCommandTasks unit tests updateLocalConfig should update clusterContextMapping with provided context
should update currentDeployment with clusters from remoteConfig ‑ ContextCommandTasks unit tests updateLocalConfig should update currentDeployment with clusters from remoteConfig
should update multiple clusterContextMappings with default KubeConfig context if quiet=true ‑ ContextCommandTasks unit tests updateLocalConfig should update multiple clusterContextMappings with default KubeConfig context if quiet=true
should update multiple clusterContextMappings with prompted context no value was provided ‑ ContextCommandTasks unit tests updateLocalConfig should update multiple clusterContextMappings with prompted context no value was provided
…

♻️ This comment has been updated with latest results.

@Ivo-Yankov Ivo-Yankov self-assigned this Dec 16, 2024
Signed-off-by: Ivo Yankov <[email protected]>
Signed-off-by: Ivo Yankov <[email protected]>
Signed-off-by: Ivo Yankov <[email protected]>
…s-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment
Signed-off-by: Ivo Yankov <[email protected]>
Copy link
Contributor

github-actions bot commented Dec 17, 2024

E2E Test Report

 16 files  ±0  121 suites  ±0   1h 21m 51s ⏱️ + 2m 46s
256 tests ±0  256 ✅ ±0  0 💤 ±0  0 ❌ ±0 
259 runs  ±0  259 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit ff5c910. ± Comparison against base commit a4ef700.

♻️ This comment has been updated with latest results.

Copy link

codacy-production bot commented Dec 17, 2024

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
-0.08% (target: -1.00%) 77.71%
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (a4ef700) 19197 16504 85.97%
Head commit (ff5c910) 19476 (+279) 16729 (+225) 85.90% (-0.08%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#993) 323 251 77.71%

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

Codacy stopped sending the deprecated coverage status on June 5th, 2024. Learn more

Copy link

codecov bot commented Dec 17, 2024

Codecov Report

Attention: Patch coverage is 77.70898% with 72 lines in your changes missing coverage. Please review.

Project coverage is 84.90%. Comparing base (a4ef700) to head (ff5c910).
Report is 28 commits behind head on main.

Files with missing lines Patch % Lines
src/core/config/local_config.ts 31.70% 56 Missing ⚠️
src/commands/context/configs.ts 78.04% 9 Missing ⚠️
src/commands/context/handlers.ts 66.66% 4 Missing ⚠️
src/commands/context/tasks.ts 98.50% 2 Missing ⚠️
src/commands/flags.ts 66.66% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #993      +/-   ##
==========================================
- Coverage   84.99%   84.90%   -0.09%     
==========================================
  Files          71       72       +1     
  Lines       19225    19476     +251     
  Branches     1305     1650     +345     
==========================================
+ Hits        16341    16537     +196     
+ Misses       2858     2819      -39     
- Partials       26      120      +94     
Files with missing lines Coverage Δ
src/commands/base.ts 95.39% <100.00%> (+0.17%) ⬆️
src/commands/context/flags.ts 100.00% <100.00%> (ø)
src/commands/context/index.ts 63.49% <100.00%> (ø)
src/core/error_messages.ts 100.00% <100.00%> (ø)
src/core/helpers.ts 88.85% <100.00%> (-0.22%) ⬇️
src/core/templates.ts 72.46% <ø> (-0.40%) ⬇️
src/core/validator_decorators.ts 98.71% <100.00%> (+0.80%) ⬆️
src/commands/flags.ts 78.51% <66.66%> (ø)
src/commands/context/tasks.ts 93.65% <98.50%> (+5.89%) ⬆️
src/commands/context/handlers.ts 65.57% <66.66%> (+2.11%) ⬆️
... and 2 more

... and 27 files with indirect coverage changes

Impacted file tree graph

Signed-off-by: Ivo Yankov <[email protected]>
@Ivo-Yankov Ivo-Yankov changed the title feat: solo context connect for single cluster feat: Update solo context connect to connect to single remote cluster Dec 18, 2024
@Ivo-Yankov Ivo-Yankov changed the title feat: Update solo context connect to connect to single remote cluster feat: update solo context connect to connect to single remote cluster Dec 18, 2024
@Ivo-Yankov Ivo-Yankov marked this pull request as ready for review December 18, 2024 10:48
@Ivo-Yankov Ivo-Yankov requested review from a team and leninmehedy as code owners December 18, 2024 10:48
@jeromy-cannon jeromy-cannon merged commit c9711c5 into main Dec 19, 2024
37 of 39 checks passed
@jeromy-cannon jeromy-cannon deleted the 00755-implement-solo-context-connect-connects-to-a-deployment-and-pulls-back-the-remoteconfig-for-single-cluster-deployment branch December 19, 2024 16:47
jeromy-cannon added a commit that referenced this pull request Dec 23, 2024
commit 6b8ada1
Author: instamenta <[email protected]>
Date:   Fri Dec 20 16:55:18 2024 +0200

    fixing the nodeSequence, switched to haproxy fQDN for the service endpoint and new version of the solo-charts

    Signed-off-by: instamenta <[email protected]>

commit bcdef8b
Merge: 847cd45 861c579
Author: instamenta <[email protected]>
Date:   Fri Dec 20 12:15:25 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 847cd45
Author: instamenta <[email protected]>
Date:   Fri Dec 20 09:33:54 2024 +0200

    renamed the GenesisNetowrkNodeDataWrapper filename to follow convention

    Signed-off-by: instamenta <[email protected]>

commit 861c579
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:35 2024 -0600

    chore(deps-dev): bump globals from 15.13.0 to 15.14.0 (#1007)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit e80bda8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:22 2024 -0600

    chore(deps): bump chalk from 5.3.0 to 5.4.0 (#1008)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f4b49aa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 10:47:50 2024 -0600

    chore(deps): bump @hashgraph/sdk from 2.55.1 to 2.56.0 (#1009)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c9711c5
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 18:47:03 2024 +0200

    feat: update `solo context connect` to connect to single remote cluster (#993)

    Signed-off-by: Ivo Yankov <[email protected]>

commit c91b8ab
Author: instamenta <[email protected]>
Date:   Thu Dec 19 17:04:11 2024 +0200

    add mock to fix failing unit test

    Signed-off-by: instamenta <[email protected]>

commit 7c63989
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:43:31 2024 +0200

    updated package-lock.jsonn

    Signed-off-by: instamenta <[email protected]>

commit c06e32a
Merge: 7a3ef9d 043efcf
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:42:31 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 7a3ef9d
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:35:01 2024 +0200

    bump up the solo-charts version

    Signed-off-by: instamenta <[email protected]>

commit 043efcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 16:56:19 2024 -0600

    chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1002)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 8115945
Author: Pranali Deshmukh <[email protected]>
Date:   Thu Dec 19 00:55:58 2024 +0200

    docs(README): Updated the "Install Solo" section. (#1004)

    Signed-off-by: Pranali Deshmukh <[email protected]>

commit 01ed969
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 11:19:09 2024 -0600

    chore(deps): bump actions/setup-java from 4.5.0 to 4.6.0 (#1003)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 23238fc
Merge: 1e30538 a4ef700
Author: instamenta <[email protected]>
Date:   Wed Dec 18 09:50:20 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 1e30538
Author: instamenta <[email protected]>
Date:   Wed Dec 18 09:50:13 2024 +0200

    fix type of the grpc cert hash to be digested to base64 and conditional logic to not break tests

    Signed-off-by: instamenta <[email protected]>

commit a4ef700
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:35:39 2024 -0600

    chore(deps-dev): bump typescript-eslint from 8.18.0 to 8.18.1 (#996)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4dfbf2f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:35:19 2024 -0600

    chore(deps-dev): bump @typescript-eslint/utils from 8.18.0 to 8.18.1 (#997)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b82610a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:11:27 2024 -0600

    chore(deps): bump jfrog/setup-jfrog-cli from 4.5.1 to 4.5.2 (#995)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 0b2326b
Author: instamenta <[email protected]>
Date:   Mon Dec 16 19:16:58 2024 +0200

    changes to the genesis-network.json constructor that resolve the error's while parsing the json inside the node root containerpull

    Signed-off-by: instamenta <[email protected]>

commit 7ec2527
Merge: 2887510 a5fab1e
Author: instamenta <[email protected]>
Date:   Mon Dec 16 19:16:41 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit a5fab1e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:22:14 2024 -0600

    chore(deps): bump helm/kind-action from 1.10.0 to 1.11.0 (#992)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 72a6433
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:14:47 2024 -0600

    chore(deps-dev): bump @eslint/js from 9.16.0 to 9.17.0 (#989)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 41d079f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:13:53 2024 -0600

    chore(deps-dev): bump eslint from 9.16.0 to 9.17.0 (#990)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c3a693c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:13:26 2024 -0600

    chore(deps-dev): bump typedoc from 0.27.4 to 0.27.5 (#991)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 2887510
Author: instamenta <[email protected]>
Date:   Mon Dec 16 12:49:29 2024 +0200

    dont use string but AccountId for the genesis-network.json constructor

    Signed-off-by: instamenta <[email protected]>

commit f4c3cc7
Merge: d1020c4 8e4fe04
Author: instamenta <[email protected]>
Date:   Mon Dec 16 09:20:45 2024 +0200

    merge with main

    Signed-off-by: instamenta <[email protected]>

commit 8e4fe04
Author: JeffreyDallas <[email protected]>
Date:   Sat Dec 14 02:48:33 2024 -0600

    fix: document typo (#988)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 06e6026
Author: Jeromy Cannon <[email protected]>
Date:   Fri Dec 13 15:25:37 2024 +0000

    refactor: added http status code enums/library (#987)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit d1020c4
Author: instamenta <[email protected]>
Date:   Fri Dec 13 17:12:53 2024 +0200

    fixes

    Signed-off-by: instamenta <[email protected]>

commit 79410f0
Author: JeffreyDallas <[email protected]>
Date:   Fri Dec 13 07:36:52 2024 -0600

    feat: add solo smoke test to test flow (#905)

    Signed-off-by: Jeffrey Tang <[email protected]>
    Signed-off-by: Jeromy Cannon <[email protected]>
    Co-authored-by: Jeromy Cannon <[email protected]>

commit a13e9db
Author: instamenta <[email protected]>
Date:   Fri Dec 13 15:32:31 2024 +0200

    bump the charts version

    Signed-off-by: instamenta <[email protected]>

commit 4f0b286
Author: instamenta <[email protected]>
Date:   Fri Dec 13 14:36:57 2024 +0200

    remove unused params

    Signed-off-by: instamenta <[email protected]>

commit 3361081
Author: instamenta <[email protected]>
Date:   Fri Dec 13 14:14:53 2024 +0200

    renamed models to follow snake_case convention

    Signed-off-by: instamenta <[email protected]>

commit d6ae342
Merge: 4bfd998 b378937
Author: instamenta <[email protected]>
Date:   Fri Dec 13 12:42:15 2024 +0200

    merge with main

    Signed-off-by: instamenta <[email protected]>

commit 4bfd998
Author: instamenta <[email protected]>
Date:   Thu Dec 12 22:44:04 2024 +0200

    added logic for setting the value file

    Signed-off-by: instamenta <[email protected]>

commit 59b156c
Author: instamenta <[email protected]>
Date:   Thu Dec 12 21:35:49 2024 +0200

    polishing and cleaning up the profile_manager, adding comments, aliases and keeping it D.R.Y.

    Signed-off-by: instamenta <[email protected]>

commit b378937
Author: JeffreyDallas <[email protected]>
Date:   Thu Dec 12 12:58:46 2024 -0600

    feat: Update document (#956)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 58e96e1
Author: JeffreyDallas <[email protected]>
Date:   Thu Dec 12 12:56:41 2024 -0600

    fix: local chart directory not being taken correctly (#983)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 437bbc6
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 12 18:26:55 2024 +0000

    fix: performance improvements for node stop (#986)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 83fb584
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 12 08:53:01 2024 -0600

    chore(deps): bump @hashgraph/sdk from 2.55.0 to 2.55.1 (#984)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 9cae011
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 12 14:52:36 2024 +0000

    fix: bump chart and hedera version,  re-enable node add (#985)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 45c69a0
Author: instamenta <[email protected]>
Date:   Thu Dec 12 16:40:40 2024 +0200

    changed version

    Signed-off-by: instamenta <[email protected]>

commit 75964fc
Author: instamenta <[email protected]>
Date:   Thu Dec 12 15:56:46 2024 +0200

    finishing up, and fixes

    Signed-off-by: instamenta <[email protected]>

commit dac6d6d
Author: instamenta <[email protected]>
Date:   Thu Dec 12 14:05:36 2024 +0200

    lint-fix, added .madgerc and configured it to dont count typed imports as circular dependencies

    Signed-off-by: instamenta <[email protected]>

commit 1a29c82
Author: instamenta <[email protected]>
Date:   Thu Dec 12 11:59:16 2024 +0200

    polishing new classes added new interfaces and aliases to make clarify what they do

    Signed-off-by: instamenta <[email protected]>

commit 74285bf
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 12 11:08:39 2024 +0200

    fix: node update with single node (#981)

    Signed-off-by: Ivo Yankov <[email protected]>

commit d6b823a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 11 12:07:16 2024 -0600

    chore(deps-dev): bump @types/node from 22.10.1 to 22.10.2 (#980)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 3e3cdd9
Author: instamenta <[email protected]>
Date:   Wed Dec 11 18:50:55 2024 +0200

    updating data wrapper properties

    Signed-off-by: instamenta <[email protected]>

commit f2760fd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 11 09:04:35 2024 -0600

    chore(deps-dev): bump c8 from 10.1.2 to 10.1.3 (#979)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 1948c26
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:27:19 2024 +0200

    wiring

    Signed-off-by: instamenta <[email protected]>

commit 7b11550
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:09:08 2024 +0200

    remove obsolete comments

    Signed-off-by: instamenta <[email protected]>

commit d965c12
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:04:28 2024 +0200

    lemove obsolete comments

    Signed-off-by: instamenta <[email protected]>

commit 26f9341
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:01:14 2024 +0200

    cleanup

    Signed-off-by: instamenta <[email protected]>

commit 5a62289
Author: instamenta <[email protected]>
Date:   Wed Dec 11 15:42:13 2024 +0200

    changes from other branch

    Signed-off-by: instamenta <[email protected]>

Signed-off-by: Jeromy Cannon <[email protected]>
jeromy-cannon added a commit that referenced this pull request Dec 23, 2024
commit 6b8ada1
Author: instamenta <[email protected]>
Date:   Fri Dec 20 16:55:18 2024 +0200

    fixing the nodeSequence, switched to haproxy fQDN for the service endpoint and new version of the solo-charts

    Signed-off-by: instamenta <[email protected]>

commit bcdef8b
Merge: 847cd45 861c579
Author: instamenta <[email protected]>
Date:   Fri Dec 20 12:15:25 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 847cd45
Author: instamenta <[email protected]>
Date:   Fri Dec 20 09:33:54 2024 +0200

    renamed the GenesisNetowrkNodeDataWrapper filename to follow convention

    Signed-off-by: instamenta <[email protected]>

commit 861c579
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:35 2024 -0600

    chore(deps-dev): bump globals from 15.13.0 to 15.14.0 (#1007)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit e80bda8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:22 2024 -0600

    chore(deps): bump chalk from 5.3.0 to 5.4.0 (#1008)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f4b49aa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 10:47:50 2024 -0600

    chore(deps): bump @hashgraph/sdk from 2.55.1 to 2.56.0 (#1009)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c9711c5
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 18:47:03 2024 +0200

    feat: update `solo context connect` to connect to single remote cluster (#993)

    Signed-off-by: Ivo Yankov <[email protected]>

commit c91b8ab
Author: instamenta <[email protected]>
Date:   Thu Dec 19 17:04:11 2024 +0200

    add mock to fix failing unit test

    Signed-off-by: instamenta <[email protected]>

commit 7c63989
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:43:31 2024 +0200

    updated package-lock.jsonn

    Signed-off-by: instamenta <[email protected]>

commit c06e32a
Merge: 7a3ef9d 043efcf
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:42:31 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 7a3ef9d
Author: instamenta <[email protected]>
Date:   Thu Dec 19 16:35:01 2024 +0200

    bump up the solo-charts version

    Signed-off-by: instamenta <[email protected]>

commit 043efcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 16:56:19 2024 -0600

    chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1002)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 8115945
Author: Pranali Deshmukh <[email protected]>
Date:   Thu Dec 19 00:55:58 2024 +0200

    docs(README): Updated the "Install Solo" section. (#1004)

    Signed-off-by: Pranali Deshmukh <[email protected]>

commit 01ed969
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 11:19:09 2024 -0600

    chore(deps): bump actions/setup-java from 4.5.0 to 4.6.0 (#1003)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 23238fc
Merge: 1e30538 a4ef700
Author: instamenta <[email protected]>
Date:   Wed Dec 18 09:50:20 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit 1e30538
Author: instamenta <[email protected]>
Date:   Wed Dec 18 09:50:13 2024 +0200

    fix type of the grpc cert hash to be digested to base64 and conditional logic to not break tests

    Signed-off-by: instamenta <[email protected]>

commit a4ef700
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:35:39 2024 -0600

    chore(deps-dev): bump typescript-eslint from 8.18.0 to 8.18.1 (#996)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4dfbf2f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:35:19 2024 -0600

    chore(deps-dev): bump @typescript-eslint/utils from 8.18.0 to 8.18.1 (#997)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b82610a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Dec 17 07:11:27 2024 -0600

    chore(deps): bump jfrog/setup-jfrog-cli from 4.5.1 to 4.5.2 (#995)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 0b2326b
Author: instamenta <[email protected]>
Date:   Mon Dec 16 19:16:58 2024 +0200

    changes to the genesis-network.json constructor that resolve the error's while parsing the json inside the node root containerpull

    Signed-off-by: instamenta <[email protected]>

commit 7ec2527
Merge: 2887510 a5fab1e
Author: instamenta <[email protected]>
Date:   Mon Dec 16 19:16:41 2024 +0200

    Merge remote-tracking branch 'origin/main' into 00949-production-readiness-dynamically-construct-the-genesis-networkjson-and-add-it-to-the-values-file-to-be-used-during-network-deploy

commit a5fab1e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:22:14 2024 -0600

    chore(deps): bump helm/kind-action from 1.10.0 to 1.11.0 (#992)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 72a6433
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:14:47 2024 -0600

    chore(deps-dev): bump @eslint/js from 9.16.0 to 9.17.0 (#989)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 41d079f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:13:53 2024 -0600

    chore(deps-dev): bump eslint from 9.16.0 to 9.17.0 (#990)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c3a693c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 16 07:13:26 2024 -0600

    chore(deps-dev): bump typedoc from 0.27.4 to 0.27.5 (#991)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 2887510
Author: instamenta <[email protected]>
Date:   Mon Dec 16 12:49:29 2024 +0200

    dont use string but AccountId for the genesis-network.json constructor

    Signed-off-by: instamenta <[email protected]>

commit f4c3cc7
Merge: d1020c4 8e4fe04
Author: instamenta <[email protected]>
Date:   Mon Dec 16 09:20:45 2024 +0200

    merge with main

    Signed-off-by: instamenta <[email protected]>

commit 8e4fe04
Author: JeffreyDallas <[email protected]>
Date:   Sat Dec 14 02:48:33 2024 -0600

    fix: document typo (#988)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 06e6026
Author: Jeromy Cannon <[email protected]>
Date:   Fri Dec 13 15:25:37 2024 +0000

    refactor: added http status code enums/library (#987)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit d1020c4
Author: instamenta <[email protected]>
Date:   Fri Dec 13 17:12:53 2024 +0200

    fixes

    Signed-off-by: instamenta <[email protected]>

commit 79410f0
Author: JeffreyDallas <[email protected]>
Date:   Fri Dec 13 07:36:52 2024 -0600

    feat: add solo smoke test to test flow (#905)

    Signed-off-by: Jeffrey Tang <[email protected]>
    Signed-off-by: Jeromy Cannon <[email protected]>
    Co-authored-by: Jeromy Cannon <[email protected]>

commit a13e9db
Author: instamenta <[email protected]>
Date:   Fri Dec 13 15:32:31 2024 +0200

    bump the charts version

    Signed-off-by: instamenta <[email protected]>

commit 4f0b286
Author: instamenta <[email protected]>
Date:   Fri Dec 13 14:36:57 2024 +0200

    remove unused params

    Signed-off-by: instamenta <[email protected]>

commit 3361081
Author: instamenta <[email protected]>
Date:   Fri Dec 13 14:14:53 2024 +0200

    renamed models to follow snake_case convention

    Signed-off-by: instamenta <[email protected]>

commit d6ae342
Merge: 4bfd998 b378937
Author: instamenta <[email protected]>
Date:   Fri Dec 13 12:42:15 2024 +0200

    merge with main

    Signed-off-by: instamenta <[email protected]>

commit 4bfd998
Author: instamenta <[email protected]>
Date:   Thu Dec 12 22:44:04 2024 +0200

    added logic for setting the value file

    Signed-off-by: instamenta <[email protected]>

commit 59b156c
Author: instamenta <[email protected]>
Date:   Thu Dec 12 21:35:49 2024 +0200

    polishing and cleaning up the profile_manager, adding comments, aliases and keeping it D.R.Y.

    Signed-off-by: instamenta <[email protected]>

commit b378937
Author: JeffreyDallas <[email protected]>
Date:   Thu Dec 12 12:58:46 2024 -0600

    feat: Update document (#956)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 58e96e1
Author: JeffreyDallas <[email protected]>
Date:   Thu Dec 12 12:56:41 2024 -0600

    fix: local chart directory not being taken correctly (#983)

    Signed-off-by: Jeffrey Tang <[email protected]>

commit 437bbc6
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 12 18:26:55 2024 +0000

    fix: performance improvements for node stop (#986)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 83fb584
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 12 08:53:01 2024 -0600

    chore(deps): bump @hashgraph/sdk from 2.55.0 to 2.55.1 (#984)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 9cae011
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 12 14:52:36 2024 +0000

    fix: bump chart and hedera version,  re-enable node add (#985)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 45c69a0
Author: instamenta <[email protected]>
Date:   Thu Dec 12 16:40:40 2024 +0200

    changed version

    Signed-off-by: instamenta <[email protected]>

commit 75964fc
Author: instamenta <[email protected]>
Date:   Thu Dec 12 15:56:46 2024 +0200

    finishing up, and fixes

    Signed-off-by: instamenta <[email protected]>

commit dac6d6d
Author: instamenta <[email protected]>
Date:   Thu Dec 12 14:05:36 2024 +0200

    lint-fix, added .madgerc and configured it to dont count typed imports as circular dependencies

    Signed-off-by: instamenta <[email protected]>

commit 1a29c82
Author: instamenta <[email protected]>
Date:   Thu Dec 12 11:59:16 2024 +0200

    polishing new classes added new interfaces and aliases to make clarify what they do

    Signed-off-by: instamenta <[email protected]>

commit 74285bf
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 12 11:08:39 2024 +0200

    fix: node update with single node (#981)

    Signed-off-by: Ivo Yankov <[email protected]>

commit d6b823a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 11 12:07:16 2024 -0600

    chore(deps-dev): bump @types/node from 22.10.1 to 22.10.2 (#980)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 3e3cdd9
Author: instamenta <[email protected]>
Date:   Wed Dec 11 18:50:55 2024 +0200

    updating data wrapper properties

    Signed-off-by: instamenta <[email protected]>

commit f2760fd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 11 09:04:35 2024 -0600

    chore(deps-dev): bump c8 from 10.1.2 to 10.1.3 (#979)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 1948c26
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:27:19 2024 +0200

    wiring

    Signed-off-by: instamenta <[email protected]>

commit 7b11550
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:09:08 2024 +0200

    remove obsolete comments

    Signed-off-by: instamenta <[email protected]>

commit d965c12
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:04:28 2024 +0200

    lemove obsolete comments

    Signed-off-by: instamenta <[email protected]>

commit 26f9341
Author: instamenta <[email protected]>
Date:   Wed Dec 11 16:01:14 2024 +0200

    cleanup

    Signed-off-by: instamenta <[email protected]>

commit 5a62289
Author: instamenta <[email protected]>
Date:   Wed Dec 11 15:42:13 2024 +0200

    changes from other branch

    Signed-off-by: instamenta <[email protected]>

Signed-off-by: Jeromy Cannon <[email protected]>
jeromy-cannon added a commit that referenced this pull request Dec 26, 2024
commit 294aa0a
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 26 10:36:26 2024 +0200

    chore: add build step to unit test CI

    Signed-off-by: Ivo Yankov <[email protected]>

commit f67071c
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 26 10:26:14 2024 +0200

    fix: update mocha scripts in package.json

    Signed-off-by: Ivo Yankov <[email protected]>

commit be6d88e
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 26 09:54:26 2024 +0200

    chore: run formatter

    Signed-off-by: Ivo Yankov <[email protected]>

commit c0b8b16
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 26 09:52:14 2024 +0200

    fix: various unit tests

    Signed-off-by: Ivo Yankov <[email protected]>

commit 5a05b87
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 26 08:13:22 2024 +0200

    fix: injections in tests

    Signed-off-by: Ivo Yankov <[email protected]>

commit 6178ccf
Merge: 24269fe c3a9691
Author: Ivo Yankov <[email protected]>
Date:   Tue Dec 24 15:39:32 2024 +0200

    Merge remote-tracking branch 'origin/00822-implement-inversion-of-control-2' into 00822-implement-inversion-of-control-2

    # Conflicts:
    #	src/core/account_manager.ts
    #	src/core/config/local_config.ts
    #	src/core/config_manager.ts
    #	src/core/lease/lease_manager.ts
    #	src/core/profile_manager.ts
    #	src/index.ts
    #	test/setup.ts
    #	test/test_container.ts
    #	test/test_util.ts
    #	test/unit/commands/base.test.ts
    #	test/unit/commands/context.test.ts
    #	test/unit/commands/network.test.ts
    #	test/unit/core/platform_installer.test.ts
    #	test/unit/core/profile_manager.test.ts

commit c3a9691
Author: Jeromy Cannon <[email protected]>
Date:   Mon Dec 23 20:35:20 2024 +0000

    add reflect metadata back

    Signed-off-by: Jeromy Cannon <[email protected]>

commit dd13b95
Author: Jeromy Cannon <[email protected]>
Date:   Mon Dec 23 20:28:06 2024 +0000

    fixed eslint errors from `npm run check`

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 6d7522c
Author: Jeromy Cannon <[email protected]>
Date:   Mon Dec 23 20:14:08 2024 +0000

    npm run format

    Signed-off-by: Jeromy Cannon <[email protected]>

commit f323ca7
Author: Jeromy Cannon <[email protected]>
Date:   Mon Dec 23 19:59:26 2024 +0000

    Squashed commit of the following:

    commit 24269fe
    Author: Ivo Yankov <[email protected]>
    Date:   Fri Dec 20 11:03:26 2024 +0200

        wip: attempting to fix tests

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 7698f16
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 19 15:41:38 2024 +0200

        chore: format

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 507a081
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 19 14:53:36 2024 +0200

        feat: implement IOC in core classes

        Signed-off-by: Ivo Yankov <[email protected]>

    commit c582f12
    Author: Ivo Yankov <[email protected]>
    Date:   Wed Dec 18 17:32:22 2024 +0200

        wip: refactoring dependencies

        Signed-off-by: Ivo Yankov <[email protected]>

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 1b9b7e6
Author: Jan Milenkov <[email protected]>
Date:   Mon Dec 23 21:22:56 2024 +0200

    feat: dynamically construct the genesis-network.json and add it to the values file to be used during network deploy (#982)

    Signed-off-by: Jeromy Cannon <[email protected]>
    Co-authored-by: Jeromy Cannon <[email protected]>

commit 3c3673a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 23 08:12:58 2024 -0600

    chore(deps): bump jfrog/setup-jfrog-cli from 4.5.2 to 4.5.3 (#1015)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 299cd85
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 23 08:12:30 2024 -0600

    chore(deps): bump helm/kind-action from 1.11.0 to 1.12.0 (#1014)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 1d57fb8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 23 07:47:07 2024 -0600

    chore(deps): bump chalk from 5.4.0 to 5.4.1 (#1013)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit a4e5cd8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Dec 23 07:26:24 2024 -0600

    chore(deps): bump inquirer from 12.2.0 to 12.3.0 (#1012)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 7a69623
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Sun Dec 22 19:20:53 2024 +0000

    chore(deps-dev): bump eslint-plugin-n from 17.15.0 to 17.15.1 (#1011)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 7bb0e99
Author: Jeromy Cannon <[email protected]>
Date:   Sun Dec 22 07:31:54 2024 +0000

    fix: refactored Taskfiles, fixed bugs with taskfile, lease interval, sdk node client connection, and commands missing quiet flag (#978)

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 861c579
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:35 2024 -0600

    chore(deps-dev): bump globals from 15.13.0 to 15.14.0 (#1007)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit e80bda8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 11:06:22 2024 -0600

    chore(deps): bump chalk from 5.3.0 to 5.4.0 (#1008)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f4b49aa
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Dec 19 10:47:50 2024 -0600

    chore(deps): bump @hashgraph/sdk from 2.55.1 to 2.56.0 (#1009)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c9711c5
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 18:47:03 2024 +0200

    feat: update `solo context connect` to connect to single remote cluster (#993)

    Signed-off-by: Ivo Yankov <[email protected]>

commit 043efcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 16:56:19 2024 -0600

    chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1002)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 8115945
Author: Pranali Deshmukh <[email protected]>
Date:   Thu Dec 19 00:55:58 2024 +0200

    docs(README): Updated the "Install Solo" section. (#1004)

    Signed-off-by: Pranali Deshmukh <[email protected]>

commit 01ed969
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Dec 18 11:19:09 2024 -0600

    chore(deps): bump actions/setup-java from 4.5.0 to 4.6.0 (#1003)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Signed-off-by: Jeromy Cannon <[email protected]>
jeromy-cannon added a commit that referenced this pull request Dec 26, 2024
commit 04e69ea
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 26 13:22:26 2024 +0000

    Squashed commit of the following:

    commit 5ab8bfdffd3c5d1932e7ed6a61e736d7216b4248
    Author: Jeromy Cannon <[email protected]>
    Date:   Thu Dec 26 13:15:50 2024 +0000

        got `solo init` to work.

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 8bcf11c95ca5e310b177ed00be3a58a24fdbbac6
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 22:00:08 2024 +0000

        remove eslint errors

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit de0046a370e14582500ce25e412cb8c8fb7158a1
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 21:59:51 2024 +0000

        removed isolated modules, it seems to be adding js files and dist folders in incorrect locations

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 4909cbdcf289ba35d68620bab88bb73815f5ecc2
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 21:59:23 2024 +0000

        change eslint back, if we need to override, we can use @ignore tags and document

        Signed-off-by: Jeromy Cannon <[email protected]>

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 8c16717
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 26 13:24:23 2024 +0000

    Squashed commit of the following:

    commit 294aa0a
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 10:36:26 2024 +0200

        chore: add build step to unit test CI

        Signed-off-by: Ivo Yankov <[email protected]>

    commit f67071c
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 10:26:14 2024 +0200

        fix: update mocha scripts in package.json

        Signed-off-by: Ivo Yankov <[email protected]>

    commit be6d88e
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 09:54:26 2024 +0200

        chore: run formatter

        Signed-off-by: Ivo Yankov <[email protected]>

    commit c0b8b16
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 09:52:14 2024 +0200

        fix: various unit tests

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 5a05b87
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 08:13:22 2024 +0200

        fix: injections in tests

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 6178ccf
    Merge: 24269fe c3a9691
    Author: Ivo Yankov <[email protected]>
    Date:   Tue Dec 24 15:39:32 2024 +0200

        Merge remote-tracking branch 'origin/00822-implement-inversion-of-control-2' into 00822-implement-inversion-of-control-2

        # Conflicts:
        #	src/core/account_manager.ts
        #	src/core/config/local_config.ts
        #	src/core/config_manager.ts
        #	src/core/lease/lease_manager.ts
        #	src/core/profile_manager.ts
        #	src/index.ts
        #	test/setup.ts
        #	test/test_container.ts
        #	test/test_util.ts
        #	test/unit/commands/base.test.ts
        #	test/unit/commands/context.test.ts
        #	test/unit/commands/network.test.ts
        #	test/unit/core/platform_installer.test.ts
        #	test/unit/core/profile_manager.test.ts

    commit c3a9691
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:35:20 2024 +0000

        add reflect metadata back

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit dd13b95
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:28:06 2024 +0000

        fixed eslint errors from `npm run check`

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 6d7522c
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:14:08 2024 +0000

        npm run format

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit f323ca7
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 19:59:26 2024 +0000

        Squashed commit of the following:

        commit 24269fe
        Author: Ivo Yankov <[email protected]>
        Date:   Fri Dec 20 11:03:26 2024 +0200

            wip: attempting to fix tests

            Signed-off-by: Ivo Yankov <[email protected]>

        commit 7698f16
        Author: Ivo Yankov <[email protected]>
        Date:   Thu Dec 19 15:41:38 2024 +0200

            chore: format

            Signed-off-by: Ivo Yankov <[email protected]>

        commit 507a081
        Author: Ivo Yankov <[email protected]>
        Date:   Thu Dec 19 14:53:36 2024 +0200

            feat: implement IOC in core classes

            Signed-off-by: Ivo Yankov <[email protected]>

        commit c582f12
        Author: Ivo Yankov <[email protected]>
        Date:   Wed Dec 18 17:32:22 2024 +0200

            wip: refactoring dependencies

            Signed-off-by: Ivo Yankov <[email protected]>

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 1b9b7e6
    Author: Jan Milenkov <[email protected]>
    Date:   Mon Dec 23 21:22:56 2024 +0200

        feat: dynamically construct the genesis-network.json and add it to the values file to be used during network deploy (#982)

        Signed-off-by: Jeromy Cannon <[email protected]>
        Co-authored-by: Jeromy Cannon <[email protected]>

    commit 3c3673a
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 08:12:58 2024 -0600

        chore(deps): bump jfrog/setup-jfrog-cli from 4.5.2 to 4.5.3 (#1015)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 299cd85
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 08:12:30 2024 -0600

        chore(deps): bump helm/kind-action from 1.11.0 to 1.12.0 (#1014)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 1d57fb8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 07:47:07 2024 -0600

        chore(deps): bump chalk from 5.4.0 to 5.4.1 (#1013)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit a4e5cd8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 07:26:24 2024 -0600

        chore(deps): bump inquirer from 12.2.0 to 12.3.0 (#1012)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 7a69623
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Sun Dec 22 19:20:53 2024 +0000

        chore(deps-dev): bump eslint-plugin-n from 17.15.0 to 17.15.1 (#1011)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 7bb0e99
    Author: Jeromy Cannon <[email protected]>
    Date:   Sun Dec 22 07:31:54 2024 +0000

        fix: refactored Taskfiles, fixed bugs with taskfile, lease interval, sdk node client connection, and commands missing quiet flag (#978)

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 861c579
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 11:06:35 2024 -0600

        chore(deps-dev): bump globals from 15.13.0 to 15.14.0 (#1007)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit e80bda8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 11:06:22 2024 -0600

        chore(deps): bump chalk from 5.3.0 to 5.4.0 (#1008)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit f4b49aa
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 10:47:50 2024 -0600

        chore(deps): bump @hashgraph/sdk from 2.55.1 to 2.56.0 (#1009)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit c9711c5
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 19 18:47:03 2024 +0200

        feat: update `solo context connect` to connect to single remote cluster (#993)

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 043efcf
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Wed Dec 18 16:56:19 2024 -0600

        chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1002)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 8115945
    Author: Pranali Deshmukh <[email protected]>
    Date:   Thu Dec 19 00:55:58 2024 +0200

        docs(README): Updated the "Install Solo" section. (#1004)

        Signed-off-by: Pranali Deshmukh <[email protected]>

    commit 01ed969
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Wed Dec 18 11:19:09 2024 -0600

        chore(deps): bump actions/setup-java from 4.5.0 to 4.6.0 (#1003)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 24269fe
Author: Ivo Yankov <[email protected]>
Date:   Fri Dec 20 11:03:26 2024 +0200

    wip: attempting to fix tests

    Signed-off-by: Ivo Yankov <[email protected]>

commit 7698f16
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 15:41:38 2024 +0200

    chore: format

    Signed-off-by: Ivo Yankov <[email protected]>

commit 507a081
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 14:53:36 2024 +0200

    feat: implement IOC in core classes

    Signed-off-by: Ivo Yankov <[email protected]>

commit c582f12
Author: Ivo Yankov <[email protected]>
Date:   Wed Dec 18 17:32:22 2024 +0200

    wip: refactoring dependencies

    Signed-off-by: Ivo Yankov <[email protected]>

Signed-off-by: Jeromy Cannon <[email protected]>
jeromy-cannon added a commit that referenced this pull request Dec 27, 2024
commit 04e69ea
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 26 13:22:26 2024 +0000

    Squashed commit of the following:

    commit 5ab8bfdffd3c5d1932e7ed6a61e736d7216b4248
    Author: Jeromy Cannon <[email protected]>
    Date:   Thu Dec 26 13:15:50 2024 +0000

        got `solo init` to work.

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 8bcf11c95ca5e310b177ed00be3a58a24fdbbac6
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 22:00:08 2024 +0000

        remove eslint errors

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit de0046a370e14582500ce25e412cb8c8fb7158a1
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 21:59:51 2024 +0000

        removed isolated modules, it seems to be adding js files and dist folders in incorrect locations

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 4909cbdcf289ba35d68620bab88bb73815f5ecc2
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 21:59:23 2024 +0000

        change eslint back, if we need to override, we can use @ignore tags and document

        Signed-off-by: Jeromy Cannon <[email protected]>

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 8c16717
Author: Jeromy Cannon <[email protected]>
Date:   Thu Dec 26 13:24:23 2024 +0000

    Squashed commit of the following:

    commit 294aa0a
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 10:36:26 2024 +0200

        chore: add build step to unit test CI

        Signed-off-by: Ivo Yankov <[email protected]>

    commit f67071c
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 10:26:14 2024 +0200

        fix: update mocha scripts in package.json

        Signed-off-by: Ivo Yankov <[email protected]>

    commit be6d88e
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 09:54:26 2024 +0200

        chore: run formatter

        Signed-off-by: Ivo Yankov <[email protected]>

    commit c0b8b16
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 09:52:14 2024 +0200

        fix: various unit tests

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 5a05b87
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 26 08:13:22 2024 +0200

        fix: injections in tests

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 6178ccf
    Merge: 24269fe c3a9691
    Author: Ivo Yankov <[email protected]>
    Date:   Tue Dec 24 15:39:32 2024 +0200

        Merge remote-tracking branch 'origin/00822-implement-inversion-of-control-2' into 00822-implement-inversion-of-control-2

        # Conflicts:
        #	src/core/account_manager.ts
        #	src/core/config/local_config.ts
        #	src/core/config_manager.ts
        #	src/core/lease/lease_manager.ts
        #	src/core/profile_manager.ts
        #	src/index.ts
        #	test/setup.ts
        #	test/test_container.ts
        #	test/test_util.ts
        #	test/unit/commands/base.test.ts
        #	test/unit/commands/context.test.ts
        #	test/unit/commands/network.test.ts
        #	test/unit/core/platform_installer.test.ts
        #	test/unit/core/profile_manager.test.ts

    commit c3a9691
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:35:20 2024 +0000

        add reflect metadata back

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit dd13b95
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:28:06 2024 +0000

        fixed eslint errors from `npm run check`

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 6d7522c
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 20:14:08 2024 +0000

        npm run format

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit f323ca7
    Author: Jeromy Cannon <[email protected]>
    Date:   Mon Dec 23 19:59:26 2024 +0000

        Squashed commit of the following:

        commit 24269fe
        Author: Ivo Yankov <[email protected]>
        Date:   Fri Dec 20 11:03:26 2024 +0200

            wip: attempting to fix tests

            Signed-off-by: Ivo Yankov <[email protected]>

        commit 7698f16
        Author: Ivo Yankov <[email protected]>
        Date:   Thu Dec 19 15:41:38 2024 +0200

            chore: format

            Signed-off-by: Ivo Yankov <[email protected]>

        commit 507a081
        Author: Ivo Yankov <[email protected]>
        Date:   Thu Dec 19 14:53:36 2024 +0200

            feat: implement IOC in core classes

            Signed-off-by: Ivo Yankov <[email protected]>

        commit c582f12
        Author: Ivo Yankov <[email protected]>
        Date:   Wed Dec 18 17:32:22 2024 +0200

            wip: refactoring dependencies

            Signed-off-by: Ivo Yankov <[email protected]>

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 1b9b7e6
    Author: Jan Milenkov <[email protected]>
    Date:   Mon Dec 23 21:22:56 2024 +0200

        feat: dynamically construct the genesis-network.json and add it to the values file to be used during network deploy (#982)

        Signed-off-by: Jeromy Cannon <[email protected]>
        Co-authored-by: Jeromy Cannon <[email protected]>

    commit 3c3673a
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 08:12:58 2024 -0600

        chore(deps): bump jfrog/setup-jfrog-cli from 4.5.2 to 4.5.3 (#1015)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 299cd85
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 08:12:30 2024 -0600

        chore(deps): bump helm/kind-action from 1.11.0 to 1.12.0 (#1014)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 1d57fb8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 07:47:07 2024 -0600

        chore(deps): bump chalk from 5.4.0 to 5.4.1 (#1013)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit a4e5cd8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Mon Dec 23 07:26:24 2024 -0600

        chore(deps): bump inquirer from 12.2.0 to 12.3.0 (#1012)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 7a69623
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Sun Dec 22 19:20:53 2024 +0000

        chore(deps-dev): bump eslint-plugin-n from 17.15.0 to 17.15.1 (#1011)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 7bb0e99
    Author: Jeromy Cannon <[email protected]>
    Date:   Sun Dec 22 07:31:54 2024 +0000

        fix: refactored Taskfiles, fixed bugs with taskfile, lease interval, sdk node client connection, and commands missing quiet flag (#978)

        Signed-off-by: Jeromy Cannon <[email protected]>

    commit 861c579
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 11:06:35 2024 -0600

        chore(deps-dev): bump globals from 15.13.0 to 15.14.0 (#1007)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit e80bda8
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 11:06:22 2024 -0600

        chore(deps): bump chalk from 5.3.0 to 5.4.0 (#1008)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit f4b49aa
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Thu Dec 19 10:47:50 2024 -0600

        chore(deps): bump @hashgraph/sdk from 2.55.1 to 2.56.0 (#1009)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit c9711c5
    Author: Ivo Yankov <[email protected]>
    Date:   Thu Dec 19 18:47:03 2024 +0200

        feat: update `solo context connect` to connect to single remote cluster (#993)

        Signed-off-by: Ivo Yankov <[email protected]>

    commit 043efcf
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Wed Dec 18 16:56:19 2024 -0600

        chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#1002)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    commit 8115945
    Author: Pranali Deshmukh <[email protected]>
    Date:   Thu Dec 19 00:55:58 2024 +0200

        docs(README): Updated the "Install Solo" section. (#1004)

        Signed-off-by: Pranali Deshmukh <[email protected]>

    commit 01ed969
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Date:   Wed Dec 18 11:19:09 2024 -0600

        chore(deps): bump actions/setup-java from 4.5.0 to 4.6.0 (#1003)

        Signed-off-by: dependabot[bot] <[email protected]>
        Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

    Signed-off-by: Jeromy Cannon <[email protected]>

commit 24269fe
Author: Ivo Yankov <[email protected]>
Date:   Fri Dec 20 11:03:26 2024 +0200

    wip: attempting to fix tests

    Signed-off-by: Ivo Yankov <[email protected]>

commit 7698f16
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 15:41:38 2024 +0200

    chore: format

    Signed-off-by: Ivo Yankov <[email protected]>

commit 507a081
Author: Ivo Yankov <[email protected]>
Date:   Thu Dec 19 14:53:36 2024 +0200

    feat: implement IOC in core classes

    Signed-off-by: Ivo Yankov <[email protected]>

commit c582f12
Author: Ivo Yankov <[email protected]>
Date:   Wed Dec 18 17:32:22 2024 +0200

    wip: refactoring dependencies

    Signed-off-by: Ivo Yankov <[email protected]>

Signed-off-by: Jeromy Cannon <[email protected]>
swirlds-automation added a commit that referenced this pull request Dec 31, 2024
## [0.32.0](v0.31.1...v0.32.0) (2024-12-31)

### ⚠ BREAKING CHANGES

* update readme with warning about BREAKING CHANGE in this next release (#730)

### Features

* add ci test flow to test task command to launch solo ([#811](#811)) ([356f341](356f341))
* add example for using javascript SDK ([#832](#832)) ([1d9452e](1d9452e))
* add extended math utils and duration support ([#923](#923)) ([f5a69e7](f5a69e7))
* add separate commands for update ([#735](#735)) ([44c3132](44c3132))
* add solo smoke test to test flow ([#905](#905)) ([79410f0](79410f0))
* add support for flexible lease acquisition and production readiness ([#830](#830)) ([7fa86ad](7fa86ad))
* Add the ability to inject a ca certificate for use in gRPC and gRPC Web ([#753](#753)) ([2cd8a38](2cd8a38))
* add timeout flag to network destroy command ([#821](#821)) ([0fb570b](0fb570b))
* allow settings a reserved static IP address for the consensus nodes HAProxy and Envoy Proxy though the cli with flags ([#937](#937)) ([de9ec2e](de9ec2e))
* change mirror node and explorer from subchart to individual chart ([#743](#743)) ([58f0496](58f0496))
* Create a local config for storing configurations on the users machine ([#803](#803)) ([0a4382d](0a4382d))
* Create remote config  ([#862](#862)) ([e8fe739](e8fe739))
* dynamically construct the genesis-network.json and add it to the values file to be used during network deploy ([#982](#982)) ([1b9b7e6](1b9b7e6))
* expose pod check attempts and delays as environment controlled variables ([#812](#812)) ([a7b3279](a7b3279))
* Implement IOC ([#1010](#1010)) ([ed23a7b](ed23a7b))
* Implement solo context connect ([#863](#863)) ([782b3ec](782b3ec))
* Increase helm chart version and switch to use oci registry ([#788](#788)) ([1973275](1973275))
* **k8s:** introduce Kubernetes lease lock mechanism ([#707](#707)) ([f1b8089](f1b8089))
* new command to save state files and upload state files ([#849](#849)) ([d5a9a18](d5a9a18))
* removed caching of ConfigManager and its flags ([#713](#713)) ([76a61e3](76a61e3))
* Setup mirror node monitor pinger service ([#893](#893)) ([f4c4320](f4c4320))
* update `solo context connect` to connect to single remote cluster ([#993](#993)) ([c9711c5](c9711c5))
* Update document ([#956](#956)) ([b378937](b378937))
* update readme and hugo workflow ([#930](#930)) ([0e08abc](0e08abc))
* Validate a remote config ([#922](#922)) ([a7bbae0](a7bbae0))

### Bug Fixes

* add delay before calling script ([#955](#955)) ([76f4b81](76f4b81))
* allow expired leases to be overwritten ([#828](#828)) ([1fa1d78](1fa1d78))
* bump chart and hedera version,  re-enable node add ([#985](#985)) ([9cae011](9cae011))
* check if setup chart installed or not before network deploy ([#799](#799)) ([6930dab](6930dab))
* document typo ([#988](#988)) ([8e4fe04](8e4fe04))
* Error in `node update` separate commands when new admin key is not supplied ([#854](#854)) ([6e472b5](6e472b5))
* Examples of performance configs for HashSphere and Latitude ([#926](#926)) ([#957](#957)) ([928148b](928148b))
* fix missing file issues when running solo from npm install -g ([#736](#736)) ([2a5cfc1](2a5cfc1))
* fixed genesis-network.json file lock issue ([#1074](#1074)) ([e590516](e590516))
* flag check of node logs command and incorrect download source ([#848](#848)) ([03051f0](03051f0))
* inconsistent failures ([#866](#866)) ([13ea46d](13ea46d))
* local chart directory not being taken correctly ([#983](#983)) ([58e96e1](58e96e1))
* nextNode ID for release version > 0.56.0 ([#765](#765)) ([3b98dd6](3b98dd6))
* node id should start from `1` ([#884](#884)) ([d90c9b5](d90c9b5))
* node update with single node ([#981](#981)) ([74285bf](74285bf))
* patch issue with dist folder not showing up ([#733](#733)) ([077f989](077f989))
* performance improvements for node stop ([#986](#986)) ([437bbc6](437bbc6))
* refactored Taskfiles, fixed bugs with taskfile, lease interval, sdk node client connection, and commands missing quiet flag ([#978](#978)) ([7bb0e99](7bb0e99))
* remote config validation not working ([#967](#967)) ([88c2506](88c2506))
* resolve node update test failures ([#856](#856)) ([5e1c652](5e1c652))
* Revised example configs for Latitude deployment, automation friendly ([#1038](#1038)) ([434daf3](434daf3))
* undefined log output of namespace ([#764](#764)) ([ac15957](ac15957))

### Documentation

* update readme with warning about BREAKING CHANGE in this next release ([#730](#730)) ([06295f6](06295f6))
@swirlds-automation
Copy link
Contributor

🎉 This PR is included in version 0.32.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
3 participants