Blue Jays add Lauer, Rodriguez to start vs. Red Sox
The Toronto Blue Jays have recalled Eric Lauer from triple-A Buffalo for Wednesday’s game against the Boston Red Sox.

The Toronto Blue Jays continue to tinker with the rotation to cover innings.
On Wednesday, the Blue Jays selected the contract for left-hander Eric Lauer from triple-A Buffalo. Veteran Casey Lawrence was designated for assignment to make room for Lauer on the roster.
Wednesday’s start against the Red Sox was always going to be a bullpen day but, as Sportsnet’s Shi Davidi explained, the Blue Jays’ bullpen was used more than expected after Bowden Francis only went three innings in Tuesday’s loss.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_61fa4e496e30246da8a770e0b8789153', 'MLB', '06d63e94-6394-4043-b3fb-3d1be6f76a6d');
Yariel Rodriguez will start for Wednesday’s game, which means Lauer could be used in a bulk relief role.
The left-hander has made five starts with Buffalo this season, recording a 4.50 ERA with 21 strikeouts and six walks over 24 innings. Lauer has not appeared in the majors since 2023.
Lawrence was cut by the Blue Jays just two days after joining the team off waivers from the Seattle Mariners. He went 2.2 innings against Boston, allowing six hits and three runs.