Bump semver from 5.5.1 to 5.7.2

Bumps [semver](https://github.com/npm/node-semver) from 5.5.1 to 5.7.2.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v5.5.1...v5.7.2)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2 files changed
tree: 01c0f0b0f45f1b627efa2c9556925caa43250872
  1. assets/
  2. css-apache/
  3. css-extra/
  4. data/
  5. docs/
  6. fonts/
  7. img/
  8. published_versions/
  9. scripts/
  10. src/
  11. static/
  12. .gitignore
  13. babel.config.js
  14. CONTRIBUTING.md
  15. docusaurus.config.js
  16. downloads_apache.html
  17. google7061d72c536b2e8d.html
  18. package-lock.json
  19. package.json
  20. README.md
  21. redirects.js
  22. release.sh
  23. robots.txt
  24. sidebars.json
  25. yarn.lock
README.md

Druid project website

https://druid.apache.org/

This repo is used to build the Apache Druid website. It is the source of truth for website pages such as the website homepage and pages like Community.

A different repo houses the source of truth for the following:

  • Markdown files for docs (If you‘re looking for the HTML pages that were previously here for pre-26.0.0 docs, they’re now in published_versions)
  • the sidebar file
  • the redirects file

For those, see apache/druid.

The target repo for the website when you're ready to publish is druid-website.

Updating homepage widgets

If you need to update the contents of Upcoming Events, Featured Content or Latest releases widgets, you can find them in static/js:

  • EventList.js (rendered by EventsWidget.js)
  • FeaturedContent.js (rendered by FeaturedContentWidget.js)
  • version.js (rendered by RecentReleasesWidget.js)

Building the site for Druid 26 and later

By default, the repo always starts/builds latest if you run npm start|build or yarn start|build. This way, you can always view the site locally.

The build scripts described in Publish the site handles building the versioned docs for when you're ready to do a release.

To start, you'll need to install Docusaurus 2.

Install Docusaurus 2

You need a supported version of node, such as the latest Node 18.

Run npm install or yarn install in the root of the directory.

Publish the site

These are the steps to publish either a new release or a hotfix to an existing release. Note that you'll always need to build latest so that the downloads page lists the correct versions, so the script automatically builds latest for you.

Note that the build scripts expect apache/druid and apache/druid-website-src to be peers at the same directory level.

  1. Update the version list in static/js/version.js. The highest release version goes in position 0. This file is used by RecentReleasesWidget on the home page to display the 3 most recent versions and to interpolate the download links on the download page.

  2. From the root of druid-website-src, go to scripts/.

  3. In copy_druid_docs.py, set source_directory to your OSS Druid repo. Make sure you're on the correct branch in your Druid repo before continuing.

  4. In scripts, run python do_all_things.py -v VERSION. The script assumes you used npm to install. See example 3 if you use yarn.

    Example 1: python do_all_things.py -v 26.0.0. This command builds version 26.0.0 of the docs and latest.

    Example 2: If you already have Docusaurus 2 installed, skip the installation by specifying the flag --skip-install. For example, python do_all_things.py -v 26.0.0 --skip-install

    Example 3: If you want to use yarn instead of npm, specify the flag --yarn. For example, python do_all_things.py -v 26.0.0 --skip-install --yarn

    For more information about the scripts, see the scripts.

While the script builds the docs for the specified version, you‘ll get some false positives for broken links. (The first version that the script builds.) These are from the website pages to /latest doc pages, which don’t exist yet. You only need to pay attention to broken links from the second build, which is for latest.

The versions you built (such as 26.0.0 and latest) are copied to published_versions where the compiled pages for the older docs live.

  1. Go to published_versions and verify the site. If you run it locally, such as with http-server you'll get the latest version of the site, such as localhost:8080/docs/latest/ and the version you built, such as localhost:8080/docs/26.0.0/. In addition, you should be able to see pre-Docusaurus2 versions such as 25.0.0 with the old CSS.

  2. Make a PR to https://github.com/apache/druid-website with the contents of published_versions.

The scripts

The do_all_things.py script is a wrapper for the following scripts:

  • Uses copy_druid_docs.py to copy the markdown files for the docs over and inserts the actual Druid version for the variable {{DRUIDVERSION}}. It copies the Markdown files to docs/VERSION. If the version is going to be the highest version available, it'll also copy to docs/latest.

  • Uses build_docs.py to build the version you want and latest. You always need to build latest to update the downloads page and the widgets on the home page. It also handles writing the redirects to create the versioned redirects for (/docs/VERSION/).

Once do_all_things.py builds the version you want and latest, it copies the build output to published_versions. You can use this directory to republish the whole site.

published_versions houses the following:

  • The old CSS needed to properly render Docusaurus 1 pages
  • The website pages, like Community
  • All the built HTML pages for the docs, including pre-Docusaurus 2 HTML pages

Building the site before Druid 26

The HTML files for pre-Docusaurus 2 versions (versions before 26) are in .published_versions/docs. If you need to publish updated versions of those files for any reason, you need to build the docs with Docusaurus 1 in the apache/druid repo:

  1. Checkout the branch you want to build, such as 25.0.0.
  2. In apache/druid/website, run npm run build or yarn build.
  3. Copy the HTML files for the docs from the build output to published_versions/docs/VERSION.
  4. Publish the site as you normally would for a new release.

Contributing

See CONTRIBUTING.md.