Suppose we are doing updates on any dependent bundles of this project.
let's say https://github.com/uvdesk/core-framework the updates we are doing currently it will be in master branch only.
You can update your this dependent bundle under your project by two way.
1. Delete your core-framework which is under vendor/uvdesk and clone a latest updated core-framework using command at the same place(under vendor/uvdesk)
git clone https://github.com/uvdesk/core-framework
you will see a same core-framework cloned using above command and now this bundle is updated.
2. you need to wait for a new release of core-framework (https://github.com/uvdesk/core-framework) once it is done.
you just need to run a command and you will get a latest release of core-framework .
composer update uvdesk/core-framework
Above procedure is for release up to 1.0.12 after this we will try you don't need to do such effort.
You just need to run
composer update
And all the latest release packages will add into your project.