We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The problem:
For instance in the example below:
php-docker-template/src/php/utils/docker/docker-php-ext-rdkafka
Line 9 in 91c2a84
We see that we aren't locking the version pecl is installing, this can lead to bugs and major versions being upgraded without the user's consent.
pecl
A proposed solution would be:
The script should take an argument (.i.e.: $1 or ENV variable) which specifies the version to be installed.
$1
ENV
A bonus is to be able to specify the version semantically, we have to check weather pecl supports it.
The text was updated successfully, but these errors were encountered:
@renatomefi Is this considered a BC? As by your proposal, we'd need to provide a rdkafka version?
rdkafka
Sorry, something went wrong.
Good point, we could start with a flexible version and later see how to break the compatibility
No branches or pull requests
The problem:
For instance in the example below:
php-docker-template/src/php/utils/docker/docker-php-ext-rdkafka
Line 9 in 91c2a84
We see that we aren't locking the version
pecl
is installing, this can lead to bugs and major versions being upgraded without the user's consent.A proposed solution would be:
The script should take an argument (.i.e.:
$1
orENV
variable) which specifies the version to be installed.A bonus is to be able to specify the version semantically, we have to check weather pecl supports it.
The text was updated successfully, but these errors were encountered: