Skip to content
This repository has been archived by the owner on Feb 7, 2018. It is now read-only.

An in-range update of zeppelin-solidity is breaking the build 🚨 #6

Open
greenkeeper bot opened this issue May 29, 2017 · 6 comments
Open

An in-range update of zeppelin-solidity is breaking the build 🚨 #6

greenkeeper bot opened this issue May 29, 2017 · 6 comments

Comments

@greenkeeper
Copy link

greenkeeper bot commented May 29, 2017

Version 1.0.6 of zeppelin-solidity just got published.

Branch Build failing 🚨
Dependency zeppelin-solidity
Current Version 1.0.5
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

zeppelin-solidity is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 45 commits.

  • e1eed25 v1.0.6
  • 2bcb54b Merge pull request #231 from maraoz/fix-vested-token
  • 7100e30 Implement VestedToken bug mitigation #3
  • 7f6921e Merge pull request #222 from aragon/refactor
  • 73ec224 Merge pull request #2 from maraoz/aragon-refactor
  • a62621e merge @izqui PR with new docs changes
  • 84843d4 Merge pull request #225 from DavidKnott/fix-natspec-typos
  • d08185f Edit natspec documentation typos
  • efe0957 Merge pull request #210 from maurelian/master
  • c4796bb Fix comments again
  • 111f13f Add doc comments to multisig wallet
  • d357cf3 Minor changes to doc comments for token and other contracts
  • 83f2849 Minor edits to doc commenst in lifecycle, ownership, payment contracts.
  • d85be4a Add natspec to vestedToken.sol
  • f6f9129 Add natspec to all remaing contracts, except for vestedToken.sol

There are 45 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 9, 2017

Version 1.0.7 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Commits

The new version differs by 8 commits.

  • 7b9c142 v1.0.7
  • d53ddd4 Merge pull request #242 from DavidKnott/upgrade-truffle-and-solidity
  • 6ede3d9 Upgrade to Truffle version 3.2.2 and Solidity version 0.4.11
  • c3cb0dc Merge pull request #238 from DaveAppleton/master
  • f214dcc removed redundant returns
  • c0cce27 remove redundant return
  • 2eded7a Merge pull request #237 from maraoz/coveralls
  • 41a6f1c add coveralls

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 2, 2017

Version 1.1.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Commits

The new version differs by 48 commits.

  • 7434b3d v1.1.0
  • 63b5fc5 Merge pull request #290 from frangio/fix/safemath-references
  • f507a0e fix references to SafeMath in crowdsale contracts
  • d5a7536 Merge pull request #288 from frangio/refactor/math
  • e748c3e Merge pull request #283 from OpenZeppelin/crowdsale
  • 421ed4f fix references to max and min functions
  • 0b1f080 change Math to a library instead of a contract
  • 759f8de fix import directories
  • 96b550b Merge pull request #287 from jakub-wojciechowski/test/day-limit
  • b961eea fix claimRefund precondition
  • d2dd6e4 added new test for a day passed scenario to the DayLimit contract
  • 070bcbc rename purchaseValid to validPurchase
  • 46fe7ee guard against beneficiary == 0x0
  • ba383a6 refactor max and min out of SafeMath
  • a66f5f8 format SafeMath documentation as NatSpec

There are 48 commits in total.

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 18, 2017

Version 1.2.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Commits

The new version differs by 80 commits.

  • e2fdf09 v1.2.0
  • 4f44427 Added function helper, few changes on ECRecover lib
  • f8c0fab Fixed tests and few changes on contract comments
  • 478d1b1 Removed safeRecover, using ecrecover method instead, recovering signature from entire hash
  • a68eaa4 Added NatSpec documentation on ECRecovery contract
  • 68c2bcb Removed .only on ECRecovery tests
  • 635c043 Removed ECRecovery mock contract, ECRecovery funcions are public constants
  • 227c7aa added check to ret boolean on ECRecovery
  • 641b751 Fix ECRecovery contract indentation
  • 4201d50 ECRecovery library added with test and docs
  • b05fb9c Update ownable.rst
  • 4f34d41 Fixing typo.
  • 91fc295 Updated reference to Ownable contract.
  • 67d3a75 leave weiAmount after PR comments
  • 950b6a5 sanity check for RefundableCrowdsale: goal > 0

There are 80 commits in total.

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 21, 2017

Version 1.3.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes v1.3.0

After a long wait, we're finally releasing version 1.3.0 of OpenZeppelin. This is a big release with a lot of small fixes, exciting new features, and enhancements to the developer experience.

This release includes commits from 29 contributors! Huge thanks to all of you! 🎉 🎉

