Skip to content

Commit

Permalink
Merge pull request #535 from humanmade/manual-backport-534
Browse files Browse the repository at this point in the history
Manual backport 534
  • Loading branch information
mikelittle authored Aug 30, 2023
2 parents f8c7d21 + 520aea3 commit c926691
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion other-docs/guides/long-term-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For example, if Altis has quarterly releases (i.e. four releases per year), each
<figcaption align="center"><b>This diagram illustrates the overlapping support timelines for releases</b></figcaption>
</figure>

For the current releases see the [releases page](/releases)
For the current releases see the [releases page](https://docs.altis-dxp.com/releases/)

## Long-term support policy

Expand Down
15 changes: 8 additions & 7 deletions other-docs/guides/upgrading/v14.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ order: 14

# Upgrading to v14

_If you are migrating from WordPress to Altis, check out the [migrating guide](../migrating/) first._
_If you are migrating from WordPress to Altis, check out
the [migrating guide](../migrating/) first._

To upgrade to Altis v14, edit your `composer.json` and change the version
constraint for `altis/altis` and any local
Expand Down Expand Up @@ -78,7 +79,7 @@ package.

```sh
# Add Workflows package
composer require "humanmade/workflows"
composer require humanmade/workflows
```

This provides the framework to create your own workflow as well as the
Expand All @@ -95,7 +96,7 @@ can install the off-the-shelf plugin in your project's `composer.json` file.

```shell
## Add the Yoast Duplicate Post plugin
composer require "wppackagist/duplicate-post"
composer require wpackagist-plugin/duplicate-post
```

Note: The plugin uses the terms "Clone" and "Copy to a new draft" instead of "Clone" and "Rewrite & Republish" instead of
Expand All @@ -109,7 +110,7 @@ package to your project.

```sh
# Add publication checklist example
composer require "humanmade/publication-checklist"
composer require humanmade/publication-checklist
```

This will provide you with the framework to write your own publication
Expand Down Expand Up @@ -150,7 +151,7 @@ package to your project.

```sh
# Add publication checklist example
composer require "humanmade/authorship"
composer require humanmade/authorship
```

#### Robots.txt Support
Expand Down Expand Up @@ -203,7 +204,7 @@ off-the-shelf plugin in your projects `composer.json` file.
```shell
## Add the Yoast SEO plugin
composer require "wppackagist/wordpress-seo"
composer require wpackagist-plugin/wordpress-seo
```
If you are using the premium version of the plugin, follow
Expand All @@ -223,7 +224,7 @@ add [humanmade/Gaussholder](https://github.com/humanmade/Gaussholder) to your pr
```bash
## Add Gaussholder library
composer require "humanmade/gaussholder"
composer require humanmade/gaussholder
```
Then hook into the `gaussholder.image_sizes` filter.
Expand Down
5 changes: 3 additions & 2 deletions other-docs/guides/upgrading/v15.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ order: 15

# Upgrading to v15

_If you are migrating from WordPress to Altis, check out the [migrating guide](../migrating/) first._
_If you are migrating from WordPress to Altis, check out
the [migrating guide](../migrating/) first._

To upgrade to Altis v15, edit your `composer.json` and change the version
constraint for `altis/altis` and any local
Expand Down Expand Up @@ -41,7 +42,7 @@ composer server cli -- altis migrate

### PHP 8.2 ###

Altis v15 fully supports PHP 8.2 in both local and cloud environments. There are a number of [backward incompatible changes](https://www.php.net/manual/en/migration82.incompatible.php) in PHP 8.2 which should be taken into consideration and addressed.
Altis v15 introduces experimental support for PHP 8.2 in both local and cloud environments. There are a number of [backward incompatible changes](https://www.php.net/manual/en/migration82.incompatible.php) in PHP 8.2 which should be taken into consideration and addressed.

Refer to our [PHP Version Guide](docs://guides/updating-php/) for up-to-date compatibility, testing and upgrading information.

Expand Down
9 changes: 3 additions & 6 deletions other-docs/guides/upgrading/v16.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ order: 16

# Upgrading to v16

_If you are migrating from WordPress to Altis, check out
the [migrating guide here](../migrating/) first._
_If you are migrating from WordPress to Altis, check out the [migrating guide](../migrating/) first._

To upgrade to Altis v16, edit your `composer.json` and change the version
constraint for `altis/altis` and any local
To upgrade to Altis v16, edit your `composer.json` and change the version constraint for `altis/altis` and any local
environment modules to `^16.0.0`.

```json
Expand All @@ -27,8 +25,7 @@ environment modules to `^16.0.0`.
}
```

Once you have made these changes run `composer update` and then run
the `wp altis migrate` command:
Once you have made these changes run `composer update` and then run the `wp altis migrate` command:

```sh
# For cloud environments
Expand Down

0 comments on commit c926691

Please sign in to comment.