-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade typeorm to 0.2.45 (#2680)
- Loading branch information
1 parent
ac9afe2
commit 0789169
Showing
3 changed files
with
67 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import Emitter from 'events' | ||
import { flushPromises } from '../test-utils' | ||
|
||
const stubbedEmitter = jest.fn() | ||
const stubbedEmitter = jest.fn(() => { | ||
const SyncAPIController = jest.requireActual('../../src/controllers/sync-api').default | ||
return SyncAPIController.emiter | ||
}) | ||
const stubbedSyncedBlockNumber = jest.fn() | ||
const stubbedSyncStateSubjectNext = jest.fn() | ||
const stubbedGetSyncState = jest.fn() | ||
|
@@ -66,9 +69,6 @@ describe('SyncApiController', () => { | |
|
||
jest.doMock('services/indexer', () => ({ LISTEN_URI: 'stub_listen_uri' })) | ||
|
||
jest.doMock('events', () => { | ||
return stubbedEmitter | ||
}) | ||
jest.doMock('models/synced-block-number', () => { | ||
return stubbedSyncedBlockNumber | ||
}) | ||
|
@@ -114,6 +114,8 @@ describe('SyncApiController', () => { | |
|
||
emitter.removeAllListeners() | ||
const SyncAPIController = require('../../src/controllers/sync-api').default | ||
// TODO: starting from [email protected] or above, you can use `jest.replaceProperty` as an alternative implementation. | ||
Object.defineProperty(SyncAPIController, 'emiter', { get: stubbedEmitter }) | ||
controller = new SyncAPIController() | ||
controller.mount() | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3559,6 +3559,11 @@ | |
dependencies: | ||
"@sinonjs/commons" "^1.7.0" | ||
|
||
"@sqltools/formatter@^1.2.2": | ||
version "1.2.5" | ||
resolved "https://registry.yarnpkg.com/@sqltools/formatter/-/formatter-1.2.5.tgz#3abc203c79b8c3e90fd6c156a0c62d5403520e12" | ||
integrity sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw== | ||
|
||
"@storybook/[email protected]": | ||
version "5.3.18" | ||
resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.3.18.tgz#e3e3b1475cebc9bdd2d563822fba9ac662b2601a" | ||
|
@@ -5455,6 +5460,11 @@ | |
dependencies: | ||
"@types/node" "*" | ||
|
||
"@types/[email protected]": | ||
version "0.8.3" | ||
resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.3.tgz#781d360c282436494b32fe7d9f7f8e64b3118aa3" | ||
integrity sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw== | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "5.58.0" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.58.0.tgz#b1d4b0ad20243269d020ef9bbb036a40b0849829" | ||
|
@@ -8308,7 +8318,7 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" | ||
integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== | ||
|
||
chalk@^1.1.1, chalk@^1.1.3: | ||
chalk@^1.1.3: | ||
version "1.1.3" | ||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" | ||
integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== | ||
|
@@ -8525,7 +8535,7 @@ cli-cursor@^2.1.0: | |
dependencies: | ||
restore-cursor "^2.0.0" | ||
|
||
cli-highlight@^2.0.0: | ||
cli-highlight@^2.1.11: | ||
version "2.1.11" | ||
resolved "https://registry.yarnpkg.com/cli-highlight/-/cli-highlight-2.1.11.tgz#49736fa452f0aaf4fae580e30acb26828d2dc1bf" | ||
integrity sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg== | ||
|
@@ -10172,7 +10182,7 @@ dotenv-webpack@^1.7.0: | |
dependencies: | ||
dotenv-defaults "^1.0.2" | ||
|
||
[email protected], dotenv@^8.0.0: | ||
[email protected], dotenv@^8.0.0, dotenv@^8.2.0: | ||
version "8.6.0" | ||
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" | ||
integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== | ||
|
@@ -11441,11 +11451,6 @@ figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: | |
resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" | ||
integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== | ||
|
||
figlet@^1.1.1: | ||
version "1.5.2" | ||
resolved "https://registry.yarnpkg.com/figlet/-/figlet-1.5.2.tgz#dda34ff233c9a48e36fcff6741aeb5bafe49b634" | ||
integrity sha512-WOn21V8AhyE1QqVfPIVxe3tupJacq1xGkPTB4iagT6o+P2cAgEOOwIxMftr4+ZCTI6d551ij9j61DFr0nsP2uQ== | ||
|
||
[email protected], figures@^3.0.0: | ||
version "3.2.0" | ||
resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" | ||
|
@@ -14728,7 +14733,7 @@ js-xxhash@^1.0.4: | |
resolved "https://registry.yarnpkg.com/js-xxhash/-/js-xxhash-1.0.4.tgz#ce465d8a5c038167a07aa35a855c0bd792fe8e06" | ||
integrity sha512-S/6Oo7ruxx5k8m4qlMnbpwQdJjRsvvfcIhIk1dA9c5y5GNhYHKYKu9krEK3QgBax6CxJuf4gRL2opgLkdzWIKg== | ||
|
||
[email protected], js-yaml@^4.1.0: | ||
[email protected], js-yaml@^4.0.0, js-yaml@^4.1.0: | ||
version "4.1.0" | ||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" | ||
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== | ||
|
@@ -17552,11 +17557,6 @@ parent-module@^1.0.0: | |
dependencies: | ||
callsites "^3.0.0" | ||
|
||
parent-require@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/parent-require/-/parent-require-1.0.0.tgz#746a167638083a860b0eef6732cb27ed46c32977" | ||
integrity sha512-2MXDNZC4aXdkkap+rBBMv0lUsfJqvX5/2FiYYnfCnorZt3Pk06/IOR5KeaoghgS2w07MLWgjbsnyaq6PdHn2LQ== | ||
|
||
parse-asn1@^5.0.0, parse-asn1@^5.1.5: | ||
version "5.1.6" | ||
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" | ||
|
@@ -22184,26 +22184,28 @@ typedarray@^0.0.6: | |
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" | ||
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== | ||
|
||
[email protected].25: | ||
version "0.2.25" | ||
resolved "https://registry.yarnpkg.com/typeorm/-/typeorm-0.2.25.tgz#1a33513b375b78cc7740d2405202208b918d7dde" | ||
integrity sha512-yzQ995fyDy5wolSLK9cmjUNcmQdixaeEm2TnXB5HN++uKbs9TiR6Y7eYAHpDlAE8s9J1uniDBgytecCZVFergQ== | ||
[email protected].45: | ||
version "0.2.45" | ||
resolved "https://registry.yarnpkg.com/typeorm/-/typeorm-0.2.45.tgz#e5bbb3af822dc4646bad96cfa48cd22fa4687cea" | ||
integrity sha512-c0rCO8VMJ3ER7JQ73xfk0zDnVv0WDjpsP6Q1m6CVKul7DB9iVdWLRjPzc8v2eaeBuomsbZ2+gTaYr8k1gm3bYA== | ||
dependencies: | ||
"@sqltools/formatter" "^1.2.2" | ||
app-root-path "^3.0.0" | ||
buffer "^5.1.0" | ||
chalk "^2.4.2" | ||
cli-highlight "^2.0.0" | ||
debug "^4.1.1" | ||
dotenv "^6.2.0" | ||
glob "^7.1.2" | ||
js-yaml "^3.13.1" | ||
mkdirp "^1.0.3" | ||
buffer "^6.0.3" | ||
chalk "^4.1.0" | ||
cli-highlight "^2.1.11" | ||
debug "^4.3.1" | ||
dotenv "^8.2.0" | ||
glob "^7.1.6" | ||
js-yaml "^4.0.0" | ||
mkdirp "^1.0.4" | ||
reflect-metadata "^0.1.13" | ||
sha.js "^2.4.11" | ||
tslib "^1.9.0" | ||
xml2js "^0.4.17" | ||
yargonaut "^1.1.2" | ||
yargs "^13.2.1" | ||
tslib "^2.1.0" | ||
uuid "^8.3.2" | ||
xml2js "^0.4.23" | ||
yargs "^17.0.1" | ||
zen-observable-ts "^1.0.0" | ||
|
||
[email protected]: | ||
version "5.0.4" | ||
|
@@ -23462,7 +23464,7 @@ xml-name-validator@^3.0.0: | |
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" | ||
integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== | ||
|
||
xml2js@^0.4.17: | ||
xml2js@^0.4.23: | ||
version "0.4.23" | ||
resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" | ||
integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== | ||
|
@@ -23530,15 +23532,6 @@ yaml@^2.2.1: | |
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4" | ||
integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw== | ||
|
||
yargonaut@^1.1.2: | ||
version "1.1.4" | ||
resolved "https://registry.yarnpkg.com/yargonaut/-/yargonaut-1.1.4.tgz#c64f56432c7465271221f53f5cc517890c3d6e0c" | ||
integrity sha512-rHgFmbgXAAzl+1nngqOcwEljqHGG9uUZoPjsdZEs1w5JW9RXYzrSvH/u70C1JE5qFi0qjsdhnUX/dJRpWqitSA== | ||
dependencies: | ||
chalk "^1.1.1" | ||
figlet "^1.1.1" | ||
parent-require "^1.0.0" | ||
|
||
[email protected]: | ||
version "20.2.4" | ||
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" | ||
|
@@ -23562,7 +23555,7 @@ yargs-parser@^13.1.2: | |
camelcase "^5.0.0" | ||
decamelize "^1.2.0" | ||
|
||
yargs@^13.2.1, yargs@^13.2.2: | ||
yargs@^13.2.2: | ||
version "13.3.2" | ||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" | ||
integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== | ||
|
@@ -23591,6 +23584,19 @@ yargs@^16.0.0, yargs@^16.2.0: | |
y18n "^5.0.5" | ||
yargs-parser "^20.2.2" | ||
|
||
yargs@^17.0.1: | ||
version "17.7.2" | ||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" | ||
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== | ||
dependencies: | ||
cliui "^8.0.1" | ||
escalade "^3.1.1" | ||
get-caller-file "^2.0.5" | ||
require-directory "^2.1.1" | ||
string-width "^4.2.3" | ||
y18n "^5.0.5" | ||
yargs-parser "^21.1.1" | ||
|
||
yargs@^17.5.1, yargs@^17.6.2, yargs@^17.7.1: | ||
version "17.7.1" | ||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" | ||
|
@@ -23617,6 +23623,19 @@ yocto-queue@^0.1.0: | |
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" | ||
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== | ||
|
||
zen-observable-ts@^1.0.0: | ||
version "1.1.0" | ||
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.1.0.tgz#2d1aa9d79b87058e9b75698b92791c1838551f83" | ||
integrity sha512-1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA== | ||
dependencies: | ||
"@types/zen-observable" "0.8.3" | ||
zen-observable "0.8.15" | ||
|
||
[email protected]: | ||
version "0.8.15" | ||
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" | ||
integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ== | ||
|
||
zip-stream@^4.1.0: | ||
version "4.1.0" | ||
resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz#51dd326571544e36aa3f756430b313576dc8fc79" | ||
|
0789169
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Packaging for test is done in 5054962118