diff --git a/pull-requests/hyperledger-labs/harmonia.md b/pull-requests/hyperledger-labs/harmonia.md index e282868b8..1c61c4734 100644 --- a/pull-requests/hyperledger-labs/harmonia.md +++ b/pull-requests/hyperledger-labs/harmonia.md @@ -14,11 +14,11 @@ permalink: /pull-requests/hyperledger-labs/harmonia @@ -27,14 +27,19 @@ permalink: /pull-requests/hyperledger-labs/harmonia
- PR #59 + PR #61 - Added claim by proof path to committed EVM asset + Added EVM signatures as notarisation proof
- After committing an EVM asset, the counterparty signs the draft transaction which locks the asset until the committed asset is claimed or reverted. + Updated EVM contract to allow EVM commit recipient to claim providing proofs of notarisation. +Updated java contract wrappers +Added new flows and updated existing flows to handle EVM signatures as proof of notarization +Added tests to claim EVM asset using proof of notarisation + +After committing an EVM asset, the counterparty signs the draft transaction which locks the asset until the committed asset is claimed or reverted. While both parties can revert the EVM asset, claiming without proofs of notarisation is only possible by the committer/owner of the EVM asset. The recipient must present proofs that the draft transaction was notarised in order to claim the EVM asset. This PR adds the possibility to collect EVM signatures from Corda parties that verify and attest that a certain signature over the draft transaction hash belongs to a certain public key. These signatures can be used by the EVM asset recipient to claim the EVM asset independently from the EVM asset owner.
- Created At 2023-10-24 16:08:08 +0000 UTC + Created At 2023-10-25 12:22:28 +0000 UTC
diff --git a/pull-requests/hyperledger-labs/open-enterprise-agent.md b/pull-requests/hyperledger-labs/open-enterprise-agent.md index d2a6f6381..be37cfe7b 100644 --- a/pull-requests/hyperledger-labs/open-enterprise-agent.md +++ b/pull-requests/hyperledger-labs/open-enterprise-agent.md @@ -10,6 +10,60 @@ permalink: /pull-requests/hyperledger-labs/open-enterprise-agent # open-enterprise-agent [GitHub](https://github.com/hyperledger-labs/open-enterprise-agent){: .btn .mr-4 } +
+ + + + + + + + + +
+ PR #767 + + + test: add anoncreds issuance happy path bdd scenario + +
+ docsinfra + + # Overview + + +Adds an integration test for anoncreds issuance + +## Checklist + +### My PR contains... +* [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) + +### My changes... +* [ ] are breaking changes +* [x] 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 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 +* [ ] 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-10-25 10:28:15 +0000 UTC +
+
+
diff --git a/pull-requests/hyperledger/besu.md b/pull-requests/hyperledger/besu.md index 5f6afeaa0..c54e9d72c 100644 --- a/pull-requests/hyperledger/besu.md +++ b/pull-requests/hyperledger/besu.md @@ -10,6 +10,106 @@ permalink: /pull-requests/hyperledger/besu # besu [GitHub](https://github.com/hyperledger/besu){: .btn .mr-4 } +
+
+ + + + + + + + +
+ PR #6085 + + + create trielog state for tracing + +
+ + + + + +## PR description + +## Fixed Issue(s) + +fixes #6050 + + +
+
+ Created At 2023-10-25 08:53:36 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #6083 + + + Add transaction selector based on min priority fee parameter + +
+ + + ## PR description +Add transaction selector based on min priority fee parameter + +## Fixed Issue(s) + + +
+
+ Created At 2023-10-25 07:35:42 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #6082 + + + Add option to clique to skip creating empty blocks + +
+ + + + + +## PR description +Add an option to clique to skip creating empty blocks + +## Fixed Issue(s) + + +
+
+ Created At 2023-10-25 06:50:57 +0000 UTC +
+
+
@@ -51,7 +151,7 @@ Bump 23.10.1-RC to 23.10.1 on release branch @@ -87,7 +223,7 @@ This PR does not add the transactionSelector based on `minPriorityFeePerGas`. It
- + doc-change-required ## PR description @@ -64,6 +164,42 @@ Adds two new JsonRPC methods: This PR does not add the transactionSelector based on `minPriorityFeePerGas`. It will be added in a different PR +Examples: + +Example: +Request +`{"jsonrpc":"2.0","id":1,"method":"miner_setMinPriorityFee","params":[1]}` +Response: +``` +{ + "jsonrpc": "2.0", + "id": 1, + "result": true +} +``` +Invalid request: +` {"jsonrpc":"2.0","id":1,"method":"miner_setMinPriorityFee","params":[-1]} +`Response: +``` +{ + "jsonrpc": "2.0", + "id": 1, + "result": false +} +``` +Get method: +` {"jsonrpc":"2.0","id":1,"method":"miner_getMinPriorityFee","params":[]} +`Response: +``` +{ + "jsonrpc": "2.0", + "id": 1, + "result": 7 +} +``` + + +
- + doc-change-required @@ -95,9 +231,19 @@ This PR does not add the transactionSelector based on `minPriorityFeePerGas`. It ## PR description +This PR allows to replace txs on zero base fee markets, or on gas price network, where the txs have gas price set to zero (with `min-gas-price=0`). + +To achieve that we force the `tx-pool-price-bump=0` when the `zeroBaseFee:true` genesis option is present. +But this was not enough, since the transaction replacement rules were forcing the new price to be strictly greater than the price bump, that in my opinion is not intuitive, since for example if your existing tx has a gas price of 100, and the price bump is 10%, then we should accept a valid replacement a tx with a gas price of 110, and not 111 as it was before. +So the other change is to accept, as valid replacement, tx with a gas price greater than or equal to the price bump. This make also the `tx-pool-price-bump=0` case more intuitive, since you can replace a tx without increasing the gas price. + +`doc-change-required` to explain that if `zeroBaseFee:true` in the genesis, then `tx-pool-price-bump=0` is forced internally, and any attempt to specify a value for it results in an error + ## Fixed Issue(s) - + + +fixes #6043
diff --git a/pull-requests/hyperledger/fabric-samples.md b/pull-requests/hyperledger/fabric-samples.md index f586248a6..c07683ad5 100644 --- a/pull-requests/hyperledger/fabric-samples.md +++ b/pull-requests/hyperledger/fabric-samples.md @@ -10,6 +10,938 @@ permalink: /pull-requests/hyperledger/fabric-samples # fabric-samples [GitHub](https://github.com/hyperledger/fabric-samples){: .btn .mr-4 } +
+ + + + + + + + + +
+ PR #1109 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /high-throughput/application-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:32:17 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1108 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /auction-dutch/chaincode-go-auditor + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:50 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1107 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /token-erc-20/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:48 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1106 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /asset-transfer-private-data/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:48 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1105 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /token-utxo/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:48 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1104 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /token-erc-721/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:42 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1103 + + + Bump @babel/traverse from 7.22.20 to 7.23.2 in /asset-transfer-basic/rest-api-typescript + +
+ dependenciesjavascript + + Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.22.20 to 7.23.2. +
+Release notes +

