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

github-ae-release-notes.html 4.6 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  1. {% assign product = siteTree[currentLanguage][currentVersion].products[currentProduct] %}
  2. {% assign currentVersionObject = allVersions[currentVersion] %}
  3. <div class="d-flex">
  4. <article class="min-width-0 flex-1">
  5. <div class="d-flex flex-items-center flex-justify-between color-bg-primary px-5 py-2">
  6. <div></div>
  7. <h1 class="f4 py-3 m-0">{{ currentVersionObject.planTitle }} release notes</h1>
  8. <div></div>
  9. </div>
  10. <div class="markdown-body">
  11. {% for patch in releaseNotes %}
  12. <div class="js-release-notes-patch mb-10 color-bg-secondary pb-6 border-bottom border-top" data-version="{{ patch.date }}" id="{{ patch.date }}">
  13. <header style="z-index: 1;" class="container-xl position-sticky top-0 color-bg-secondary border-bottom px-3 pt-4 pb-2 js-release-notes-patch-heading" data-version="{{ patch.date }}">
  14. <div class="d-flex flex-items-center">
  15. <h2 class="border-bottom-0 m-0 p-0">
  16. {{ patch.title }}
  17. </h2>
  18. {% if patch.release_candidate %}
  19. <span class="IssueLabel color-bg-warning-inverse color-text-inverse ml-3" style="white-space: pre">Release Candidate</span>
  20. {% endif %}
  21. <button class="js-print btn-link ml-3 text-small text-bold">
  22. Print
  23. </button>
  24. </div>
  25. {% if patch.currentWeek %}
  26. {% assign bannerText = site.data.ui.release_notes.banner_text_current %}
  27. {% else %}
  28. {% assign bannerText = site.data.ui.release_notes.banner_text_past | append: " " | append: patch.friendlyDate | append: "." %}
  29. {% endif %}
  30. <p class="color-text-secondary mt-1">{{ patch.friendlyDate }} - {{ bannerText }}</p>
  31. </header>
  32. <div class="container-xl px-3">
  33. <div class="mt-3">{{ patch.intro }}</div>
  34. {% for section in patch.sections %}
  35. <div class="release-notes-section-{{ section[0] }} py-6 mx-6 d-block d-xl-flex gutter-xl flex-items-baseline {% unless forloop.last %}border-bottom{% endunless %}">
  36. <ul class="col-12 release-notes-list">
  37. {% for note in section[1] %}
  38. <li class="release-notes-list-item {% if note.heading %}list-style-none{% endif %}">
  39. {% if note.heading %}
  40. {% assign slug = note.heading | slugify %}
  41. <h4 id="{{ slug }}" class="release-notes-section-heading text-uppercase text-bold">
  42. <a href="#{{ slug }}" class="text-inherit">{{ note.heading }}</a>
  43. </h4>
  44. <ul class="pl-0 pb-4 mt-2 release-notes-list">
  45. {% for subNote in note.notes %}
  46. <li class="release-notes-list-item">{{ subNote }}</li>
  47. {% endfor %}
  48. </ul>
  49. {% else %}
  50. {{ note }}
  51. {% endif %}
  52. </li>
  53. {% endfor %}
  54. </ul>
  55. </div>
  56. {% endfor %}
  57. </div>
  58. </div>
  59. {% endfor %}
  60. </div>
  61. </article>
  62. <aside
  63. class="markdown-body position-sticky top-0 d-none d-md-block border-left no-print color-bg-primary flex-shrink-0"
  64. style="width: 260px; height: 100vh;"
  65. >
  66. <nav class="height-full overflow-auto">
  67. <ul class="list-style-none pl-0 text-bold">
  68. {% for release in releases %}
  69. <li class="border-bottom">
  70. <details class="my-0 details-reset release-notes-version-picker" aria-current="page" open>
  71. <summary class="px-3 py-4 my-0 d-flex flex-items-center flex-justify-between">
  72. {{ release.version }}
  73. <div class="d-flex">
  74. <span class="color-text-tertiary text-mono text-small text-normal mr-1">{{ release.patches | size }} releases</span>
  75. {% octicon "chevron-down" %}
  76. </div>
  77. </summary>
  78. <ul class="color-bg-tertiary border-top list-style-none py-4 px-0 my-0">
  79. {% for patch in release.patches %}
  80. <li class="js-release-notes-patch-link px-3 my-0 py-1" data-version="{{ patch.date }}">
  81. <a
  82. href="#{{ patch.date }}"
  83. class="d-flex flex-items-center flex-justify-between">
  84. {{ patch.friendlyDate }}
  85. </a>
  86. </li>
  87. {% endfor %}
  88. </ul>
  89. </details>
  90. </li>
  91. {% endfor %}
  92. </ul>
  93. </nav>
  94. </aside>
  95. </div>
Tip!

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

Comments

Loading...