Skip to content

Commit

Permalink
chore(releng) bump version to 8.0.6-beta-RC.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roxaneletourneau committed Mar 5, 2021
1 parent 7dc4bbf commit c75d40c
Show file tree
Hide file tree
Showing 48 changed files with 61,804 additions and 136,233 deletions.
801 changes: 10 additions & 791 deletions example/package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@taquito/example",
"private": true,
"version": "8.0.5-preview.0",
"version": "8.0.6-beta-RC.0",
"scripts": {
"example:at": "node -r ts-node/register --preserve-symlinks contract-schema.ts",
"example:origination": "node -r ts-node/register --preserve-symlinks contract-origination.ts",
Expand All @@ -16,10 +16,10 @@
},
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^5.43.0",
"@taquito/ledger-signer": "^8.0.5-preview.0",
"@taquito/michel-codec": "^8.0.5-preview.0",
"@taquito/signer": "^8.0.5-preview.0",
"@taquito/taquito": "^8.0.5-preview.0"
"@taquito/ledger-signer": "^8.0.6-beta-RC.0",
"@taquito/michel-codec": "^8.0.6-beta-RC.0",
"@taquito/signer": "^8.0.6-beta-RC.0",
"@taquito/taquito": "^8.0.6-beta-RC.0"
},
"devDependencies": {
"ts-node": "^9.1.1"
Expand Down
19 changes: 19 additions & 0 deletions integration-tests/fail.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Forging mismatch:
multisig-wallet-scenario.spec.ts
multisig-contract-scenario.spec.ts
wallet-batch.spec.ts
contract-batch.spec.ts
manager-contract-scenario.spec.ts
batch-api.spec.ts
manager-wallet-scenario.spec.ts
lambda-view.spec.ts
local-forging.spec.ts:
Expected: "a99b946c97ada0f42c1bdeae0383db7893351232a832d00d0cd716eb6f66e5616c0035e993d8c7aaa42b5e3ccd86a33390ececc73abd904e010a0ae80701609b26857d9053ecda49f13369a3c8908abc30ef00ff0500000018070707070a000000020202008a03010000000568656c6c6f"
Received: "a99b946c97ada0f42c1bdeae0383db7893351232a832d00d0cd716eb6f66e5616c0035e993d8c7aaa42b5e3ccd86a33390ececc73abd904e010a0ae80701609b26857d9053ecda49f13369a3c8908abc30ef00ffff046d61696e00000018070707070a000000020202008a03010000000568656c6c6f"


RPC error with delegation:
contract-set-delegate-auto-estimate.spec.ts Invalid public key hash
wallet-set-delegate-auto-estimate.spec.ts Invalid public key hash
contract-simple-delegation.spec.ts "Invalid public key hash"

7 changes: 7 additions & 0 deletions integration-tests/jest-stare/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions integration-tests/jest-stare/css/diff2html.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

207 changes: 207 additions & 0 deletions integration-tests/jest-stare/css/jest-stare.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px; /* Vertically center the text there */
background-color: #f5f5f5;
}

body > .container {
padding: 60px 15px 0;
}

.footer > .container {
padding-right: 15px;
padding-left: 15px;
}

code {
font-size: 80%;
}

.text-white-50 { color: rgba(255, 255, 255, .5); }

.bg-green { background-color: var(--green); }

.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.overflow-auto { overflow: auto; /* Fixes long line breaking flow */ }

.lh-100 { line-height: 1; }
.lh-125 { line-height: 1.25; }
.lh-150 { line-height: 1.5; }

.onoff-switch {
position: relative; width: 120px;
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoff-switch-label {
display: block; overflow: hidden; cursor: pointer;
border: 2px solid #999999; border-radius: 20px;
}

/* need to reuse more of this */
.off-switch-checkbox {
display: none;
}
.off-switch-inner {
display: block; width: 200%; margin-left: -100%;
transition: margin 0.3s ease-in 0s;
}
.off-switch-inner:before, .off-switch-inner:after {
display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
box-sizing: border-box;
}

.off-switch-switch {
display: block; width: 18px; margin: 6px;
background: #FFFFFF;
position: absolute; top: 0; bottom: 0;
right: 86px;
border: 2px solid #999999; border-radius: 20px;
transition: all 0.3s ease-in 0s;
}
.off-switch-checkbox:checked + .onoff-switch-label .off-switch-inner {
margin-left: 0;
}
.off-switch-checkbox:checked + .onoff-switch-label .off-switch-switch {
right: 0px;
}

.pass.off-switch-inner:before {
content: "PASS";
padding-left: 10px;
background-color: #28a745; color: #FFFFFF;
}
.pass.off-switch-inner:after {
content: "PASS";
padding-right: 10px;
background-color: #EEEEEE; color: #999999;
text-align: right;
}
.fail.off-switch-inner:before {
content: "FAIL";
padding-left: 10px;
background-color: #dc3545; color: #FFFFFF;
}
.fail.off-switch-inner:after {
content: "FAIL";
padding-right: 10px;
background-color: #EEEEEE; color: #999999;
text-align: right;
}

.pending.off-switch-inner:before {
content: "PENDING";
padding-left: 10px;
background-color: #ffc107; color: #FFFFFF;
}
.pending.off-switch-inner:after {
content: "PENDING";
padding-right: 10px;
background-color: #EEEEEE; color: #999999;
text-align: right;
}

.todo.off-switch-inner:before {
content: "TODO";
padding-left: 10px;
background-color: #17a2b8; color: #FFFFFF;
}
.todo.off-switch-inner:after {
content: "TODO";
padding-right: 10px;
background-color: #EEEEEE; color: #999999;
text-align: right;
}

.summary a {

}

.summary a:link {
color: black;
}

/* visited link */
.summary a:visited {
color: black;
}

/* mouse over link */
.summary a:hover {
color: black;
}

/* selected link */
.summary a:active {
color: black;
}

.summary-test-suite {
margin-top: 10px;
}
.summary-test-count {
display: inline-block;
width: 8%;
text-align: right;
}

.summary-test-label {
display: inline-block;
width: 8%;
}

.summary-test-label.test{
text-align: right;
margin: 0 10px 0 0;
}

.summary-test-label.path{
align-self: left;
width: 74%;
display: inline-block;
}

.summary-test-label.pass {
color: #28a745;
}

.summary-test-label.fail {
color: #dc3545;
}

.summary-test-label.pending {
color: #ffc107;
}

.summary-test-label.todo {
color: #17a2b8;
}

.image-snapshot-diff {
border: 1px solid #ddd;
background-color: #f7f7f7;
padding: 5px 10px;
}
.image-snapshot-diff span {
display: block;
margin-bottom: 10px;
font-size: 15px;
}

.image-snapshot-diff img {
max-width: 100%;
max-height: 300px;
}
Loading

0 comments on commit c75d40c

Please sign in to comment.