Skip to content
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

Add a create a version branch doc #275

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
title: Create a new version branch
weight: 20
aliases:
- /maintainers-guide/releasing-prestashop/create-version-branch/
---

# Create a new branch for a new major/minor version.


## 1) Create the new branch and push it to the main repo

## 2) Open PRs based on the new branch and modify those files :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## 2) Open PRs based on the new branch and modify those files :
## 2) Open PRs based on the new branch and modify those files:


There are multiples repo to update.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
There are multiples repo to update.
To create the new branch, we need to update several repositories to complete the necessary work.


We'll list the file we modified for the creation of the 9.0.x branch.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
We'll list the file we modified for the creation of the 9.0.x branch.
Below is a list of repositories with modified files for creating the `9.0.x` branch.


Changed files :
Comment on lines +18 to +19
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Changed files :


PrestaShop/PrestaShop :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/PrestaShop :
`PrestaShop/PrestaShop`:


- .github/workflows/cron_js_routing.yml
- .github/workflows/cron_nightly_build.yml
- .github/workflows/cron_nightly_tests_9.0.x_mariadb.yml ( created )
- .github/workflows/cron_nightly_tests_9.0.x_mysql.yml ( created )
- .github/workflows/cron_nightly_tests_reports.yml
- .github/workflows/cron_nightly_tests_reusable.yml
- .github/workflows/cron_php_update_modules.yml
- .github/PULL_REQUEST_TEMPLATE.md

PrestaShop/test-scenarios :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/test-scenarios :
`PrestaShop/test-scenarios`:


- .github/workflows/gh-pages.yml
- config.json

PrestaShop/presthubot :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/presthubot :
`PrestaShop/presthubot`:


- src/App/Command/SlackNotifierCommand.php


PrestaShop/prestashop.github.io : ( no PR needed this time )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/prestashop.github.io : ( no PR needed this time )
`PrestaShop/prestashop.github.io`: (you can commit the changes directly, no need to create a pull request)


- data/tags.yml ( check if already updated )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- data/tags.yml ( check if already updated )
- data/tags.yml (make sure the tag doesn't exists already)


PrestaShop/kanbanbot :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/kanbanbot :
`PrestaShop/kanbanbot`:


- src/PullRequest/Domain/Aggregate/PullRequest/PullRequest.php
- src/PullRequest/Domain/Aggregate/PullRequest/PullRequestDescription.php
- tests/Shared/Infrastructure/Provider/TranslationsCatalogProviderTest.php
- tests/PullRequest/Application/CommandHandler/CheckTableDescriptionCommandHandlerTest.php

The following repo should be updated by the QA autom team but anyway here are the files we updated.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following repo should be updated by the QA autom team but anyway here are the files we updated.
The QA Automation Team should update the following repositories:


PrestaShop/ga.tests.ui.pr :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PrestaShop/ga.tests.ui.pr :
`PrestaShop/ga.tests.ui.pr`:


- .github/workflows/build-shop.yml
- .github/workflows/pr_test.yml
- .github/workflows/pr_test_one.yml
- .github/workflows/pr_security_test_one.yml
- .github/workflows/test-sanity.yml
- .github/workflows/test-with-prebuilt-shop.yml
- .github/workflows/pr_test_single_campaign.yml

Loading