Board genericSTM32H750VB not found

I am trying to use the board genericSTM32H750VB but am getting an error. Any suggestions?

I think it’s a new board that was added recently but it’s already in the official doc.

https://docs.platformio.org/en/latest/boards/ststm32/genericSTM32H750VB.html#configuration

Platformio core version

Executing task: C:\Users\user\.platformio\penv\Scripts\platformio.exe upgrade 

You're up-to-date!
PlatformIO 6.1.11 is currently the newest version available.

Build error

 Executing task: C:\Users\user\.platformio\penv\Scripts\platformio.exe run 

Processing my_env (platform: ststm32; board: genericSTM32H750VB)
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------UnknownBoard: Unknown board ID 'genericSTM32H750VB'

Platformio.ini

[env:my_env]
platform = ststm32
; test_filter = serial_packets/test_serial_packets_client
; debug_test = serial_packets/test_serial_packets_client
extra_scripts = extra_script.py
; board = my_genericSTM32H750VBT6
board = genericSTM32H750VB
; Linker file is from cube ide.
board_build.ldscript = STM32H750VBTX_FLASH.ld
debug_tool = stlink
upload_protocol = stlink
debug_build_flags = -Os -g3 -ggdb3
; debug_init_break = tbreak app_main
debug_init_break = tbreak none
test_framework = unity
test_port = COM6
monitor_port = COM6
lib_archive = no
check_skip_packages = yes
lib_ldf_mode=chain+
# cube_ide is automatically populated by cube_ide/update_platformil.py
# startup contains the processor startup code and is based on 
# cube_ide/core/src/main.c. The rest of the libraries are detected
# automatically.
lib_deps = 
  cube_ide
  startup
build_flags =
  -fmax-errors=5
  -Werror
  -mfpu=fpv5-sp-d16 
  -mfloat-abi=hard 
  -Wl,-Map,${BUILD_DIR}/firmware.map
  -mthumb 
  -D DEBUG
  -D USE_HAL_DRIVER
  -DSTM32_THREAD_SAFE_STRATEGY=4
  -fstack-usage
  -std=gnu11
  -Ilib/cube_ide/Core/Inc
  -Ilib/cube_ide/Core/ThreadSafe
  -Ilib/cube_ide/Drivers/CMSIS/Device/ST/STM32H7xx/Include
  -Ilib/cube_ide/Drivers/CMSIS/Include
  -Ilib/cube_ide/Drivers/STM32H7xx_HAL_Driver/Inc
  -Ilib/cube_ide/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc
  -Ilib/cube_ide/Middlewares/ST/STM32_USB_Device_Library/Core/Inc
  -Ilib/cube_ide/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS
  -Ilib/cube_ide/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/Include
  -Ilib/cube_ide/Middlewares/Third_Party/FreeRTOS/Source/include
  -Ilib/cube_ide/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F
  -Ilib/cube_ide/Middlewares/Third_Party/FatFs/src
  -Ilib/cube_ide/USB_DEVICE/App
  -Ilib/cube_ide/USB_DEVICE/Target
  -Ilib/cube_ide/FATFS/App
  -Ilib/cube_ide/FATFS/Target
  -D CONFIG_MAX_PACKET_DATA_LEN=1000
  -D CONFIG_MAX_PENDING_COMMANDS=5

Platform up-to-date? Use platform = ststm32@17.0.0 if needed.

Thanks @maxgerhardt. Updating brought in 17.0.0 and It does build now.