91³Ô¹ÏÍø

Watch CBS News

U.S. COVID hospitalizations climb for second straight week. Is it a summer surge?

Weekly COVID-19 hospitalizations have risen by more than 12% across the country, according to new data published by the Centers for Disease Control and Prevention, marking a second straight week of this key indicator of the virus climbing. 

At least 8,035 hospital admissions of patients diagnosed with COVID-19 were  for the week of July 22 nationwide, the CDC said late Monday, up from 7,165 during the week before. 

Another important hospital metric has also been trending up in recent weeks: an average of 0.92% of the past week's had COVID-19 as of July 28, up from 0.51% through June 28.

The new figures come after months of largely slowing COVID-19 trends nationwide since the last wave of infections over the winter, and again mark the largest percent increases in these key indicators of the virus since December.

"U.S. COVID-19 rates are still near historic lows after 7 months of steady declines.  Early indicators of COVID-19 activity (emergency department visits, test positivity and wastewater levels) preceded an increase in hospitalizations seen this past week," CDC spokesperson Kathleen Conley said in a statement on July 25.

Conley said virtually all counties are at "low" , below the thresholds at which the CDC recommends additional precautions to curb the virus.

Are we seeing a summer surge? 

While indicators of the virus are now clearly trending up nationwide, hospitalizations for now remain far below the levels recorded at this time last year.

Previous summer waves also saw steeper increases compared to what has been seen so far this year. The U.S. is averaging 1,729 more admissions per week compared to a month prior.

In 2022, hospitalizations peaked over the summer at 44,728 admissions for the week of July 23, 2022, after a wave of Omicron infections that strained some hospitals. That was nearly 12,000 more admissions compared to the rate seen a month prior.

In 2021, a sharp increase driven by the Delta variant saw hospitalizations surge by 20,029 more from June to July, reaching 32,850 hospitalized through July 24, 2021.

"The U.S. has experienced increases in COVID-19 during the past three summers, so it's not surprising to see an uptick," Conley said.

Projections have differed over what the coming months will hold.

An ensemble of academic and federal modelers  that the "main period of COVID19 activity is expected to occur in late fall and early winter over the next 2 years, with median peak incidence between November and mid January."

They cautioned that there were considerable differences between models within the group, with some teams projecting an additional smaller peak elsewhere in the year.

Is a new variant to blame?

Unlike previous waves, no single variant has yet emerged this summer to dominate infections nationwide. 

Instead, the CDC's estimate that a mix of descendants from the XBB variant that first drove infections last winter are now competing around the country. 

Largest among these XBB subvariants are infections grouped as the XBB.1.16, XBB.1.9.1, XBB.2.3, XBB.1.6 or EG.5 strains, which each make up between 10% and 15% of infections nationwide. 

Experts had previously EG.5 as one of the fastest growing lineages worldwide. EG.5 is a descendant of the XBB.1.9.2 variant, with an additional mutation that might be helping it outcompete other strains.

"At this time, CDC's genomic surveillance indicates that the increase in infections is caused by strains closely related to the Omicron strains that have been circulating since early 2022," said Conley.

It comes as health authorities have been racing to prepare for a new round of COVID-19 vaccinations this fall. 

Updated vaccines are expected to be available by late September, the CDC said , after the FDA that drugmakers begin producing new formulations targeting these kinds of XBB strains.

Government distribution of current supplies is due to wind down this week in advance of the update, which will also mark the switchover to a traditional commercial market for vaccines. 

However, the CDC says current supplies of shots will still be shipped until September for "exceptional" situations.

"While many individuals may wait to receive a COVID-19 vaccine until the updated version is released, as it is expected to provide more robust protection against currently circulating variants, certain individuals may need or desire a COVID-19 vaccine prior to the anticipated release of the updated vaccine in the fall," the agency said.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=fd53910ecf4604072044ab7c46d9b028'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });