Merge pull request #5063 from blockscout/vb-npm-audit

NPM audit
pull/5071/head
Victor Baranov 3 years ago committed by GitHub
commit bed9b1d862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 4
      apps/block_scout_web/assets/__tests__/lib/async_listing_load.js
  3. 4
      apps/block_scout_web/assets/__tests__/lib/currency.js
  4. 4
      apps/block_scout_web/assets/__tests__/lib/smart_contract/common_helpers.js
  5. 4
      apps/block_scout_web/assets/__tests__/pages/address.js
  6. 4
      apps/block_scout_web/assets/__tests__/pages/address/internal_transactions.js
  7. 4
      apps/block_scout_web/assets/__tests__/pages/address/transactions.js
  8. 4
      apps/block_scout_web/assets/__tests__/pages/address/validations.js
  9. 4
      apps/block_scout_web/assets/__tests__/pages/blocks.js
  10. 4
      apps/block_scout_web/assets/__tests__/pages/chain.js
  11. 4
      apps/block_scout_web/assets/__tests__/pages/pending_transactions.js
  12. 4
      apps/block_scout_web/assets/__tests__/pages/transaction.js
  13. 4
      apps/block_scout_web/assets/__tests__/pages/transactions.js
  14. 9162
      apps/block_scout_web/assets/package-lock.json
  15. 6
      apps/block_scout_web/assets/package.json

@ -8,6 +8,7 @@
- [#5051](https://github.com/blockscout/blockscout/pull/5051) - Fix 500 response when ABI method was parsed as nil
### Chore
- [#5063](https://github.com/blockscout/blockscout/pull/5063) - Resolve moderate NPM vulnerabilities with npm audit tool
- [#5053](https://github.com/blockscout/blockscout/pull/5053) - Update ex_keccak lib

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { asyncReducer, asyncInitialState } from '../../js/lib/async_listing_load'
describe('ELEMENTS_LOAD', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { formatUsdValue } from '../../js/lib/currency'
test('formatUsdValue', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { prepareMethodArgs } from '../../../js/lib/smart_contract/common_helpers'
import $ from 'jquery'

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../js/pages/address'
describe('RECEIVED_NEW_BLOCK', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../../js/pages/address/internal_transactions'
describe('RECEIVED_NEW_INTERNAL_TRANSACTION_BATCH', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../../js/pages/address/transactions'
describe('RECEIVED_NEW_TRANSACTION', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../../js/pages/address/validations'
describe('RECEIVED_NEW_BLOCK', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { blockReducer as reducer, initialState, placeHolderBlock } from '../../js/pages/blocks'
test('CHANNEL_DISCONNECTED', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState, placeHolderBlock } from '../../js/pages/chain'
describe('ELEMENTS_LOAD', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../js/pages/pending_transactions'
test('CHANNEL_DISCONNECTED', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../js/pages/transaction'
test('RECEIVED_NEW_BLOCK', () => {

@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/
import { reducer, initialState } from '../../js/pages/transactions'
test('CHANNEL_DISCONNECTED', () => {

File diff suppressed because it is too large Load Diff

@ -21,7 +21,7 @@
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@tarekraafat/autocomplete.js": "^10.2.6",
"@walletconnect/web3-provider": "^1.6.6",
"@walletconnect/web3-provider": "^1.0.8",
"assert": "^2.0.0",
"bignumber.js": "^9.0.0",
"bootstrap": "^4.6.0",
@ -75,9 +75,9 @@
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"jest": "^25.1.0",
"jest": "^27.4.7",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^6.0.0",
"node-sass": "^7.0.1",
"postcss": "^8.3.5",
"postcss-loader": "^4.3.0",
"sass-loader": "^12.3.0",

Loading…
Cancel
Save