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

Release v1.1.2 #265

Merged
merged 41 commits into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
f24c7d9
script
treerz May 16, 2019
b461ed3
rename
treerz May 16, 2019
e45e27e
comment
treerz May 16, 2019
d7fb9da
comment
treerz May 16, 2019
22d306e
fix
treerz May 17, 2019
4d7f51b
Merge pull request #227 from Augmint/scripts
szerintedmi May 17, 2019
50b20f8
Scripts (migrate, convert) (#228)
treerz May 22, 2019
d3f164f
margin_loan (#229)
treerz May 22, 2019
3917283
move old sb scripts to archive
treerz May 31, 2019
2468e3c
Merge pull request #233 from Augmint/archive_sb_scripts
treerz May 31, 2019
641c987
Loans with margin calls (#230)
szerintedmi Jun 6, 2019
e5af033
Bump handlebars from 4.1.1 to 4.1.2 (#234)
dependabot[bot] Jun 6, 2019
648406a
Bump fstream from 1.0.11 to 1.0.12 (#232)
dependabot[bot] Jun 6, 2019
c22dcdf
Update truffle-hdwallet-provider to the latest version 🚀 (#231)
greenkeeper[bot] Jun 6, 2019
1a847c8
Update coveralls to the latest version 🚀 (#235)
greenkeeper[bot] Jun 6, 2019
522eb25
SB script dry execution (#237)
szerintedmi Jun 7, 2019
24343d4
Update eslint to the latest version 🚀 (#240)
greenkeeper[bot] Jul 4, 2019
a8a464a
Update ganache-cli to the latest version 🚀 (#238)
greenkeeper[bot] Jul 4, 2019
fd12393
Greenkeeper/truffle hdwallet provider 1.0.13 (#241)
szerintedmi Jul 4, 2019
ddde04e
loan manager improvements (#236)
treerz Aug 9, 2019
24f1b07
margin loanmanager mainnet deploy (#253)
treerz Sep 16, 2019
c705286
sb script: transfer eth from reserve
treerz Sep 26, 2019
fc5df67
Merge pull request #254 from Augmint/sb_script
treerz Sep 27, 2019
9717dde
yarn version to 1.22.4 (#262)
szerintedmi Sep 9, 2020
66c79d3
upgrade to ganache_cli 6.10.2 (#263)
szerintedmi Sep 10, 2020
133cae0
mega truffle upgrade (#264)
szerintedmi Sep 12, 2020
89a51bd
sb script: eth transfer from reserve (#255)
treerz Sep 12, 2020
0fa3344
Truffle to 5.1.44 (#266)
szerintedmi Sep 12, 2020
7ab3825
enable dependabot (#267)
szerintedmi Sep 12, 2020
30c8bf6
Dependabot conf fix (#268)
szerintedmi Sep 12, 2020
c87fb37
Bump stringifier from 2.0.0 to 2.1.0 (#269)
dependabot[bot] Sep 12, 2020
ed967b0
Bump moment from 2.22.2 to 2.27.0 (#270)
dependabot[bot] Sep 13, 2020
31ba141
Bump solidity-coverage from 0.5.11 to 0.7.10 (#271)
dependabot[bot] Sep 13, 2020
895139d
Bump dotenv from 8.0.0 to 8.2.0 (#272)
dependabot[bot] Sep 13, 2020
5a810f2
Bump wait-on from 3.2.0 to 5.2.0 (#273)
dependabot[bot] Sep 13, 2020
6b4475c
Bump truffle-hdwallet-provider from 1.0.13 to 1.0.17 (#274)
dependabot[bot] Sep 13, 2020
c15a077
Bump eslint from 6.0.0 to 7.9.0 (#276)
dependabot[bot] Sep 13, 2020
16782cf
Bump coveralls from 3.0.4 to 3.1.0 (#275)
dependabot[bot] Sep 13, 2020
a4a8157
truffle-hdwallet upgrade & dump babel-register (#277)
szerintedmi Sep 13, 2020
4cd553c
Bump moment from 2.27.0 to 2.28.0 (#278)
dependabot[bot] Sep 14, 2020
8bec0eb
bump package version to 1.1.2 (#279)
szerintedmi Sep 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
open-pull-requests-limit: 20
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist: xenial # https://docs.travis-ci.com/user/reference/xenial/
language: node_js
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22.4
- export PATH="$HOME/.yarn/bin:$PATH"
- export BRANCH="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}"
- yarn global add greenkeeper-lockfile@1
Expand Down Expand Up @@ -32,7 +32,7 @@ after_success:
- echo after_success TRAVIS_BRANCH=$TRAVIS_BRANCH TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST TRAVIS_TAG=$TRAVIS_TAG TRAVIS_PULL_REQUEST_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH TRAVIS_BUILD_NUMBER=$TRAVIS_BUILD_NUMBER TRAVIS_COMMIT=$TRAVIS_COMMIT ;
- |
if [ $TRAVIS_PULL_REQUEST == "false" ]; then
if [ $TRAVIS_BRANCH == "master" ] || [[ $TRAVIS_TAG =~ v([0-9]+)\.([0-9]+)\.([0-9]+) ]]; then
if [ $TRAVIS_BRANCH == "master" ] || [[ $TRAVIS_TAG =~ v([0-9]+)\.([0-9]+)\.([0-9]+)((-|_)\S*)? ]]; then
echo $DOCKER_PASSWORD | docker login --username $DOCKER_USERNAME --password-stdin ;
yarn docker:tag:build ;
if [ ! -z $TRAVIS_TAG ]; then
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM trufflesuite/ganache-cli:v6.4.2
FROM trufflesuite/ganache-cli:v6.10.2
COPY ["localchaindb", "dockerLocalchaindb"]
1 change: 0 additions & 1 deletion abiniser.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"truffleContractFiles": [
"SafeMath.json",
"Migrations.json",
"Rates.json",
"AugmintReserves.json",
Expand Down
Loading