`; return; } const search = await pagefind.debouncedSearch(query); if (search === null) { return; } else { const resultsLength = search.results.length const resultsData = await Promise.all(search.results.slice(0, 5).map(r => r.data())); const results = resultsData.map((item, index) => ({...item, index: index + 1})); if (query) { searchBarResults.classList.remove("hidden"); } else { searchBarResults.classList.add("hidden"); } let resultsHTML = `
${resultsLength} results
`; resultsHTML += results .map((item) => { return `
${item.meta.title}

…${item.excerpt}…

`; }) .join(""); if (resultsLength > 5) { resultsHTML += ``; } searchBarResults.innerHTML = resultsHTML; } } searchBarInput.addEventListener("input", search); if (window.heap !== undefined) { searchBarResults.addEventListener('click', function (event) { if (event.target.tagName === 'A' && event.target.closest('.link')) { const searchQuery = event.target.getAttribute('data-query'); const resultIndex = event.target.getAttribute('data-index'); const url = new URL(event.target.href); const properties = { docs_search_target_path: url.pathname, docs_search_target_title: event.target.textContent, docs_search_query_text: searchQuery, docs_search_target_index: resultIndex, docs_search_source_path: window.location.pathname, docs_search_source_title: document.title, }; heap.track("Docs - Search - Click - Result Link", properties); } }); } });

Docker Engine 18.03 release notes

18.03.1-ce

2018-04-26

Client

  • Fix docker stack deploy re-deploying services after the service was updated with --force docker/cli#963
  • Fix docker version output alignment docker/cli#965

Runtime

Swarm Mode

Networking

18.03.0-ce

2018-03-21

Builder

Client

  • docker build now runs faster when registry-specific credential helper(s) are configured docker/cli#840
  • Update event filter zsh completion with disable, enable, install and remove docker/cli#372
  • Produce errors when empty ids are passed into inspect calls moby/moby#36144
  • Marshall version for the k8s controller docker/cli#891
  • Set a non-zero timeout for HTTP client communication with plugin backend docker/cli#883

Logging

Networking

  • Verify NetworkingConfig to make sure EndpointSettings is not nil moby/moby#36077

Runtime

  • Fixed error detection using IsErrNotFound and IsErrNotImplemented for ContainerStatPath, CopyFromContainer, and CopyToContainer methods moby/moby#35979

Swarm Mode

  • Fix issue where network inspect does not show Created time for networks in swarm scope moby/moby#36095