https://github.com/textpattern/textpattern-toolbelt
A collection of tools which help to develop Textpattern CMS.
https://github.com/textpattern/textpattern-toolbelt
Last synced: 3 months ago
JSON representation
A collection of tools which help to develop Textpattern CMS.
- Host: GitHub
- URL: https://github.com/textpattern/textpattern-toolbelt
- Owner: textpattern
- License: gpl-2.0
- Created: 2015-10-20T04:02:33.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2025-03-26T15:48:51.000Z (10 months ago)
- Last Synced: 2025-04-29T10:26:15.285Z (9 months ago)
- Language: Shell
- Homepage: https://textpattern.com
- Size: 219 KB
- Stars: 3
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Developer Toolbelt for Textpattern CMS
A collection of tools which help make [Textpattern CMS](https://textpattern.com/) releases.
## Contributing
Please see the [Contributing documentation](https://docs.textpattern.com/development/contributing) for details on how to get involved with the project.
## Legal
Licensed under the [GPLv2 license](https://github.com/textpattern/textpattern/blob/main/LICENSE.txt).
## Textpattern release build process
This process prepares a development branch of Textpattern for beta, release candidate or production release. Follow the steps carefully to ensure a smooth onward journey.
#### Notes
* Semantic versioning is used, with `major.minor.patch` nomenclature.
* Development code is suffixed `-dev`.
* Development code can become a beta release, release candidate and / or production release.
* Beta releases are suffixed `-beta`, `-beta.2`, `-beta.3` and so on.
* Release candidates are suffixed `-rc1`, `-rc2`, `-rc3` and so on.
* References to `x.y.z` below refer to the Textpattern version number and may be suffixed as mentioned.
* *There's no need to push the `release-x.y.z` branch upstream* unless you wish someone else to take over your work. Keeping it local is fine.
### Preflight requirements
[WIP]
* Local instance of PHP CLI, `gzip`, `shasum`, `tar`, `xz` and `zip`.
* Checks: `php -v`, `gzip -V`, `shasum -v`, `tar --version`, `xz --version` and `zip -v`.
* Know the intended next release version for resetting the repo after launch.
* Know the respective `textpattern.com` file IDs for the `.zip`, `.tar.gz` and `.tar.xz` archives.
Some versions of macOS do not include PHP by default. PHP for macOS can be installed using [Homebrew](https://brew.sh) or [MacPorts](https://www.macports.org).
Some versions of macOS do not include `xz` by default. `xz` for macOS can be obtained from https://github.com/donmccaughey/xz_pkg.
### Step 0: Ensure everything is up-to-date
On [textpattern/textpattern](https://github.com/textpattern/textpattern/), update `HISTORY.txt` with final added / changed / fixed release notes, but *do not set the release date*. Merge to other branch(es) where appropriate, ensure all branches (i.e. `main`, `dev`, and any feature branches) are up-to-date where appropriate:
```bash
git checkout branch-name
git pull
```
### Step 1: Create release branch based on feature branch
Navigate to the branch from which to prepare a release, and create a `release-x.y.z` branch for the new version:
```bash
git checkout dev
```
_or_:
```bash
git checkout vx.y.z
```
then:
```bash
git checkout -b release-x.y.z
```
### Step 2: Set version numbers for all but `textpattern/lib/constants.php`
Update version number(s) and remove any references to 'upcoming' in:
* `README.txt`
* `INSTALL.txt`
* `UPGRADE.txt`
* `package.json`
* `README.md` (including the download file IDs - add 3 usually, but check for beta release(s)).
* The `version` preference value in `textpattern/vendors/Textpattern/DB/Data/core.prefs`.
* The `textpattern.version` value in `textpattern/textpattern.js`.
* Theme manifests:
* `textpattern/setup/themes/[default-theme-name]/manifest.json`
* `textpattern/setup/themes/zero/manifest.json`
* Admin theme manifests:
* `textpattern/admin-themes/[theme-name]/manifest.json`
These are usually done in advance of release by updating the admin-theme repos (typically @philwareham) and pulling the changes in (e.g. from the `x.y.z` branch, issue: `npm run get-hive-admin-theme`).
### Step 3: Verify setup & update scripts match
Ensure the contents of `textpattern/setup` directory is completely in sync with the `textpattern/update` scripts. Most of this is handled automatically but any per-user prefs or values injected from the setup process may need to be added manually.
Verify that multi-site files such as `.htaccess`, `.htaccess-dist` and `css.php` are up-to-date with their root counterparts.
### Step 4: Commit history and versions
Commit all changes with a commit message of the format `HISTORY and version numbers for x.y.z`.
### Step 5: Update version number
Edit `textpattern/lib/constants.php` to update the version number.
**Most importantly:**
Release type | Note
------------ | ----
Stable | Set `$txp_is_dev` to `false`.
Beta | Leave `$txp_is_dev` at `true`.
### Step 6: Update checksums
Run `checksums.php` from `textpattern-toolbelt` and point it at the `textpattern` directory inside your working branch (not the root):
```php
php /path/to/textpattern-toolbelt/release/checksums.php /path/to/working-branch-repo/textpattern rebuild
```
Commit with message of the format `Checksums for x.y.z`.
### Step 7: Test!
Copy the entire bundle to a local directory and test. Things to look for:
1. New installation / setup works.
2. Upgrade from (populated) recent versions works.
3. Multi-site installations work.
4. Automated installations work.
5. Version numbers are reported correctly throughout.
6. The High Diagnostics panel reports everything correctly.
7. Public tags provide expected output.
8. Runs on as many versions of PHP, MySQL (and own-brand remixes), Apache, Nginx.
9. Interface UI strings are all assigned English labels.
10. Left over files that need deleting.
Fix anything that doesn't work, and commit atomic changes to the `release-x.y.z` branch. Run checksums again if required.
### Step 8: Update history
Update `HISTORY.txt` to tag the release with a date stamp and commit with message of the format `This is x.y.z`.
### Step 9: Merge to the main repo and push it upstream
Merge to `main`:
```bash
git checkout main
git merge release-x.y.z
git push
```
### Step 10: Build the archives
Run the archive build script. It will build three archive files (`textpattern-x.y.z.zip`, `textpattern-x.y.z.tar.gz` and `textpattern-x.y.z.tar.xz`) with corresponding SHA256 checksum files in a temporary location and report where that is. Supply a second argument if you wish to override this destination.
```bash
cd /path/to/working-branch-repo
bash /path/to/textpattern-toolbelt/release/txp-release.sh x.y.z
```
### Step 11: Verify archives
Open the temporary build location and verify archives have been built correctly. Decompress them to check.
Upload the archives to https://virustotal.com for sanity check of files and generated checksums.
### Step 12: Build release on GitHub
Prepare a release for version `x.y.z` on GitHub:
* Set the tag to just the vanilla version number `x.y.z` along with any required `-beta` or `-rc` suffix.
* **Vital**: Ensure the target select box is `main`.
* Use the same tag name for the release Title, but prefix it with a lower case `v`.
* Attach archives and SHA256 checksums.
* If it's a beta or release candidate, ensure the `Pre-release` checkbox is set.
Use `git pull` to bring the new tag down to your local repo's `main` branch.
### Step 13: Add archives to textpattern.com
Upload archives to `textpattern.com` website. Ensure they comply with the semantic filename versioning rules.
For each uploaded file, select the appropriate file category:
```
Current release (Zip format)
Current release (Gzip format)
Current release (Xz format)
Current beta release (Zip format)
Current beta release (Gzip format)
Current beta release (Xz format)
```
Make sure the `Title` and `Description` fields are filled out correctly (see previous files for examples of this). `Title` holds the release version number. `Description` houses the SHA256 token.
### Step 14: Adjust archive category assignment
Remove the category assignment from previous uploads of a beta / stable releases. Note you can have a stable release and a beta release at the same time, but it's good housekeeping to remove old categories from previous releases. Everything is built automatically based on these category assignments.
### Step 15: Finalise the release blog article
When writing the corresponding article, use the shortcode as follows:
```html
notextile.
```
### Step 16: Update orientation information
Add a section to the 'Get started' article when a beta is available (remove it from here at the end of the beta cycle but leave it in its dedicated article for posterity).
Update the release notes link in [Get started with Textpattern](https://textpattern.com/start) to point to the announcement blog post.
### Step 17: Prepare for next version: set version numbers and commit
Prepare for ongoing development:
```bash
git checkout release-x.y.z
```
Edit the following files to bump version number to next intended release. Ensure they have `-dev` suffix. If this release is a beta or release candidate, it's okay to revert the version number to the same `x.y.z-dev` it was before.
* `package.json`.
* `textpattern/lib/constants.php` (also set `$txp_is_dev` to `true` if it was previously `false`).
* The `version` preference value in `textpattern/vendors/Textpattern/DB/Data/core.prefs`.
* The `textpattern.version` value in `textpattern/textpattern.js`.
Commit to ensure the version change is applied, using a suitable commit message of the format 'Back to dev' or 'Towards x.y.z'.
### Step 18: Merge `release-x.y.z` back into `dev`
Merge release to `dev` so changes in the release are recorded:
```bash
git checkout dev
git merge release-x.y.z
git push
```
### Step 19: Tidy up branches
Delete release branch as it has served its purpose:
```bash
git branch -d release-x.y.z
```
You might have to use `-D` switch if the branch deletion complains it's 'unmerged'. That's because we just modified it ready for returning to `dev`. It depends if the release branch was pushed upstream or not. If so:
```bash
git push origin --delete release-x.y.z
```
If you've just released a feature branch (i.e. patch, not minor/major dev release) then there will be the old `vx.y.z` branch on your local and remote servers. Once you're absolutely sure that the merge back to dev from `release-x.y.z` has completed and pushed to the server successfully, you can remove your local and remote `vx.y.z` branches:
```bash
git branch -d vx.y.z
git push origin --delete vx.y.z
```
### Step 20: Update `textpattern.com` web server configuration
* note: only for production releases, ping @petecooper if you're stuck.
The `textpattern.com` configuration is [here](https://github.com/textpattern/server-config/blob/main/live/servers/files/triton.textpattern.net/opt/nginx/servers-available/www.textpattern.com.conf), search for `#start release vars`.
* set `txpver_1b8835e8` variable to release version in semver format (e.g. `1.2.3`).
* set `$targzid_1b8835e8` to the Textpattern file ID for the `.tar.gz` archive (e.g `457`).
* set `$tarxzid_1b8835e8` to the Textpattern file ID for the `.tar.xz` archive (e.g `458`).
* set `$zipid_1b8835e8` to the Textpattern file ID for the `.zip` archive (e.g `456`).
* upload the file to overwrite the existing `/etc/nginx/servers-available/www.textpattern.com.conf` (or modify in place).
* restart Nginx (i.e. `sudo systemctl restart nginx`).
Check downloads for the following:
* https://textpattern.com/latest.tar.gz
* https://textpattern.com/latest.tar.xz
* https://textpattern.com/latest.zip
* https://textpattern.com/pophelp-download
* https://textpattern.com/textpack-download
### Step 21: Tell everyone
Post announcements and gratitude to blog / forum / Twitter / relevant social media. See `announcements.md` for more details.
### Step 22: Update links to latest version in docs, etc
Search through all `textpattern.com` articles to update any outdated version numbers (in case articles were written in advance or features got moved between versions, or reference the download itself).
Update version in `rpc.textpattern.com` (Extensions -> TXP Version).
### Step 23: Relax
Light cigar, pour brandy and wait for the fallout. [Go to bed](https://web.archive.org/web/20040313194455/http%3A//www.textism.com/article/781/Textpattern) if appropriate.