Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
27 changes: 15 additions & 12 deletions admin/starter/builds
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env php
<?php

define('LATEST_RELEASE', '^4.0');
define('LATEST_RELEASE', '^4.7');
define('DEVELOP_BRANCH', 'dev-develop');
define('NEXT_MINOR', '^4.8-dev');
Comment thread
paulbalandan marked this conversation as resolved.
define('GITHUB_URL', 'https://github.com/codeigniter4/codeigniter4');

/*
Expand All @@ -11,18 +13,18 @@ define('GITHUB_URL', 'https://github.com/codeigniter4/codeigniter4');
* Use this script to toggle the CodeIgniter dependency between the
* latest stable release and the most recent development update.
*
* Usage: php builds [release|development]
* Usage: php builds [release|development|next]
*/

$branch = $argv[1] ?? '';

// Determine the requested stability
if (empty($argv[1]) || ! in_array($argv[1], ['release', 'development'], true)) {
echo 'Usage: php builds [release|development]' . PHP_EOL;
if ($branch === '' || ! in_array($branch, ['release', 'development', 'next'], true)) {
echo 'Usage: php builds [release|development|next]' . PHP_EOL;

exit;
}

$dev = $argv[1] === 'development';

$modified = [];

// Locate each file and update it for the requested stability
Expand All @@ -36,7 +38,7 @@ if (is_file($file)) {
$array = json_decode($contents, true);

if (is_array($array)) {
if ($dev) {
if ($branch !== 'release') {
$array['minimum-stability'] = 'dev';
$array['prefer-stable'] = true;
$array['repositories'] ??= [];
Expand All @@ -57,7 +59,7 @@ if (is_file($file)) {
];
}

$array['require']['codeigniter4/codeigniter4'] = 'dev-develop';
$array['require']['codeigniter4/codeigniter4'] = $branch === 'next' ? NEXT_MINOR : DEVELOP_BRANCH;
unset($array['require']['codeigniter4/framework']);
} else {
unset($array['minimum-stability']);
Expand All @@ -70,7 +72,7 @@ if (is_file($file)) {
}
}

if (empty($array['repositories'])) {
if ($array['repositories'] === []) {
unset($array['repositories']);
}
}
Expand Down Expand Up @@ -100,7 +102,7 @@ foreach ($files as $file) {
if (is_file($file)) {
$contents = file_get_contents($file);

if ($dev) {
if ($branch !== 'release') {
$contents = str_replace('vendor/codeigniter4/framework', 'vendor/codeigniter4/codeigniter4', $contents);
} else {
$contents = str_replace('vendor/codeigniter4/codeigniter4', 'vendor/codeigniter4/framework', $contents);
Expand All @@ -120,6 +122,7 @@ if ($modified === []) {
foreach ($modified as $file) {
echo " * {$file}" . PHP_EOL;
}

echo 'Run `composer update` to sync changes with your vendor folder.' . PHP_EOL;
}

echo 'Run `composer update` to sync changes with your vendor folder.' . PHP_EOL;
echo 'Don\'t forget to update the project files in app folder from "vendor/codeigniter4/*/app/".' . PHP_EOL;
6 changes: 6 additions & 0 deletions user_guide_src/source/changelogs/v4.7.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ Message Changes
Changes
*******

Others
======

- **builds:** In the ``builds`` script (for ``codeigniter4/appstarter``), the ``next`` option has been added
Comment thread
paulbalandan marked this conversation as resolved.
Outdated
to switch ``4.7.x`` to the next minor version ``4.8-dev``. See :ref:`Latest Dev<switch-to-dev-version>`.
Comment thread
paulbalandan marked this conversation as resolved.
Outdated

************
Deprecations
************
Expand Down
15 changes: 8 additions & 7 deletions user_guide_src/source/installation/installing_composer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ Folders in your project after set up:
- app, public, tests, writable
- vendor/codeigniter4/framework/system

.. _switch-to-dev-version:

Latest Dev
----------

Expand All @@ -169,6 +171,9 @@ The `development user guide <https://codeigniter4.github.io/CodeIgniter4/>`_ is
Note that this differs from the released user guide, and will pertain to the
develop branch explicitly.

.. note:: You should not rely on the version of the framework in your project
Comment thread
paulbalandan marked this conversation as resolved.
- the development code may contain an incorrect number.

Update for Latest Dev
^^^^^^^^^^^^^^^^^^^^^

Expand All @@ -188,15 +193,11 @@ files if necessary.
Next Minor Version
^^^^^^^^^^^^^^^^^^

If you want to use the next minor version branch, after using the ``builds`` command
edit **composer.json** manually.
If you want to use the next minor version branch:

If you try the ``4.8`` branch, change the version to ``4.8.x-dev``::
.. code-block:: console

"require": {
"php": "^8.2",
"codeigniter4/codeigniter4": "4.8.x-dev"
},
php builds next

And run ``composer update`` to sync your vendor
folder with the latest target build. Then, check the Upgrading Guide
Expand Down