Commit Graph

302 Commits

Author SHA1 Message Date
Anca Iordache 02ca9a22f6 Update release notes for docker-compose 1.29.1
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2021-04-14 19:12:25 +02:00
Anca Iordache e28309aaa3 Release notes for docker-compose 1.29.0
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2021-04-06 23:13:32 +02:00
Anca Iordache 0effb9f46e
Update release notes for docker-compose 1.28.6 (#12553)
* Release notes updates for docker-compose 1.28.6

Signed-off-by: Anca Iordache <anca.iordache@docker.com>

* Fixed a typo

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-03-23 21:46:12 +00:00
Anca Iordache cb2e2e6986
Update release notes for docker-compose 1.28.5 (#12401)
* Update release notes  for docker-compose 1.28.5

Signed-off-by: aiordache <anca.iordache@docker.com>

* Minor style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-02-26 18:23:33 +00:00
aiordache df16fac8ab Release notes updates for docker-compose 1.28.4
Signed-off-by: aiordache <anca.iordache@docker.com>
2021-02-19 10:03:27 +01:00
Anca Iordache 1caceda0fe
Release notes update for docker-compose 1.28.3 (#12349)
* Release notes update for docker-compose 1.28.3

Signed-off-by: aiordache <anca.iordache@docker.com>

* Minor style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-02-18 10:55:28 +00:00
Ulysses Souza fe49f123a0 Bump compose 1.28.2
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2021-01-26 17:23:54 -03:00
aiordache 706f1c7e08 Bump docker-compose to 1.28.0
Signed-off-by: aiordache <anca.iordache@docker.com>
2021-01-20 11:26:55 +01:00
Sebastiaan van Stijn 3ed7250644
Update engine reference for 20.10 release
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-12-09 00:50:04 +01:00
Sebastiaan van Stijn 9fef4eabba
_config.yml: disable indexing on staging/preview sites
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-11-17 15:56:41 +01:00
Sebastiaan van Stijn 2fe7e6106a
Optimize configuration to reduce build-times
- remove wildcard match for defaults (this caused a ripple effect
  and slowed down total build time with 60 seconds?)
- skip generating metadata.json (which took 25+ seconds)
- skip generating sitemap.xml (10+ seconds)

Build-times before/after:

Production before:  132 seconds
Production after:    62 seconds
Development before: 121 seconds
Development after:   35 seconds

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:14 +02:00
Sebastiaan van Stijn 2091f8ec57
engine/reference/commandline: disable read-time through config
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:08:00 +02:00
Sebastiaan van Stijn 0790040ded
Remove unused "tree" metadata variable
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:07:51 +02:00
Sebastiaan van Stijn 5a1ae8310f
Separate "development" and "production" configurations
This patch updates the default configuration to match a "development"
situation, and introduces build-options to produce a "production"
build.

By default (dev environment):

- Google Analytics / GTM and PollDaddy are disabled
- SASS builds non-minified stylesheets (for easier readabililty)
- Excludes "enterprise" stubs

Building a "production" build locally is still possible by overriding
the `JEKYLL_ENV` build-arg;

    JEKYLL_ENV=production docker-compose  up --build

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 15:41:15 +02:00
Sebastiaan van Stijn b4f5167074
DDE: disable indexing
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:46:56 +02:00
Sebastiaan van Stijn 26926972ea
machine: handle indexing through config
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:32:17 +02:00
Sebastiaan van Stijn 126c4cf202
_samples: remove titles, keywords and description
These were not used in the generated redirect pages,
so we can remove them.

Also setting the "sitemap" metadata through the _config.yml
so that we don't have to set it in each of the stubs.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:33 +02:00
Sebastiaan van Stijn 03d60f916a
Replace "hide_from_sitemap" with "sitemap: false"
The `hide_from_sitemap` metadata variable was a custom thing we implemented
to add a "noindex" meta-header to pages and to exclude a page from the
search auto-complete.

However, pages with that option set would still be included in sitemap.xml,
resulting in search engines to visit those pages (only to discover they
should not index them).

This patch replaces the custom `hide_from_sitemap` value for `sitemap: false`,
which is a metadata variable that's defined by the "jekyll-sitemap" plugin
we use to generate the sitemap.xml;

https://github.com/jekyll/jekyll-sitemap/blob/v1.4.0/README.md#exclusions

Setting this variable will now:

- add a "noindex" metadata header to the page
- exclude the page from the sitemap.xml.
- exclude the page from /js/metadata.json (used for search autocomplete)

Also fixed an issue in the metadata.json where the `notoc` metadata was
used to exclude pages, however that variable is meant to disable the
in-page TOC (right-hand side navigation with anchor links).

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:11 +02:00
Sebastiaan van Stijn 8bf577084a
Move polldaddy script to an include, and update some options
- use a config-variable for the ID
- exclude the script if no ID is set
- set default font and font-color

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-14 15:33:16 +02:00
Sebastiaan van Stijn 9eb0b0c472
Remove "enterprise moved" include
All locations that included this file also have a redirect set, so the
include was never visible.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-09 01:11:51 +02:00
Sebastiaan van Stijn 0e55851266
config: fix edit link for glossary page
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-07 17:11:53 +02:00
Sebastiaan van Stijn dbd88b7395
use jekyll configuration for edit urls
The existing implementation was broken, and didn't override
the URLs (due to leading, trailing slashes the paths were not
matched).

Instead of using the custom "not_edited_here.yaml", set the
edit-url as front-matter variable through the _config.yml

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-06 23:10:28 +02:00
Anca Iordache 6f908532f4
Bump compose to 1.27.4 (#11418)
* Bump compose to 1.27.4

Signed-off-by: aiordache <anca.iordache@docker.com>

* Minor style update

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-09-24 18:24:19 +01:00
aiordache d09b63f320 Bump compose to 1.27.3
Signed-off-by: aiordache <anca.iordache@docker.com>
2020-09-16 16:43:26 +02:00
Anca Iordache 85e11b239f
Bump docker-compose to 1.27.2 (#11360)
* Bump docker-compose to 1.27.2

Signed-off-by: aiordache <anca.iordache@docker.com>

* Update formatting

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-09-14 08:16:22 +01:00
Anca Iordache 52497c10bd
Bump docker-compose to 1.27.1 (#11357)
* Bump docker-compose to 1.27.1

Signed-off-by: aiordache <anca.iordache@docker.com>

* Minor style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-09-10 16:15:09 +01:00
Anca Iordache 4236ca0914
Post docker-compose 1.27.0 (#11344)
* Post docker-compose 1.27.0

Signed-off-by: aiordache <anca.iordache@docker.com>

* Minor style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-09-08 11:56:45 +01:00
Ulysses Souza 262aa4a1e3
Post docker-compose 1.26.2 (#11100)
* Post docker-compose 1.26.2

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>

* Minor style update

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-07-07 10:20:29 +01:00
Ulysses Souza 7b70c20f1f
Bump docker-compose 1.26.1 (#11068)
* Bump docker-compose 1.26.1

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>

* Minor style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-07-01 15:21:33 +01:00
Sebastiaan van Stijn ba85012f47
Remove scripts and assets related to archives
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-06-24 13:25:58 +02:00
Ulysses Souza ce973f4e98
Post 1.26.0 release updates (#10948)
* Post 1.26.0 release updates

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>

* Minor style edits

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-06-03 17:09:29 +01:00
Sebastiaan van Stijn 7c2455a30c
Remove enterprise from config, and remove ee-specific includes
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-06-02 09:47:18 +02:00
Sebastiaan van Stijn 987312af65
Move Google Analytics to include, and prepare for making it optional
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-05-20 10:20:40 +02:00
Sebastiaan van Stijn c868bbc0c5
Jekyll: exclude "tests" directory
Netlify reported "mixed content" warnings (which means that the
website contained links to both HTTPS and HTTP URLs.

Those reports were based on some test-files in the "tests" directory;

```
10:08:07 PM: Finished processing build request in 6m14.58941986s
10:09:14 PM: Mixed content detected in: /tests/src/golang.org/x/net/html/charset/testdata/utf-8-bom-vs-meta-content.html
10:09:15 PM: --> insecure link urls:
10:09:15 PM:   - http://www.w3.org/TR/html5/syntax.html#the-input-byte-stream
10:09:15 PM: --> insecure script urls:
10:09:15 PM:   - http://w3c-test.org/resources/testharness.js
10:09:15 PM:   - http://w3c-test.org/resources/testharnessreport.js
10:09:15 PM: Mixed content detected in: /tests/src/golang.org/x/net/html/charset/testdata/utf-8-bom-vs-meta-charset.html
10:09:15 PM: --> insecure link urls:
10:09:15 PM:   - http://www.w3.org/TR/html5/syntax.html#the-input-byte-stream
10:09:15 PM: --> insecure script urls:
10:09:15 PM:   - http://w3c-test.org/resources/testharness.js
10:09:15 PM:   - http://w3c-test.org/resources/testharnessreport.js
```

We already look to be excluding that directory from our Dockerfile, but
possibly Netlify uses the source itself for this detection, so adding
`tests` to the `exclude` list in the Jenkyll configuration.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-05-11 15:36:27 +02:00
Ulysses Souza dee187c282
Update docker-compose release notes for 1.25.5 (#10643)
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-04-16 11:23:23 +01:00
Sebastiaan van Stijn 7fbb657ea1
config: remove docs.docker.com as site URL
Having this variable set causes redirects to always redirect to
https://docs.docker.com, which makes it not possible to preview
redirects locally, or to host them on a different domain (e.g.
on a staging domain).

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-03-18 11:40:01 +01:00
Dawn-Docker Enterprise 71b66710b4
DTR release notes for March 2020 Amberjack patch release (#10425)
* DTR release notes for March 2020 Amberjack patch release

* updating dtr and ucp product versions and links to tarballs

* fixing typo

Co-authored-by: Dawn W Docker <dawn.wood@users.noreply.github.com>
2020-03-10 17:09:25 +00:00
Sebastiaan van Stijn c78b3bee78
Reduce list of archives to supported enterprise versions
Docker Enterprise actively supports the 17.06, 18.03, 18.09, and
19.03 versions, with 17.06 and 18.03 reaching EOL soon.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-02-25 17:15:22 +01:00
Ulysses Souza aa5e9db1c6
Update docker-compose release notes and version to 1.25.4 (#10328)
* Update docker-compose release notes and version

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>

* Minor edits

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-02-20 12:17:55 +00:00
Olly P 0b7f1313e5
Update Variables for Jan Patch (#10234) 2020-02-04 12:22:08 +00:00
Ulysses Souza 068024a91a Add docker-compose 1.25.1, 1.25.2 and 1.25.3 release notes (#10112)
* Add versions: 1.25.1, 1.25.2 and 1.25.3

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>

* Minor format updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-01-23 16:43:15 +00:00
Usha Mandya e6339d5ba2
Merge pull request #10113 from ulyssessouza/add-compose-1.25.1
Bump compose 1.25.1
2020-01-20 13:36:58 +00:00
Olly P dad2f28b08
Moved Windows EE Engine Version (#10125) 2020-01-10 12:01:28 +00:00
Ulysses Souza da1f43cf8f Bump compose 1.25.1
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-01-07 16:09:29 +01:00
Usha Mandya 8bb1f094c6
Merge pull request #9926 from ulyssessouza/patch-1
Bump docker-compose 1.25.0
2019-11-22 11:22:02 +00:00
Olly P 20a899ed68
Updated EE Variables for Nov Patch (#9908) 2019-11-22 10:43:37 +00:00
Ulysses Souza 8283efc1af
Bump docker-compose 1.25.0 2019-11-21 18:19:37 +01:00
ollypom b8224707d4
Added UCP 323 Offline Bundles 2019-10-23 10:36:01 +00:00
ollypom c24a37a47b
Removed 3.2.2 2019-10-10 18:19:31 +01:00
ollypom 3a1fe4f63b
Sep 2019 Patch Config and Offline Bundles 2019-10-08 17:37:19 +01:00