Skip to content

Commit 77a3591

Browse files
committedJan 2, 2022
chore(clean): Update documentation and link to docsite
1 parent c2dd75e commit 77a3591

11 files changed

+167
-853
lines changed
 

‎.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
uses: peter-evans/repository-dispatch@v1
2121
with:
2222
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
23-
repository: drupalwxt/website
23+
repository: drupalwxt/drupalwxt.github.io
2424
event-type: wxt-tagged
2525
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
- Book title in breadcrumb not translated [#3177182](https://www.drupal.org/node/3177182)
88
- Add new `route:<separator>` for menu items [#3236799](https://www.drupal.org/project/wxt/issues/3236799)
99
- CKEditor adding closing tags to `<source>` and `<track>` [#3155911](https://www.drupal.org/project/wxt/issues/3155911)
10+
- Claro support for extra wide screens [#3184667](https://www.drupal.org/node/3184667)
11+
- Empty breadcrumb at node/add with frontpage view [#3184667](https://www.drupal.org/node/3184667)
1012
- Updates for Drupal Contrib
1113
- Token module updates breaks patch [#3252881](https://www.drupal.org/project/wxt/issues/3252881)
1214
- Redis incorrect QueueInterface implementation [#3253822](https://www.drupal.org/project/wxt/issues/3253822)
1315
- New metatag release conflicts with wxt patch [#3255324](https://www.drupal.org/project/wxt/issues/3255324)
1416
- Accessibility improvements to Diff Module [#3228798](https://www.drupal.org/project/diff/issues/3228798)
17+
- Update button_link, core_context, and group to latest stable
1518
- Updates for WxT
1619
- Configurable Leading Breadcrumbs [#3203791](https://www.drupal.org/project/wxt/issues/3203791)
1720
- Flushing caches during preUpdate set maintenance mode [#3248590](https://www.drupal.org/project/wxt/issues/3248590)

‎KNOWN_ISSUES.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Known Issues
22

3-
This is a list of major known issues. For the latest list of all issues see the
4-
[Drupal Issue Queue][drupal-queue].
3+
This is a list of major known issues. For the latest list of all issues see the [Drupal Issue Queue][drupal-queue].
4+
5+
N/A
56

67
<!-- Links Referenced -->
78

‎README.md

+68-353
Large diffs are not rendered by default.

‎UPDATE.md

+58-133
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,69 @@
1-
This file contains instructions for updating your WxT-based Drupal site.
2-
3-
WxT has a two-pronged update process. Out of the box, it provides a great
4-
deal of default configuration for your site, but once it's installed, all that
5-
configuration is "owned" by your site and WxT cannot safely modify it
6-
without potentially changing your site's behavior or, in a worst-case scenario,
7-
causing data loss.
8-
9-
As it evolves, WxT's default configuration may change. In certain limited
10-
cases, WxT will attempt to safely update configuration that it depends on
11-
(which will usually be locked anyway to prevent you from modifying it).
12-
Otherwise, WxT will leave your configuration alone, respecting the fact
13-
that your site owns it. So, to bring your site fully up-to-date with the latest
14-
default configuration, you must follow the appropriate set(s) of instructions in
15-
the "Configuration updates" section of this file.
16-
17-
## Updating WxT
18-
19-
### Summary
20-
For a typical site that has a properly configured directory for exporting config
21-
that is managed by your VCS, you would generally follow these steps:
22-
23-
#### In your development or local environment.
24-
1. Read the [release notes](https://github.com/drupalwxt/wxt/releases)
25-
for the release to which you are updating, and any other releases between
26-
your current version.
27-
28-
1. Update your codebase, replacing `[WxT]` with the most recent
29-
version of WxT. For example, `3.0.8`.
30-
31-
```
32-
composer self-update
33-
composer require drupalwxt/wxt:~[WXT_VERSION] --no-update
34-
composer update drupalwxt/wxt --with-all-dependencies
35-
```
36-
1. Run any database updates.
37-
38-
```
39-
drush cache:rebuild
40-
drush updatedb
41-
```
42-
1. Run any WxT configuration updates.
43-
44-
```
45-
drush cache:rebuild
46-
drush update:wxt
47-
```
48-
1. Export the new configuration.
49-
50-
51-
```
52-
drush config:export
53-
```
54-
1. Commit the code and configuration changes to your VCS and push them to your
55-
destination environment.
56-
57-
#### On your destination environment.
58-
59-
1. Run any database updates.
60-
61-
```
62-
drush cache:rebuild
63-
drush updatedb
64-
```
65-
66-
1. Import any configuration changes.
67-
68-
```
69-
drush cache:rebuild
70-
drush config:import
71-
```
72-
73-
#### Configuration Management
74-
If you are using configuration management to move your configuration between
75-
development, staging, and production environments, you should export
76-
configuration after #5 and deploy.
77-
78-
### Composer
79-
If you've installed WxT using our [Composer-based project template](https://github.com/drupalwxt/wxt-project), all you need to do is:
80-
81-
* ```cd /path/to/YOUR_PROJECT```
82-
* ```composer update```
83-
* Run ```drush updatedb && drush cache:rebuild```, or visit ```update.php```,
84-
to perform automatic database updates.
85-
* Perform any necessary configuration updates (see below).
86-
87-
### Tarball
88-
**Do not use ```drush pm-update``` or ```drush up``` to update WxT!**
89-
WxT includes specific, vetted, pre-tested versions of modules, and
90-
occasionally patches for those modules (and Drupal core). Drush's updater
91-
totally disregards all of that and may therefore break your site.
92-
93-
To update WxT safely:
94-
95-
1. Download the latest version of WxT from
96-
https://www.drupal.org/project/wxt and extract it.
97-
2. Replace your ```profiles/wxt``` directory with the one included in the
98-
fresh copy of WxT.
99-
3. Replace your ```core``` directory with the one included in the fresh copy
100-
WxT.
101-
4. Visit ```update.php``` or run ```drush updatedb``` to perform any necessary
102-
database updates.
103-
5. Perform any necessary configuration updates and/or migrations (see below).
104-
105-
## Update instructions
106-
107-
These instructions describe how to update your site to bring it in line with a
108-
newer version of WxT. WxT does not make these changes automatically
109-
because they may change the way your site works.
110-
111-
However, as of version 3.0.2, WxT provides a Drush 9 command which *can*
112-
perform updates automatically, confirming each change interactively as it goes.
113-
If you intend to perform all the updates documented here, this can save quite
114-
a bit of time!
1+
## Updating
1152

116-
That said, though, some of these updates involve complicated data migrations.
117-
Due to their complexity, WxT *never* automates them -- you will need to
118-
take some manual action to complete these updates, which are denoted as such
119-
below.
120-
121-
### Automatic configuration updates
122-
123-
Ensure Drush 9 is installed, then switch into the web root of your
124-
WxT installation and run:
3+
A reminder that **[composer](https://getcomposer.org/download/)** is required for the installation and updating of **[Drupal WxT](https://github.com/drupalwxt/wxt)**.
1254

5+
**[Drupal WxT][wxt]** relies on Drupal’s configuration system for configuring default features and functionality. A consequence of this is, once you have installed Drupal WxT, that we cannot modify the sites configuration without having an impact on your site. Drupal WxT will, however, offer to make changes to your configuration as part of the update process.
6+
7+
If you've installed WxT using our **[Composer-based project template][wxt-project]**, all you need to do is following the given steps below.
8+
9+
## Update Process
10+
11+
When pushing to production you should make sure everything has been tested in a local development environment.
12+
13+
These are the typical steps you should following when updating Drupal WxT:
14+
15+
a) Read the **[release notes][releases]** for the release to which you are updating along with any releases in between.
16+
17+
b) To update your WxT codebase you would replace `[VERSION]` with the release version you wish to use.
18+
19+
```sh
20+
composer self update
21+
composer require drupalwxt/wxt:[VERSION]
22+
composer update
12623
```
127-
$ drush update:wxt
24+
25+
> **Note**: We highly recommend that you are using the v2.x.x line of Composer.
26+
27+
c) Run any database updates:
28+
29+
```sh
30+
drush cache:rebuild
31+
drush updatedb
12832
```
12933

34+
> **Note**: You may instead go to `/admin/config/development/performance` to clear caches and `/update.php` to run database updates.
13035
131-
To run all available configuration updates without any prompting, use:
36+
d) Run any WxT configuration updates:
13237

38+
```sh
39+
drush cache:rebuild
40+
drush update:wxt
13341
```
134-
$ drush update:wxt --no-interaction
42+
43+
> **Note**: You may instead go to `/admin/config/development/performance` to clear caches and `/update.php` to run WxT updates.
44+
45+
## Configuration Management
46+
47+
If you are using configuration management to move your configuration between development, staging, and production environments, you should follow the standard Drupal process.
48+
49+
a) Export the new configuration:
50+
51+
```sh
52+
drush cache:rebuild
53+
drush config:export
54+
```
55+
56+
b) Commit the code and configuration changes to your source code repository and push them to your environment.
57+
58+
c) Import any configuration changes:
59+
60+
```sh
61+
drush cache:rebuild
62+
drush config:import
13563
```
13664

137-
If you'd rather do the updates manually, follow the instructions below,
138-
starting from the version of WxT you currently use. For example, if you
139-
are currently running 2.2.0 and are trying to update to 2.2.6, you will need to
140-
follow the instructions for updating from 2.2.0 to 2.2.1, then from 2.2.1 to
141-
2.2.2, in that order.
65+
<!-- Links Referenced -->
14266

143-
### 3.0.6 to 3.0.8
144-
There are no manual update steps for this version.
67+
[releases]: https://github.com/drupalwxt/wxt/releases
68+
[wxt]: https://github.com/drupalwxt/wxt
69+
[wxt-project]: https://github.com/drupalwxt/wxt

‎VERSION.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Versioning
2+
3+
The **[Drupal WxT][wxt]** distribution is following semantic versioning.
4+
5+
WxT typically makes a sprint release every four to six weeks. We will also use sprint releases to package new minor releases of Drupal Core with WxT as they become available.
6+
7+
In addition, we will also increment the major version number of WxT about once every four to six months.
8+
9+
## Extensions
10+
11+
Support for semantic versioning for extensions (modules, themes, etc) is still ongoing.
12+
13+
- **[Support semantic versioning for extensions (modules, themes, etc)][semantic]**
14+
15+
The three parts of our versioning system are MAJOR.FEATURE.SPRINT.
16+
17+
Given the following tag: 9.x-2.15:
18+
19+
| | |
20+
| ----- | ----------------------------------------------------------------- |
21+
| **9** | Major version of Drupal Core |
22+
| **x** | |
23+
| **2** | Major version of WxT |
24+
| **1** | Feature release of WxT. Also increments with minor core releases. |
25+
| **5** | Sprint release between feature releases |
26+
27+
> **Note**: Due to the constraints of drupal.org, there is no separator between the FEATURE and SPRINT digits.
28+
29+
<!-- Links Referenced -->
30+
31+
[semantic]: https://www.drupal.org/project/drupal/issues/3009338
32+
[wxt]: https://github.com/drupalwxt/wxt

‎VERSIONS.md

-30
This file was deleted.

‎composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
"drupal/views_bootstrap": "^3.4",
5757
"drupal/webform": "^6.0",
5858
"drupal/webform_migrate": "1.x-dev",
59-
"drupal/wxt_bootstrap": "6.x-dev",
60-
"drupal/wxt_library": "6.x-dev",
59+
"drupal/wxt_bootstrap": "6.0",
60+
"drupal/wxt_library": "6.0",
6161
"w8tcha/ckeditor-codemirror": "1.16"
6262
},
6363
"require-dev": {

‎help/postgresql.md

-63
This file was deleted.

‎help/redis.md

-74
This file was deleted.

‎help/varnish.md

-195
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.