Sourced from @​babel/traverse's releases.

+
+

v7.23.2 (2023-10-11)

+

NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release commit.

+

Thanks @​jimmydief for your first PR!

+

:bug: Bug Fix

+
    +
  • babel-traverse + +
  • +
  • babel-preset-typescript + +
  • +
  • babel-helpers +
      +
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
    • +
    +
  • +
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime + +
  • +
+

Committers: 5

+ +

v7.23.1 (2023-09-25)

+

Re-publishing @babel/helpers due to a publishing error in 7.23.0.

+

v7.23.0 (2023-09-25)

+

Thanks @​lorenzoferre and @​RajShukla1 for your first PRs!

+

:rocket: New Feature

+
    +
  • babel-plugin-proposal-import-wasm-source, babel-plugin-syntax-import-source, babel-plugin-transform-dynamic-import + +
  • +
  • babel-helper-module-transforms, babel-helpers, babel-plugin-proposal-import-defer, babel-plugin-syntax-import-defer, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone + +
  • +
  • babel-generator, babel-parser, babel-types + +
  • +
  • babel-generator, babel-helper-module-transforms, babel-parser, babel-plugin-transform-dynamic-import, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-traverse, babel-types + +
  • +
  • babel-standalone + +
  • +
  • babel-helper-function-name, babel-helper-member-expression-to-functions, babel-helpers, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-optional-chaining-assign, babel-plugin-syntax-optional-chaining-assign, babel-plugin-transform-destructuring, babel-plugin-transform-optional-chaining, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone, babel-types + +
  • +
  • babel-helpers, babel-plugin-proposal-decorators + +
  • +
  • babel-traverse, babel-types + +
  • +
  • babel-preset-typescript
  • +
+ +
+

... (truncated)

+
+
+Changelog +

Sourced from @​babel/traverse's changelog.

+
+

v7.23.2 (2023-10-11)

+

:bug: Bug Fix

+
    +
  • babel-traverse + +
  • +
  • babel-preset-typescript + +
  • +
  • babel-helpers +
      +
    • #16017 Fix: fallback to typeof when toString is applied to incompatible object (@​JLHwung)
    • +
    +
  • +
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime + +
  • +
+

v7.23.0 (2023-09-25)

+

:rocket: New Feature

+
    +
  • babel-plugin-proposal-import-wasm-source, babel-plugin-syntax-import-source, babel-plugin-transform-dynamic-import + +
  • +
  • babel-helper-module-transforms, babel-helpers, babel-plugin-proposal-import-defer, babel-plugin-syntax-import-defer, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone + +
  • +
  • babel-generator, babel-parser, babel-types + +
  • +
  • babel-generator, babel-helper-module-transforms, babel-parser, babel-plugin-transform-dynamic-import, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-traverse, babel-types + +
  • +
  • babel-standalone + +
  • +
  • babel-helper-function-name, babel-helper-member-expression-to-functions, babel-helpers, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-optional-chaining-assign, babel-plugin-syntax-optional-chaining-assign, babel-plugin-transform-destructuring, babel-plugin-transform-optional-chaining, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone, babel-types + +
  • +
  • babel-helpers, babel-plugin-proposal-decorators + +
  • +
  • babel-traverse, babel-types + +
  • +
  • babel-preset-typescript + +
  • +
  • babel-parser + +
  • +
+

:bug: Bug Fix

+
    +
  • babel-plugin-transform-block-scoping + +
  • +
+

:nail_care: Polish

+
    +
  • babel-traverse + +
  • +
  • babel-plugin-proposal-explicit-resource-management + +
  • +
+

:microscope: Output optimization

+
    +
  • babel-core, babel-helper-module-transforms, babel-plugin-transform-async-to-generator, babel-plugin-transform-classes, babel-plugin-transform-dynamic-import, babel-plugin-transform-function-name, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-umd, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-react-inline-elements, babel-plugin-transform-runtime, babel-plugin-transform-typescript, babel-preset-env + +
  • +
+
+
+
+Commits + +
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@babel/traverse&package-manager=npm_and_yarn&previous-version=7.22.20&new-version=7.23.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:28 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1102 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /auction-simple/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:26 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1101 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /asset-transfer-ledger-queries/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:20 +0000 UTC +
+
+ +
+ + + + + + + + + +
+ PR #1100 + + + Bump golang.org/x/net from 0.7.0 to 0.17.0 in /token-erc-1155/chaincode-go + +
+ dependenciesgo + + Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0. +
+Commits +
    +
  • b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams
  • +
  • 88194ad go.mod: update golang.org/x dependencies
  • +
  • 2b60a61 quic: fix several bugs in flow control accounting
  • +
  • 73d82ef quic: handle DATA_BLOCKED frames
  • +
  • 5d5a036 quic: handle streams moving from the data queue to the meta queue
  • +
  • 350aad2 quic: correctly extend peer's flow control window after MAX_DATA
  • +
  • 21814e7 quic: validate connection id transport parameters
  • +
  • a600b35 quic: avoid redundant MAX_DATA updates
  • +
  • ea63359 http2: check stream body is present on read timeout
  • +
  • ddd8598 quic: version negotiation
  • +
  • Additional commits viewable in compare view
  • +
