masao's avatar
Level 1

Upgrade v6.2 to v6.20.1

Hello there, I want to upgrade laravel from v6.2 to v6.20.1. But, I would like to know if we do not have to test it before that. This is because I have seen many commits after v6.2. Regards,

0 likes
5 replies
vincent15000's avatar

These are minor upgrades, but each time you upgrade an application, you necessarily need to test that all the functionalities work fine.

That's why it's useful to write tests, so you don't have to test manually.

1 like
tisuchi's avatar

@masao It's not a major change!

Literally, you are updating from 6.2 to 6.20.1. It's minor. So, you don't have to care so much about here. Nothing should break for this change.

So just use this in your composer.json file:

"laravel/framework": "^6.*",

Ref: https://laravel.com/docs/6.x

2 likes

Please or to participate in this conversation.