Π·Π΅ΡΠΊΠ°Π»ΠΎ ΠΈΠ· https://github.com/nextcloud/3rdparty.git
3954aed68e
build(deps): Bump mlocati/ip-lib from 1.18.0 to 1.18.1 |
||
---|---|---|
.github | ||
.patches | ||
aws | ||
bantu/ini-get-wrapper | ||
brick/math | ||
composer | ||
cweagans/composer-patches | ||
deepdiver/zipstreamer | ||
deepdiver1975/tarstreamer | ||
doctrine | ||
egulias/email-validator | ||
fusonic/opengraph | ||
giggsey/libphonenumber-for-php-lite | ||
guzzlehttp | ||
icewind | ||
justinrainbow/json-schema | ||
kornrunner/blurhash | ||
laravel/serializable-closure | ||
lcobucci/clock | ||
masterminds/html5 | ||
mexitek/phpcolors | ||
microsoft | ||
mlocati/ip-lib | ||
mtdowling/jmespath.php | ||
nextcloud/lognormalizer | ||
paragonie/constant_time_encoding | ||
pear | ||
php-http | ||
php-opencloud/openstack | ||
phpseclib/phpseclib | ||
pimple/pimple | ||
psr | ||
punic/punic | ||
ralouphie/getallheaders | ||
sabre | ||
scssphp/scssphp | ||
spomky-labs | ||
stecman/symfony-console-completion | ||
symfony | ||
wapmorgan/mp3info | ||
web-auth | ||
.gitignore | ||
LICENSE INFO | ||
README.md | ||
autoload.php | ||
composer.json | ||
composer.lock | ||
composer.patches.json |
README.md
3rdparty
Some 3rd party libraries that are necessary to run Nextcloud.
Updating libraries manually
- Make sure to use the latest version of composer:
composer self-update
- Edit composer.json and adjust the version of the library to the one to update to. Pay attention to use the full version number (i.e. ^5.3.14).
- Run
composer update thevendor/thelib
(replace accordingly) - Delete all installed dependencies with
rm -rf ./*/
- Run
composer install --no-dev
- Run
git clean -X -d -f
- Run
composer dump-autoload
- Commit all changes onto a new branch
- You might need the following command for pushing if used as submodule:
git push git@github.com:nextcloud/3rdparty.git branchname
Testing your PR with server
- On https://github.com/nextcloud/server make a new branch
3rdparty/my-dependency
- Navigate into the 3rdparty directory
- Checkout the commit sha of the last commit of your PR in the 3rdparty repository
- Leave the directory
- Add the change to the stash
- Commit (with sign-off and message)
- Push the branch and send a PR
- β³ Wait for CI and reviews
- Navigate into the 3rdparty directory
- Checkout the commit sha of the merge commit of your PR in the 3rdparty repository
- Leave the directory
- Add the change to the stash
- Amend to the previous dependency bump
- Push with lease force
- β³ Wait for CI
- Merge π
cd 3rdparty
git checkout 16cd747ebb8ab4d746193416aa2448c8114d5084
cd ..
git add 3rdparty
git commit
git push origin 3rdparty/my-dependency
# Wait for CI and reviews
cd 3rdparty
git checkout 54b63cc87af3ddb0ddfa331f20ecba5fcc01d495
cd ..
git add 3rdparty
git commit --amend
git push --force-with-lease origin 3rdparty/my-dependency