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

Merge upstream 5.2.2beta #190

Merged
merged 1,460 commits into from
Sep 5, 2023

Conversation

a-thomas-22
Copy link
Collaborator

No description provided.

vbaranov and others added 30 commits July 11, 2023 00:26
…ody, use Application.compile_env/3 instead lib/indexer/memory/monitor.ex:17: Indexer.Memory.Monitor
Resolve warning: Application.get_env/2 is discouraged in the module body, use Application.compile_env/3 instead
Bumps [sweetalert2](https://github.com/sweetalert2/sweetalert2) from 11.7.12 to 11.7.16.
- [Release notes](https://github.com/sweetalert2/sweetalert2/releases)
- [Changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md)
- [Commits](sweetalert2/sweetalert2@v11.7.12...v11.7.16)

---
updated-dependencies:
- dependency-name: sweetalert2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.30.1 to 0.30.2.
- [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
- [Commits](elixir-lang/ex_doc@v0.30.1...v0.30.2)

---
updated-dependencies:
- dependency-name: ex_doc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md)
- [Commits](npm/node-semver@v5.7.1...v5.7.2)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
…/explorer/semver-5.7.2

Bump semver from 5.7.1 to 5.7.2 in /apps/explorer
…/block_scout_web/assets/sweetalert2-11.7.16

Bump sweetalert2 from 11.7.12 to 11.7.16 in /apps/block_scout_web/assets
Fix "Elixir.Indexer.Memory.Monitor",{{badkey,limit}
Fix fetching libstdc++ in install_chrome_headless.sh
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.22.7 to 7.22.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.22.9/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [postgrex](https://github.com/elixir-ecto/postgrex) from 0.17.1 to 0.17.2.
- [Release notes](https://github.com/elixir-ecto/postgrex/releases)
- [Changelog](https://github.com/elixir-ecto/postgrex/blob/master/CHANGELOG.md)
- [Commits](elixir-ecto/postgrex@v0.17.1...v0.17.2)

---
updated-dependencies:
- dependency-name: postgrex
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…/block_scout_web/assets/babel/preset-env-7.22.9

Bump @babel/preset-env from 7.22.7 to 7.22.9 in /apps/block_scout_web/assets
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.22.8 to 7.22.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.22.9/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
…/block_scout_web/assets/babel/core-7.22.9

Bump @babel/core from 7.22.8 to 7.22.9 in /apps/block_scout_web/assets
Bumps [wallaby](https://github.com/elixir-wallaby/wallaby) from 0.30.3 to 0.30.4.
- [Release notes](https://github.com/elixir-wallaby/wallaby/releases)
- [Changelog](https://github.com/elixir-wallaby/wallaby/blob/main/CHANGELOG.md)
- [Commits](elixir-wallaby/wallaby@v0.30.3...v0.30.4)

---
updated-dependencies:
- dependency-name: wallaby
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Explicitly set consensus == true in queries (convenient for search)
* Add token balances info to watchlist address response

* Changelog

* Handle nil fiat_value
@@ -141,49 +147,54 @@
const selectionValue = event.detail.selection.value

if (selectionValue.type === 'contract' || selectionValue.type === 'address' || selectionValue.type === 'label') {
window.location = `/address/${selectionValue.address_hash}`
window.location.href = `${commonPath}/address/${selectionValue.address_hash}`

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML Medium

DOM text
is reinterpreted as HTML without escaping meta-characters.
} else if (selectionValue.type === 'token') {
window.location = `/tokens/${selectionValue.address_hash}`
window.location.href = `${commonPath}/tokens/${selectionValue.address_hash}`

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML Medium

DOM text
is reinterpreted as HTML without escaping meta-characters.
} else if (selectionValue.type === 'transaction') {
window.location = `/tx/${selectionValue.tx_hash}`
window.location.href = `${commonPath}/tx/${selectionValue.tx_hash}`

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML Medium

DOM text
is reinterpreted as HTML without escaping meta-characters.
} else if (selectionValue.type === 'block') {
window.location = `/blocks/${selectionValue.block_hash}`
window.location.href = `${commonPath}/blocks/${selectionValue.block_hash}`

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML Medium

DOM text
is reinterpreted as HTML without escaping meta-characters.
@@ -170,7 +176,7 @@
analytics.trackEvent(eventName, eventProperties)

if (value) {
window.location.href = `/search?q=${value}`
window.location.href = `${commonPath}/search?q=${value}`

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML Medium

DOM text
is reinterpreted as HTML without escaping meta-characters.
DOM text
is reinterpreted as HTML without escaping meta-characters.
DOM text
is reinterpreted as HTML without escaping meta-characters.
@a-thomas-22 a-thomas-22 marked this pull request as ready for review August 24, 2023 17:55
Copy link
Contributor

@hkalodner hkalodner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@hkalodner hkalodner merged commit 0e716c8 into OffchainLabs:master Sep 5, 2023
@a-thomas-22 a-thomas-22 deleted the at/merge-upstream-5.2.2beta branch September 5, 2023 13:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants