You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by br...@apache.org on 2023/11/15 20:05:29 UTC

(druid-website-src) branch master updated: Update releases widget

This is an automated email from the ASF dual-hosted git repository.

brile pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid-website-src.git


The following commit(s) were added to refs/heads/master by this push:
     new 4649d681 Update releases widget
     new 01016708 Merge pull request #439 from ektravel/update-release-widget
4649d681 is described below

commit 4649d6811637f5da0918560bb072cfcb2ee4059e
Author: Katya Macedo <ka...@imply.io>
AuthorDate: Wed Nov 15 13:42:10 2023 -0600

    Update releases widget
---
 static/js/RecentReleasesWidget.js |  2 +-
 static/js/version.js              | 14 ++++++--------
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/static/js/RecentReleasesWidget.js b/static/js/RecentReleasesWidget.js
index e8f9ad90..023fd334 100644
--- a/static/js/RecentReleasesWidget.js
+++ b/static/js/RecentReleasesWidget.js
@@ -31,7 +31,7 @@ export function RecentReleases({ data }) {
 }
 
 export  function RecentReleasesContainer({ jsonData }) {
-  const firstThree = jsonData.slice(0,5);
+  const firstThree = jsonData.slice(0,3);
   return (
     <div>
       {firstThree.map((data) => (
diff --git a/static/js/version.js b/static/js/version.js
index 9b8cae15..6b1cbea7 100644
--- a/static/js/version.js
+++ b/static/js/version.js
@@ -24,9 +24,12 @@ Used by
  * limitations under the License.
  */
 
- 
 
 const Releases = [
+  {
+    version: "28.0.0",
+    date: "Nov 6 2023",
+  },
   {
     version: "27.0.0",
     date: "Aug 10 2023",
@@ -34,12 +37,7 @@ const Releases = [
   {
     version: "26.0.0",
     date: "May 23 2023",
-  },
-  {
-    version: "25.0.2",
-    date: "Jan 4 2023",
   }
+]
 
-  ]
-
-  module.exports.Releases = Releases;
\ No newline at end of file
+module.exports.Releases = Releases;
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org