diff --git a/pull-requests/hyperledger-labs/fabric-operations-console.md b/pull-requests/hyperledger-labs/fabric-operations-console.md
index 9d1aba92c..6899e1a1e 100644
--- a/pull-requests/hyperledger-labs/fabric-operations-console.md
+++ b/pull-requests/hyperledger-labs/fabric-operations-console.md
@@ -270,33 +270,3 @@ Prevents users with only the reader role from doing actions like:
-
-
-
-
- PR #557
- |
-
-
- prevent the last manager from removing manager role
-
- |
-
-
-
-
- |
-
- #### Type of change
-
-
-
-- Bug fix
- |
-
-
-
- Created At 2023-11-09 09:16:14 +0000 UTC
-
-
-
diff --git a/pull-requests/hyperledger-labs/fabric-token-sdk.md b/pull-requests/hyperledger-labs/fabric-token-sdk.md
index 2bb200017..80eaf9e6d 100644
--- a/pull-requests/hyperledger-labs/fabric-token-sdk.md
+++ b/pull-requests/hyperledger-labs/fabric-token-sdk.md
@@ -38,29 +38,3 @@ Note that the code assumes that tokens stored via `StoreFabToken` are always 'mi
-
-
-
-
- PR #515
- |
-
-
- enhance VerifyCertifications to return processed certifications
-
- |
-
-
-
-
- |
-
-
- |
-
-
-
- Created At 2023-11-09 10:25:47 +0000 UTC
-
-
-
diff --git a/pull-requests/hyperledger-labs/hlf-connector.md b/pull-requests/hyperledger-labs/hlf-connector.md
index 9d04c24fd..2b0bb13fd 100644
--- a/pull-requests/hyperledger-labs/hlf-connector.md
+++ b/pull-requests/hyperledger-labs/hlf-connector.md
@@ -14,37 +14,11 @@ permalink: /pull-requests/hyperledger-labs/hlf-connector
- PR #105
+ PR #106
|
- Increment version after release
-
- |
-
-
-
- auto-version-increment
- |
-
- Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
- |
-
-
-
- Created At 2023-10-03 14:11:53 +0000 UTC
-
-
-
-
-
-
-
- PR #104
- |
-
-
- Minor refactorings to Approvers API
+ Introduce capability for publishing error Records to Dead letter topic
|
@@ -53,15 +27,19 @@ permalink: /pull-requests/hyperledger-labs/hlf-connector
- Follow-up of #102
-Wrap long request params into Request-Part.
-Change method signature to POST since the operation involves transfer of Files.
-
+ This PR contains the changes for publishing failed consumer Records polled from the Integration topic(s) to a configured error Event listener Topic.
+
+The changes would effectively allow the Connector to publish the Error record to a topic based on the following criteria :-
+
+- If the Event-Listener topic (Block & Chaincode) has the optional field `listenToFailedMessages` set as true, the failed message will be published back to Event listener topic (this is the current behaviour).
+- If the Kafka properties of a dedicated Dead letter topic is configured, the errored message will be published to the configured dead letter topic.
+- If the configuration `listenToFailedMessages` is set to true as well as a dedicated Dead letter topic is configured, the dead letter topic will take priority and record will be dispatched to it.
+- If none of the above options are available, the listener will attempt retries and log the failed record by committing the offset.
|
- Created At 2023-10-03 13:32:17 +0000 UTC
+ Created At 2023-11-16 09:46:07 +0000 UTC
diff --git a/pull-requests/hyperledger-labs/open-enterprise-agent.md b/pull-requests/hyperledger-labs/open-enterprise-agent.md
index eb3223ec8..b51b7c98b 100644
--- a/pull-requests/hyperledger-labs/open-enterprise-agent.md
+++ b/pull-requests/hyperledger-labs/open-enterprise-agent.md
@@ -14,23 +14,23 @@ permalink: /pull-requests/hyperledger-labs/open-enterprise-agent
- PR #788
+ PR #791
|
- feat: Create Store Presentation
+ fix: enable keycloak with pre-configured agent in helm chart
|
- pollux
+ infra
|
# Overview
-Fixes https://input-output.atlassian.net/browse/ATL-5968
+Fixes ATL-5825. Enable keycloak and configure agent. This PR does not expose keycloak admin UI and endpoints yet.
## Checklist
@@ -38,29 +38,29 @@ Fixes https://input-output.atlassian.net/browse/ATL-5968
* [ ] No code changes (changes to documentation, CI, metadata, etc.)
* [ ] Bug fixes (non-breaking change which fixes an issue)
* [ ] Improvements (misc. changes to existing features)
-* [x] Features (non-breaking change which adds functionality)
+* [ ] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
-* [x] are not breaking changes
+* [ ] are not breaking changes
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [x] My changes do not require a change to the project documentation
+* [ ] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
### Tests
* [ ] My changes can not or do not need to be tested
-* [x] My changes can and should be tested by unit and/or integration tests
-* [x] If yes to above: I have added tests to cover my changes
-* [x] If yes to above: I have taken care to cover edge cases in my tests
+* [ ] My changes can and should be tested by unit and/or integration tests
+* [ ] If yes to above: I have added tests to cover my changes
+* [ ] If yes to above: I have taken care to cover edge cases in my tests
|
- Created At 2023-11-15 16:51:54 +0000 UTC
+ Created At 2023-11-16 12:20:30 +0000 UTC
@@ -68,23 +68,25 @@ Fixes https://input-output.atlassian.net/browse/ATL-5968
- PR #787
+ PR #790
|
- test: add k6 credential definition performance scenario
+ fix: explicitly define transitive dependencies that were unresolvable
|
-
+ ciprism-agentbuild
|
# Overview
-Adds K6 performance scenario to measure credential definition endpoint
+The release process is using `sbt-license` plugin which uses ivy under the hood to resolve dependencies. Ivy isn't happy about the `resteasy-*` dependencies which is a transitive dependencies of `keycloak-admin-client` which is included by `keycloak-test-containers`. Ivy was unable to resolve those and it has to be explicitly defined or somehow partially include this [dependencies BOM](https://github.com/resteasy/resteasy/blob/main/resteasy-dependencies-bom/pom.xml) .
+
+This is a workaround to unblock the release process (`sbt dumpLicenseReportAggregate`) and should be fixed in a more maintainable way.
## Checklist
@@ -105,7 +107,7 @@ Adds K6 performance scenario to measure credential definition endpoint
* [ ] If yes to above: I have updated the documentation accordingly
### Tests
-* [x] My changes can not or do not need to be tested
+* [ ] My changes can not or do not need to be tested
* [ ] My changes can and should be tested by unit and/or integration tests
* [ ] If yes to above: I have added tests to cover my changes
* [ ] If yes to above: I have taken care to cover edge cases in my tests
@@ -114,7 +116,7 @@ Adds K6 performance scenario to measure credential definition endpoint
|
- Created At 2023-11-15 14:14:17 +0000 UTC
+ Created At 2023-11-16 08:39:35 +0000 UTC
@@ -122,31 +124,31 @@ Adds K6 performance scenario to measure credential definition endpoint
- PR #786
+ PR #788
|
- test: add wallet uma permission management tests
+ feat: Create Store Presentation
|
- prism-agent
+ pollux
|
# Overview
-Fixes ATL-6082. Add unit tests for self-service wallet management.
+Fixes https://input-output.atlassian.net/browse/ATL-5968
## Checklist
### My PR contains...
-* [x] No code changes (changes to documentation, CI, metadata, etc.)
+* [ ] No code changes (changes to documentation, CI, metadata, etc.)
* [ ] Bug fixes (non-breaking change which fixes an issue)
* [ ] Improvements (misc. changes to existing features)
-* [ ] Features (non-breaking change which adds functionality)
+* [x] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
@@ -160,15 +162,15 @@ Fixes ATL-6082. Add unit tests for self-service wallet management.
### Tests
* [ ] My changes can not or do not need to be tested
-* [ ] My changes can and should be tested by unit and/or integration tests
-* [ ] If yes to above: I have added tests to cover my changes
-* [ ] If yes to above: I have taken care to cover edge cases in my tests
+* [x] My changes can and should be tested by unit and/or integration tests
+* [x] If yes to above: I have added tests to cover my changes
+* [x] If yes to above: I have taken care to cover edge cases in my tests
|
- Created At 2023-11-14 10:24:24 +0000 UTC
+ Created At 2023-11-15 16:51:54 +0000 UTC
@@ -176,44 +178,44 @@ Fixes ATL-6082. Add unit tests for self-service wallet management.
- PR #785
+ PR #787
|
- feat: Accept goal and goalCode to create connection invitation
+ test: add k6 credential definition performance scenario
|
- mercuryprism-agentconnect
+
|
# Overview
-Accept goal and goal code to create a connection invitation
+
-Fixes ATL-3320
+Adds K6 performance scenario to measure credential definition endpoint
## Checklist
### My PR contains...
-* [ ] No code changes (changes to documentation, CI, metadata, etc.)
+* [x] No code changes (changes to documentation, CI, metadata, etc.)
* [ ] Bug fixes (non-breaking change which fixes an issue)
-* [x] Improvements (misc. changes to existing features)
-* [x] Features (non-breaking change which adds functionality)
+* [ ] Improvements (misc. changes to existing features)
+* [ ] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
-* [ ] are not breaking changes
+* [x] are not breaking changes
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [ ] My changes do not require a change to the project documentation
+* [x] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
### Tests
-* [ ] My changes can not or do not need to be tested
+* [x] My changes can not or do not need to be tested
* [ ] My changes can and should be tested by unit and/or integration tests
* [ ] If yes to above: I have added tests to cover my changes
* [ ] If yes to above: I have taken care to cover edge cases in my tests
@@ -222,7 +224,7 @@ Fixes ATL-3320
|
- Created At 2023-11-13 14:13:58 +0000 UTC
+ Created At 2023-11-15 14:14:17 +0000 UTC
@@ -230,23 +232,23 @@ Fixes ATL-3320
- PR #784
+ PR #786
|
- chore(castor): clean up sonarcloud issues and unused configurations
+ test: add wallet uma permission management tests
|
- castorprism-agentinfra
+ prism-agent
|
# Overview
-Partially fixes ATL-5374. Clean up some warning from sonarcloud analysis and remove unused configurations.
+Fixes ATL-6082. Add unit tests for self-service wallet management.
## Checklist
@@ -262,7 +264,7 @@ Partially fixes ATL-5374. Clean up some warning from sonarcloud analysis and rem
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [ ] My changes do not require a change to the project documentation
+* [x] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
@@ -276,7 +278,7 @@ Partially fixes ATL-5374. Clean up some warning from sonarcloud analysis and rem
|
- Created At 2023-11-10 10:19:34 +0000 UTC
+ Created At 2023-11-14 10:24:24 +0000 UTC
@@ -284,39 +286,39 @@ Partially fixes ATL-5374. Clean up some warning from sonarcloud analysis and rem
- PR #783
+ PR #785
|
- fix(prism-agent): more descriptive error response for validateDID in issue flow
+ feat: Accept goal and goalCode to create connection invitation
|
- castorprism-agent
+ mercuryprism-agentconnect
|
# Overview
-
+Accept goal and goal code to create a connection invitation
-Fixes ATL-6156
+Fixes ATL-3320
## Checklist
### My PR contains...
* [ ] No code changes (changes to documentation, CI, metadata, etc.)
-* [x] Bug fixes (non-breaking change which fixes an issue)
-* [ ] Improvements (misc. changes to existing features)
-* [ ] Features (non-breaking change which adds functionality)
+* [ ] Bug fixes (non-breaking change which fixes an issue)
+* [x] Improvements (misc. changes to existing features)
+* [x] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
-* [x] are not breaking changes
+* [ ] are not breaking changes
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [x] My changes do not require a change to the project documentation
+* [ ] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
@@ -330,7 +332,7 @@ Fixes ATL-6156
|
- Created At 2023-11-10 08:11:00 +0000 UTC
+ Created At 2023-11-13 14:13:58 +0000 UTC
@@ -338,29 +340,29 @@ Fixes ATL-6156
- PR #782
+ PR #784
|
- fix(pollux): V16 migration is failing to add FK constraint because of type mismatch
+ chore(castor): clean up sonarcloud issues and unused configurations
|
- pollux
+ castorprism-agentinfra
|
# Overview
-fix migration V16 by altering a data type `issue_credential_record_id` in `credentials_in_status_list` from UUID to varchar(64)
+Partially fixes ATL-5374. Clean up some warning from sonarcloud analysis and remove unused configurations.
## Checklist
### My PR contains...
-* [ ] No code changes (changes to documentation, CI, metadata, etc.)
-* [x] Bug fixes (non-breaking change which fixes an issue)
+* [x] No code changes (changes to documentation, CI, metadata, etc.)
+* [ ] Bug fixes (non-breaking change which fixes an issue)
* [ ] Improvements (misc. changes to existing features)
* [ ] Features (non-breaking change which adds functionality)
@@ -370,12 +372,12 @@ fix migration V16 by altering a data type `issue_credential_record_id` in `crede
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [x] My changes do not require a change to the project documentation
+* [ ] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
### Tests
-* [x] My changes can not or do not need to be tested
+* [ ] My changes can not or do not need to be tested
* [ ] My changes can and should be tested by unit and/or integration tests
* [ ] If yes to above: I have added tests to cover my changes
* [ ] If yes to above: I have taken care to cover edge cases in my tests
@@ -384,7 +386,7 @@ fix migration V16 by altering a data type `issue_credential_record_id` in `crede
|
- Created At 2023-11-09 12:33:06 +0000 UTC
+ Created At 2023-11-10 10:19:34 +0000 UTC
@@ -392,31 +394,31 @@ fix migration V16 by altering a data type `issue_credential_record_id` in `crede
- PR #781
+ PR #783
|
- feat: Accept Presentation Request
+ fix(prism-agent): more descriptive error response for validateDID in issue flow
|
- pollux
+ castorprism-agent
|
# Overview
-Fixes ATL-xxxx
+Fixes ATL-6156
## Checklist
### My PR contains...
* [ ] No code changes (changes to documentation, CI, metadata, etc.)
-* [ ] Bug fixes (non-breaking change which fixes an issue)
+* [x] Bug fixes (non-breaking change which fixes an issue)
* [ ] Improvements (misc. changes to existing features)
-* [x] Features (non-breaking change which adds functionality)
+* [ ] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
@@ -430,15 +432,15 @@ Fixes ATL-xxxx
### Tests
* [ ] My changes can not or do not need to be tested
-* [x] My changes can and should be tested by unit and/or integration tests
-* [x] If yes to above: I have added tests to cover my changes
-* [x] If yes to above: I have taken care to cover edge cases in my tests
+* [ ] My changes can and should be tested by unit and/or integration tests
+* [ ] If yes to above: I have added tests to cover my changes
+* [ ] If yes to above: I have taken care to cover edge cases in my tests
|
- Created At 2023-11-09 10:56:11 +0000 UTC
+ Created At 2023-11-10 08:11:00 +0000 UTC
@@ -446,44 +448,44 @@ Fixes ATL-xxxx
- PR #780
+ PR #782
|
- fix(prism-agent): perform percent encoding on auth header for token introspection request
+ fix(pollux): V16 migration is failing to add FK constraint because of type mismatch
|
- prism-agent
+ pollux
|
# Overview
-When making a request where Basic auth credential contains special character, it will fail with invalid credential. Credential should be encoded before sending.
+fix migration V16 by altering a data type `issue_credential_record_id` in `credentials_in_status_list` from UUID to varchar(64)
## Checklist
### My PR contains...
* [ ] No code changes (changes to documentation, CI, metadata, etc.)
-* [ ] Bug fixes (non-breaking change which fixes an issue)
+* [x] Bug fixes (non-breaking change which fixes an issue)
* [ ] Improvements (misc. changes to existing features)
* [ ] Features (non-breaking change which adds functionality)
### My changes...
* [ ] are breaking changes
-* [ ] are not breaking changes
+* [x] are not breaking changes
* [ ] If yes to above: I have updated the documentation accordingly
### Documentation
-* [ ] My changes do not require a change to the project documentation
+* [x] My changes do not require a change to the project documentation
* [ ] My changes require a change to the project documentation
* [ ] If yes to above: I have updated the documentation accordingly
### Tests
-* [ ] My changes can not or do not need to be tested
+* [x] My changes can not or do not need to be tested
* [ ] My changes can and should be tested by unit and/or integration tests
* [ ] If yes to above: I have added tests to cover my changes
* [ ] If yes to above: I have taken care to cover edge cases in my tests
@@ -492,7 +494,7 @@ When making a request where Basic auth credential contains special character, it
|
- Created At 2023-11-09 10:40:25 +0000 UTC
+ Created At 2023-11-09 12:33:06 +0000 UTC
diff --git a/pull-requests/hyperledger/besu.md b/pull-requests/hyperledger/besu.md
index 829fd71ff..96e6506ee 100644
--- a/pull-requests/hyperledger/besu.md
+++ b/pull-requests/hyperledger/besu.md
@@ -664,34 +664,3 @@ fixes #6058
-
-
-
-
- PR #6146
- |
-
-
- Apply the same reverse sort order as https://github.com/hyperledger/b…
-
- |
-
-
-
-
- |
-
- ## PR description
-PR https://github.com/hyperledger/besu/pull/6106 reversed the transaction sort order, but only for the gas-price sorter.
-
-This PR applies the same logic to the base-fee sorter.
-
-FYI @fab-10
- |
-
-
-
- Created At 2023-11-09 10:43:07 +0000 UTC
-
-
-
diff --git a/pull-requests/hyperledger/cacti.md b/pull-requests/hyperledger/cacti.md
index 8668d9be0..bcf4a2626 100644
--- a/pull-requests/hyperledger/cacti.md
+++ b/pull-requests/hyperledger/cacti.md
@@ -10,6 +10,54 @@ permalink: /pull-requests/hyperledger/cacti
# cacti [GitHub](https://github.com/hyperledger/cacti){: .btn .mr-4 }
+
+
+
+
+ PR #2895
+ |
+
+
+ fix(cmd-api-server): healthcheck broken due to missing wget binary
+
+ |
+
+
+
+
+ |
+
+ 1. wget now gets installed explicitly
+2. upgraded to ubuntu 22.04 LTS for the base image
+3. upgraded nodejs to v20 LTS and npm to v10
+3. Published the container image corresponding to this commit tagged as
+`ghcr.io/hyperledger/cactus-cmd-api-server:2023-11-16-issue2894`
+
+[skip ci]
+
+Fixes #2894
+
+Signed-off-by: Peter Somogyvari
+
+**Pull Request Requirements**
+- [x] Rebased onto `upstream/main` branch and squashed into single commit to help maintainers review it more efficient and to avoid spaghetti git commit graphs that obfuscate which commit did exactly what change, when and, why.
+- [x] Have git sign off at the end of commit message to avoid being marked red. You can add `-s` flag when using `git commit` command. You may refer to this [link](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits) for more information.
+- [x] Follow the Commit Linting specification. You may refer to this [link](https://www.conventionalcommits.org/en/v1.0.0-beta.4/#specification) for more information.
+
+**Character Limit**
+- [x] Pull Request Title and Commit Subject must not exceed 72 characters (including spaces and special characters).
+- [x] Commit Message per line must not exceed 80 characters (including spaces and special characters).
+
+**A Must Read for Beginners**
+For rebasing and squashing, here's a [must read guide](https://github.com/servo/servo/wiki/Beginner's-guide-to-rebasing-and-squashing) for beginners.
+ |
+
+
+
+ Created At 2023-11-16 07:24:32 +0000 UTC
+
+
+
diff --git a/pull-requests/hyperledger/fabric.md b/pull-requests/hyperledger/fabric.md
index 71a877d7b..e0e25d16e 100644
--- a/pull-requests/hyperledger/fabric.md
+++ b/pull-requests/hyperledger/fabric.md
@@ -10,6 +10,45 @@ permalink: /pull-requests/hyperledger/fabric
# fabric [GitHub](https://github.com/hyperledger/fabric){: .btn .mr-4 }
+
+
+
+
+ PR #4545
+ |
+
+
+ add integration test in which the smartbft leader must freeze,
+
+ |
+
+
+
+
+ |
+
+ waiting for an answer.
+
+There was a case where the leader froze up and the followers couldn't change him.
+There were two reasons for this:
+
+a flaw in the behavior of the smartbft library
+gateway was only for raft
+Both reasons are fixed now.
+But a test that showed this error would be nice to add.
+
+For some reason, https://github.com/hyperledger/fabric/pull/4438 conflicts with main.
+Second, clean attempt.
+
+@C0rWin FYI
+ |
+
+
+
+ Created At 2023-11-16 11:38:33 +0000 UTC
+
+
+
diff --git a/pull-requests/hyperledger/iroha.md b/pull-requests/hyperledger/iroha.md
index 9ce3e506f..f83375fa4 100644
--- a/pull-requests/hyperledger/iroha.md
+++ b/pull-requests/hyperledger/iroha.md
@@ -463,212 +463,3 @@ Closes #{issue_number}
-
-
-
-
- PR #4047
- |
-
-
- [refactor] #3422: Ursa replacement
-
- |
-
-
-
- iroha2
- |
-
- ## Description
-
-Ursa is a rust cryptographic library that iroha has been using for a lot of time. It combines several cryptographic libraries from crates.io and provides a unified interface. Unfortunately, it is no longer maintained, so we have to migrate to other ecosystem crates.
-
-This PR does this by importing the parts of ursa code that we have been using into `iroha_crypto`. It then proceeds to clean the code up a bit, removing unused functionality, updating dependencies and simplifying internal APIs.
-
-In the end, as ursa was just a unifying layer, iroha_crypto ends up using almost the same underlying cryptographic function implementations (except for a switch from C-based `secp256k1` to pure-rust `k256` for easier use as a wasm library in JS SDK later #4046).
-
-### Linked issue
-
-Closes #3422
-
-### Benefits
-
-Not having an unmaintained dependency is obviously a plus, allowing us to benefit from updates to upstream libraries.
-
-### Future work
-
-#4046, #4045
-
-### Checklist
-
-- [x] make ci pass
- |
-
-
-
- Created At 2023-11-09 11:40:03 +0000 UTC
-
-
-
-
-
-
-
- PR #4044
- |
-
-
- [ci]: Add iroha2 stable tag only publishing
-
- |
-
-
-
- iroha2CI
- |
-
- ## Description
-
-1. Add `iroha2:` tag publishing only without release name.
-2. Bump Actions versions.
-
-
-### Benefits
-
-Fix image names in `docker-compose` files.
-
-### Checklist
-
-- [ ] I've read `CONTRIBUTING.md`
-- [ ] I've used the standard signed-off commit format (or will squash just before merging)
-- [ ] All applicable CI checks pass (or I promised to make them pass later)
-- [ ] (optional) I've written unit tests for the code changes
-- [ ] I replied to all comments after code review, marking all implemented changes with thumbs up
-
- |
-
-
-
- Created At 2023-11-09 11:17:28 +0000 UTC
-
-
-
-
-
-
-
- PR #4043
- |
-
-
- [BACKPORT] #4041: Add git commit SHA to client_cli
-
- |
-
-
-
- iroha2
- |
-
- ## Description
-
-
-
-
-
-### Linked issue
-
-
-
-Closes #4041
-
-
-
-### Benefits
-
-
-
-### Checklist
-
-- [ ] I've read `CONTRIBUTING.md`
-- [ ] I've used the standard signed-off commit format (or will squash just before merging)
-- [ ] All applicable CI checks pass (or I promised to make them pass later)
-- [ ] (optional) I've written unit tests for the code changes
-- [ ] I replied to all comments after code review, marking all implemented changes with thumbs up
-
-
-
-
-
- |
-
-
-
- Created At 2023-11-09 08:51:06 +0000 UTC
-
-
-
-
-
-
-
- PR #4042
- |
-
-
- [feature] #4041: Add git commit SHA to client_cli
-
- |
-
-
-
- iroha2
- |
-
- ## Description
-
-
-
-
-
-### Linked issue
-
-
-
-Closes #4041
-
-
-
-### Benefits
-
-
-
-### Checklist
-
-- [ ] I've read `CONTRIBUTING.md`
-- [ ] I've used the standard signed-off commit format (or will squash just before merging)
-- [ ] All applicable CI checks pass (or I promised to make them pass later)
-- [ ] (optional) I've written unit tests for the code changes
-- [ ] I replied to all comments after code review, marking all implemented changes with thumbs up
-
-
-
-
-
- |
-
-
-
- Created At 2023-11-09 08:50:41 +0000 UTC
-
-
-
diff --git a/pull-requests/hyperledger/solang.md b/pull-requests/hyperledger/solang.md
index e3c24de66..9a899d8d5 100644
--- a/pull-requests/hyperledger/solang.md
+++ b/pull-requests/hyperledger/solang.md
@@ -10,6 +10,32 @@ permalink: /pull-requests/hyperledger/solang
# solang [GitHub](https://github.com/hyperledger/solang){: .btn .mr-4 }
+
+
+
+
+ PR #1596
+ |
+
+
+ Move LoopScopes into ExprContext
+
+ |
+
+
+
+
+ |
+
+ This simplifies the code, and makes it to use ExprContext for other purposes (for example variable scoping).
+ |
+
+
+
+ Created At 2023-11-16 12:23:05 +0000 UTC
+
+
+
@@ -115,112 +141,3 @@ Fixes: https://github.com/hyperledger/solang/issues/707
-
-
-
-
- PR #1591
- |
-
-
- [Snyk] Upgrade @coral-xyz/anchor from 0.28.0 to 0.29.0
-
- |
-
-
-
-
- |
-
- This PR was automatically created by Snyk using the credentials of a real user.
Snyk has created this PR to upgrade @coral-xyz/anchor from 0.28.0 to 0.29.0.
-
-:information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
-
-
-- The recommended version is **3 versions** ahead of your current version.
-- The recommended version was released **24 days ago**, on 2023-10-16.
-
-
-
-Release notes
-
-
- Package name: @coral-xyz/anchor
-
- from @coral-xyz/anchor GitHub release notes
-
-
-
-
-
- Commit messages
-
-
- Package name: @coral-xyz/anchor
-
- - fc9fd6d v0.29.0 (#2672)
- - 88a75af avm: Install from version-commit and refactor (#2671)
- - 4f996d0 cli: Add ability to override toolchain from `Anchor.toml` (#2649)
- - 5900c93 avm: Allow install, list and use from commit (#2659)
- - 8717364 Remove the maximum version constraint from Solana crates (#2667)
- - 23eeb1e spl: add feature memo to support cpi to spl-memo (#2661)
- - 0fef819 chore: Remove abusive cloning (#2663)
- - 6cf2004 spl: Update dependencies to their latest versions (#2657)
- - dcafb78 lang: Add accounts by reference (#2656)
- - 243ab75 lang: Type safe bumps (#2542)
- - 721eb7a bench: Fix number formatting due to locale difference (#2655)
- - 267c4ce tests: Remove `auction-house` submodule and host it natively (#2654)
- - 5e7fb44 Upgrade Solana to `1.17.0` (#2645)
- - b0e725b spl: Update `mpl-token-metadata` to `3.1.0` and fix `create_metadata_accounts_v3` (#2651)
- - 25b24a1 syn: Fix having access to `idl` module by default (#2650)
- - 51578bc spl: Fix compilation error and warnings (#2647)
- - 5602244 cli: Support upgradeable program in anchor test (#2642)
- - f18fd97 Update Node to `18.18.0` LTS (#2643)
- - e1d5e78 syn: Fix generic type aliases (#2644)
- - d1e3267 Add type alias support (#2637)
- - 3e8bc76 Update to solang v0.3.2 and add simple test (#2636)
- - 28adaf2 ts: Remove `base64-js` dependency (#2635)
- - 99b75a9 spl: Update to token metadata client sdk (#2632)
- - 3c6fc2b syn: Fix IDL named enum variant field being snake_case (#2633)
-
-
- Compare
-
-
-
-
-**Note:** *You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.*
-
-For more information:
-
-🧐 [View latest project report](https://app.snyk.io/org/hyperledger-bot/project/ccb2ab6a-ba20-4d58-979d-b59e66a8e113?utm_source=github&utm_medium=referral&page=upgrade-pr)
-
-🛠 [Adjust upgrade PR settings](https://app.snyk.io/org/hyperledger-bot/project/ccb2ab6a-ba20-4d58-979d-b59e66a8e113/settings/integration?utm_source=github&utm_medium=referral&page=upgrade-pr)
-
-🔕 [Ignore this dependency or unsubscribe from future upgrade PRs](https://app.snyk.io/org/hyperledger-bot/project/ccb2ab6a-ba20-4d58-979d-b59e66a8e113/settings/integration?pkg=@coral-xyz/anchor&utm_source=github&utm_medium=referral&page=upgrade-pr#auto-dep-upgrades)
-
-
-
- |
-
-
-
- Created At 2023-11-09 10:37:16 +0000 UTC
-
-
-
diff --git a/trending/recent-prs.md b/trending/recent-prs.md
index 34e83b835..5a2d1218f 100644
--- a/trending/recent-prs.md
+++ b/trending/recent-prs.md
@@ -1,13 +1,13 @@
-[4544](https://github.com/hyperledger/fabric/pull/4544) Doc improvement - Chaincode access control
+[1596](https://github.com/hyperledger/solang/pull/1596) Move LoopScopes into ExprContext
-[2893](https://github.com/hyperledger/cacti/pull/2893) feat(plugin-keychain-memory): add REST API endpoint implementations
+[791](https://github.com/hyperledger-labs/open-enterprise-agent/pull/791) fix: enable keycloak with pre-configured agent in helm chart
-[6174](https://github.com/hyperledger/besu/pull/6174) [MINOR] Eth peer toString() improvements
+[4545](https://github.com/hyperledger/fabric/pull/4545) add integration test in which the smartbft leader must freeze,
-[1444](https://github.com/hyperledger/besu-docs/pull/1444) Added option to skip empty blocks
+[106](https://github.com/hyperledger-labs/hlf-connector/pull/106) Introduce capability for publishing error Records to Dead letter topic
-[2892](https://github.com/hyperledger/cacti/pull/2892) build: upgrade lerna-lite to v2.6.0 to fix publish resume bug
+[790](https://github.com/hyperledger-labs/open-enterprise-agent/pull/790) fix: explicitly define transitive dependencies that were unresolvable
[See more >>>](https://start-here.hyperledger.org/pull-requests)