LIFX color_temp and Kelvin not working

I have multiple LIFX bulbs and my automation used to work well to set the Color, Brightness, and the color_temp when they turned on. In the past couple of months they stopped working. I finally got around to troubleshooting them and found that the issue is with the color_temp setting. If I remove this from my configuration they work fine. I have also tried Kelvin and configuring these same settings in the LIFX_Set_State call but that does not work either. Below is some basic code with the color_temp in it which does not work. If you comment out the color_temp it works fine.

   alias: "Test Lights"
     trigger:
       platform: time
       hours: 19
       minutes: 00
       seconds: 00
     service: light.turn_on
       data:
         entity_id: group.living_room_lights
         color_temp: 280
         brightness_pct: 80
         color_name: white

I suspect color_name: white is an rgb color and you can’t have rgb colors and color_temp together anymore.

For whites add “white_value: 255” under data:
For colors use rgb_color: [X,Y,Z] under data:
Examples of both are below. I’ve commented them out and use an automatic brightness and kelvin change automation based on time of day now.

alias: Plex Paused or Stopped Day

trigger:
  - platform: state
    entity_id: media_player.plex_web_chrome
    to: "paused"
    
  - platform: state
    entity_id: media_player.plex_web_chrome
    to: "idle"    

condition:
  - condition: state
    entity_id: sun.sun
    state: 'above_horizon'
    
action:
#  - service: light.lifx_set_state
#    data:
#      entity_id: group.bathroom_lights
#      color_temp: 155
#      brightness: 190
#      white_value: 255

#  - service: light.lifx_set_state
#    data:
#      entity_id: group.office_lights
#      brightness: 128
#      rgb_color: [0,194,253]

  - service: input_boolean.turn_off
    data:
      entity_id: input_boolean.scene_mode
                
  - service: light.turn_on
    data:
      entity_id: group.bathroom_lights
#      transition: 3
        
  - service: light.turn_on
    data:
      entity_id: group.office_lights
#      transition: 3