Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

product-releases.html 2.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  1. <div class="bg-guides-gradient py-6">
  2. <div class="container-xl px-3 px-md-6 my-6">
  3. <h2 class="font-mktg h1 mb-2" id="supported-releases"><a href="#supported-releases">{% data ui.product_landing.supported_releases %}</a></h2>
  4. <div class="d-lg-flex gutter-lg flex-items-stretch">
  5. {% for release in releases %}
  6. {% assign releaseNumber = release.version %}
  7. {% if enterpriseServerReleases.supported contains releaseNumber %}
  8. {% assign releaseVersion = 'enterprise-server@' | append: releaseNumber %}
  9. {% assign latestPatch = release.patches[0] %}
  10. {% assign firstPreviousVersion = 'enterprise-server@' | append: release.firstPreviousRelease %}
  11. {% assign secondPreviousVersion = 'enterprise-server@' | append: release.secondPreviousRelease %}
  12. <div class="col-lg-4 col-12 mb-3">
  13. <div class="Box color-shadow-medium height-full d-block hover-shadow-large no-underline color-text-primary p-5">
  14. <h2>{{ allVersions[releaseVersion].versionTitle }}</h2>
  15. <p class="mt-2 mb-4 color-text-tertiary">{% octicon "list-unordered" %} <a href="/{{ currentLanguage }}/{{ releaseVersion }}/admin/release-notes#{{ latestPatch.version }}">{% data ui.product_landing.release_notes_for %} {{ latestPatch.version }}</a> ({{ latestPatch.date }})</p>
  16. <p class="mt-2 mb-4 color-text-tertiary">{% octicon "arrow-up" %} {% data ui.product_landing.upgrade_from %} <a href="/{{ currentLanguage }}/{{ firstPreviousVersion }}/admin/enterprise-management/upgrading-github-enterprise-server">{{ release.firstPreviousRelease }}</a> or <a href="/{{ currentLanguage }}/{{ secondPreviousVersion }}/admin/enterprise-management/upgrading-github-enterprise-server">{{ release.secondPreviousRelease }}</a></p>
  17. <p class="mt-2 mb-4 color-text-tertiary">{% octicon "file" %} <a href="/{{ currentLanguage }}/{{ releaseVersion }}">{% data ui.product_landing.browse_all_docs %}</a></p>
  18. </div>
  19. </div>
  20. {% endif %}
  21. {% endfor %}
  22. </div>
  23. <a href="{{ currentPath }}/release-notes" class="btn btn-outline float-right">{% data ui.product_landing.explore_release_notes %} {% octicon "arrow-right" %}</a>
  24. </div>
  25. </div>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...