-
-
Notifications
You must be signed in to change notification settings - Fork 191
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
Enforce no BC breaks against v1.5.0 #179
base: 2.0.x
Are you sure you want to change the base?
Conversation
Looks like it cannot be done because the lib requires php 7.2 and this package is supposed to be compatible with 7.1 |
Can bump the PHP version, if needed for |
I like the idea! Regarding your first sentence, did you mean UPDATE: 1.6.0 was released when I was typing the sentence above, I understand now :) |
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.
Bumping library requirement to PHP ^7.2 just to satisfy a dev-dependency sounds like a bit too much IMO. We should seek other solution.
- stage: Backwards Compatibility | ||
env: STATIC_ANALYSIS | ||
install: travis_retry composer install --prefer-dist | ||
script: vendor/bin/roave-backward-compatibility-check --from=v1.5.0 |
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.
Hardcoding tag name here is not a good idea, can we use some kind of wildcard, like latest 1.x tag?
I agree with not bumping requirement because of dev dependency |
Possibly a good idea for branches in
1.x
, not to be merged intomaster
? Just throwing it out there: this would prevent most feedback along the lines of "we can't do that because BC" from human-to-human, which is frustrating.