Changelog

  • Removed MultisigWallet in favor of gnosis/MultiSigWallet. (#328)
  • Added a directory with examples. (#333, #342)
  • Migrated the crowdsale contracts to timestamps instead of block numbers. (#350)
  • Removed the call to finishMinting in FinalizableCrowdsale. (#364)
  • Made approve pausable in PausableToken. (#448)
  • Added an OwnershipTransferred event. (#424)
  • Added the BurnableToken contract. (#341)
  • Added the CanReclaimToken contract. (#348)
  • Added the SafeERC20 library for interaction with ERC20 tokens. (#413)
  • Added the MerkleProof library for merkle proof verification. (#260)
  • Fixed some small issues in ERC20 compliance. (#345, #405, #446)
  • Fixed a bug in transferFrom. (#377)
  • Fixed transferOwnership to revert on failure instead of silently failing. (#323)
  • Fixed a bug in TokenTimelock. (#430)
  • Several enhancements to tests and documentation.
  • Parallelized coverage and tests in Travis for faster test results in PRs. (#369)
  • Removed the only production dependency (was actually a dev dependency). Now installing via npm install --only=prod zeppelin-solidity should install zero extra dependencies! (#357)
Commits

The new version differs by 257 commits.

  • 725ed40 v1.3.0
  • 1df75a9 Merge pull request #446 from jakub-wojciechowski/master
  • adfd8fb Warning in approve method documentation.
  • 98f672b Make approve method compliant with ERC20
  • e906885 Merge pull request #448 from SylTi/fix/small-fixes
  • 1203a24 add whenNotPaused modifier to all of PausableToken functions that modify it's state. Fix #401
  • 4a1ff91 replace var by uint256 in StandardToken. Fix #432
  • 83918ca change approve() to conform to ERC20. Fix #438
  • d3c5ce2 Merge pull request #260 from yondonfu/feature/merkleproof
  • f60c5ad Merge pull request #445 from frangio/fix-leftover-testrpc
  • bcda5bf Merge branch 'master' into feature/merkleproof
  • 33eb8b1 Merge pull request #457 from sot528/fix-typo
  • b069827 fix typo.
  • 74e416f Merge pull request #450 from dmx374/master
  • b395b06 Explicit public visibility on methods

There are 250 commits in total.

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 23, 2017

Version 1.4.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes v1.4.0

Thanks to all members of the community that contributed to this release! 🎉 🚀

Changelog

  • 🆕 Added TokenVesting which implements vesting of tokens. It replaces the old VestedToken with a more modular approach. (#476)
  • 🆕 Added SplitPayment which implements distributing payments to multiple people proportionally to shares. (#417)
  • 🆕 Added DetailedERC20 which adds to a token state variables with the optional ERC20 metadata. (#477)
  • 🆕 Added CappedToken which is a MintableToken with capped supply. (#515)
  • Made MintableToken's finishMinting executable only once. (#505)
  • Upgraded to Truffle 4.0.1 and Solidity 0.4.18. (#573, #460, #576, #506)
  • Removed deprecated claim() from TokenTimelock. (#469)

And some additional changes to code style, tests, documentation and continuous integration.

Commits

The new version differs by 375 commits.

  • b7e7c76 v1.4.0
  • 9e1da49 sync yarn.lock with package-lock.json
  • c29dd08 Update to testrpc 6.0.1 and test fixes for revert opcode.
  • b9cbea1 Merge pull request #576 from ajsantander/master
  • b254b74 Merge pull request #577 from redsquirrel/patch-1
  • bb1736e Change visibility of fallbacks to external
  • 1134983 Minor formatting change
  • c6e0edb Remove solidity warnings in tests
  • b503918 Changes to remove warnings
  • 0bcf0a2 Merge pull request #573 from ajsantander/master
  • 0eaa5f5 Disable solidity-coverage
  • ce86029 Update solidity version on test helpers
  • 815d9e1 Replace constant with view/pure
  • e621376 Update all solidity versions to 0.4.18
  • f28c245 Update to truffle 4.0.0

There are 250 commits in total.

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 22, 2017

Version 1.5.0 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version 🚀

Release Notes v1.5.0

A small release this time to keep the release cycle going! 🚀

Changelog

  • 🆕 Added RBAC to enable more complex access control patterns. (#580)
  • Several enhancements to project quality. (#581)
  • And a few small changes. 🙂
Commits

The new version differs by 417 commits.

  • 4073cf6 v1.5.0
  • 4ce0e21 Merge pull request #604 from elopio/tests/fix-ReentrancyGuard
  • 9af6ad5 Merge pull request #610 from TalAter/master
  • 2f336f7 Merge pull request #614 from him2him2/master
  • 5751eac Merge pull request #617 from spalladino/feature/reenable-coverage
  • cda518d Merge pull request #624 from AugustoL/change-uint-tokentimelock
  • f446f5c Use uint256 in TokenTimeLock contract
  • 1455a5a Re-enable solidity coverage
  • 207b92f Merge pull request #602 from nemild/patch-1
  • b217ef6 Update HTTP -> HTTPS
  • 687dc19 Documented increaseApproval() and decreaseApproval()
  • 161f25f Made spelling for 'reentrant' consistent in comment
  • 4bb26c3 test: fix the mocks path in ReentrancyGuard test
  • d91f4d4 Consistent spellings of reentrant
  • ddcae62 Merge pull request #600 from izetex/fix/burnable-token-inheritance

There are 250 commits in total.

See the full diff

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

0 participants