Honkai Star Rail 1.1 countdown and update release time: UTC to other timezones

With the second half of version 1.0 coming to an end, the update for Honkai Star Rail 1.1 is set to roll out soon this week. It will bring a variety of new content to the title, including three new playable characters - Silver Wolf, Luocha, and Yukong. HoYoverse has yet to come up with an official announcement regarding the exact date and time of the update. However, it is expected to premiere on June 7, 2023, at 11 AM (UTC +8).

As always, HoYoverse will deploy new patches at the exact same time on all its servers. Hence, players can refer to this article’s countdown timer and listed timezones to track down the Honkai 1.1 release for their region.


" loading="lazy" width="1440" height="220" alt="fortnite-promotional-banner">

When does Honkai Star Rail 1.1 go live?

The server downtime for version 1.1 has been officially set to commence on June 7, 2023, at 6 AM (UTC +8). It will take approximately five hours to complete, implying that the upcoming patch will drop at 11 AM (UTC +8).

Here is the countdown, which aligns with the expected launch time of Honkai Star Rail 1.1.

👉 For more insights, check out this resource.

Since the update goes live at the same time across every server, players will be able to jump into version 1.1 as soon as the timer hits zero.


When will servers shut down for Honkai Star Rail 1.1 maintenance?

Trailblazers are advised to wrap up their daily grind before the server shuts down for maintenance. Hence, they can refer to the following list, which translates the downtime in UTC to other timezones:

👉 Discover more in this in-depth guide.

  • UTC: 10 PM (June 6, 2023)
  • Pacific Standard Time: 7 PM (June 6, 2023)
  • Eastern Time: 6 PM (June 6, 2023)
  • GMT: 10 PM (June 6, 2023)
  • CEST: 12 AM (June 7, 2023)
  • IST: 3.30 AM (June 7, 2023)
  • CST: 6 AM (June 7, 2023)
  • Japan Standard Time: 7 AM (June 7, 2023)
  • Australian Central Time: 6:30 PM (June 7, 2023)

Global airtime for update 1.1

In addition to the countdown, players can track the regional air time for the upcoming update using the following list:

  • UTC: 3 AM (June 7, 2023)
  • Pacific Standard Time: 12 AM (June 7, 2023)
  • Eastern Time: 11 PM (June 6, 2023)
  • GMT: 3 PM (June 7, 2023)
  • CEST: 5 AM (June 7, 2023)
  • IST: 8.30 AM (June 7, 2023)
  • CST: 11 AM (June 7, 2023)
  • Japan Standard Time: 12 PM (June 7, 2023)
  • Australian Central Time: 11:30 PM (June 7, 2023)

This concludes every possible way to track down Honkai Star Rail 1.1's release. It is worth noting that players will be compensated with 300x Stellar Jades for the server downtime, which they can claim from the in-game mailbox.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1536050, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1536050); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1536050) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1536050) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();