+
+
+ + +[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.7.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) + +Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. + +[//]: # (dependabot-automerge-start) +[//]: # (dependabot-automerge-end) + +--- + +
+Dependabot commands and options +
+ +You can trigger Dependabot actions by commenting on this PR: +- `@dependabot rebase` will rebase this PR +- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it +- `@dependabot merge` will merge this PR after your CI passes on it +- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it +- `@dependabot cancel merge` will cancel a previously requested merge and block automerging +- `@dependabot reopen` will reopen this PR if it is closed +- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually +- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency +- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) +- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) +You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperledger/fabric-samples/network/alerts). + +
+
+
+ Created At 2023-10-25 08:31:17 +0000 UTC +
+
+
diff --git a/pull-requests/hyperledger/iroha-java.md b/pull-requests/hyperledger/iroha-java.md index e3526e23e..10c0629b5 100644 --- a/pull-requests/hyperledger/iroha-java.md +++ b/pull-requests/hyperledger/iroha-java.md @@ -14,11 +14,11 @@ permalink: /pull-requests/hyperledger/iroha-java
@@ -27,12 +27,12 @@ permalink: /pull-requests/hyperledger/iroha-java
- PR #382 + PR #384 - feature: added new instructions to transfer domain ownerhsip and revoke permissions + Feature: update to rc20
- added new instructions to transfer domain ownerhsip and revoke permissions + Update Sdk to Iroha2 rc20 version
- Created At 2023-10-18 10:14:28 +0000 UTC + Created At 2023-10-25 07:56:01 +0000 UTC
diff --git a/pull-requests/hyperledger/iroha.md b/pull-requests/hyperledger/iroha.md index 150d81bb4..70037933b 100644 --- a/pull-requests/hyperledger/iroha.md +++ b/pull-requests/hyperledger/iroha.md @@ -10,6 +10,65 @@ permalink: /pull-requests/hyperledger/iroha # iroha [GitHub](https://github.com/hyperledger/iroha){: .btn .mr-4 } +
+ + + + + + + + + +
+ PR #4015 + + + [fix] #4014: Use method(not field) access in client + +
+ iroha2 + + ## Description + + + + + +### Linked issue + + + +Closes #4014 + + + +### 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-10-25 09:17:23 +0000 UTC +
+
+
diff --git a/pull-requests/hyperledger/solang.md b/pull-requests/hyperledger/solang.md index f861d3211..70c27b838 100644 --- a/pull-requests/hyperledger/solang.md +++ b/pull-requests/hyperledger/solang.md @@ -125,31 +125,3 @@ There are many fixes all over the code base. -
-
- - - - - - - - -
- PR #1570 - - - Bump anchor and other dependencies - -
- - - Update all the crates which can be updated easily. - - -
-
- Created At 2023-10-18 10:56:51 +0000 UTC -
-
- diff --git a/trending/recent-prs.md b/trending/recent-prs.md index ba9d03b9b..45846caf4 100644 --- a/trending/recent-prs.md +++ b/trending/recent-prs.md @@ -1,13 +1,13 @@ -[6081](https://github.com/hyperledger/besu/pull/6081) Bump 23.10.1-RC to 23.10.1 +[61](https://github.com/hyperledger-labs/harmonia/pull/61) Added EVM signatures as notarisation proof -[4489](https://github.com/hyperledger/fabric/pull/4489) Update docs on checkcommitreadiness with inspect flag +[767](https://github.com/hyperledger-labs/open-enterprise-agent/pull/767) test: add anoncreds issuance happy path bdd scenario -[2562](https://github.com/hyperledger/aries-cloudagent-python/pull/2562) Update demo/playground scripts +[4015](https://github.com/hyperledger/iroha/pull/4015) [fix] #4014: Use method(not field) access in client -[6080](https://github.com/hyperledger/besu/pull/6080) Implement miner_setMinPriorityFee and miner_getMinPriorityFee +[6085](https://github.com/hyperledger/besu/pull/6085) create trielog state for tracing -[1574](https://github.com/hyperledger/solang/pull/1574) Remove balance, transfer, and send from Solana +[1109](https://github.com/hyperledger/fabric-samples/pull/1109) Bump golang.org/x/net from 0.7.0 to 0.17.0 in /high-throughput/application-go [See more >>>](https://start-here.hyperledger.org/pull-requests)