Google Assistant Expose Problem

I have expose_by_default set to false and I set specific domains to be exposed as well as individual entities within different domains. This has worked in the past but since one of the recent dot releases, it only exposes those with “expose: true”

  google_assistant:
    
      project_id: !secret google_project_id
      # client_id: !secret google_client_id
      # access_token: !secret google_access_token
      # agent_user_id: !secret google_agent_user_id
      api_key: !secret google_api_key
      allow_unlock: true
      expose_by_default: false
      exposed_domains:
        - light
        - switch
        - fan
        - lock
        - cover
        # - climate
        # - script
        # - group
        # - media_player
      entity_config:
        
#### LIGHTS ############################
##### MASTER BEDROOM #####          

        light.left_bedside_lamp:
          aliases:
            - "Left Lamp"
            - "Master Bedroom Left Lamp"
            - "Master Left Lamp"
          room: "Master Bedroom"

        light.right_bedside_lamp:
          aliases:
            - "Right Lamp"
            - "Master Bedroom Right Lamp"
            - "Master Right Lamp"  
          room: "Master Bedroom" 

        media_player.playbar:
          expose: true
          aliases:
            - "Playbar"
            - "play bar"
            - "sonos"
          room: "Living Room"   

This only exposes the Playbar and all other entities are ignored…

ius anyone else seeing this?

expose: true need to be add in to your light as well.

Light is already an exposed domain. This worked flawlessly before.

light is expose in domain but you didn’t set in entity_config. Then under entity_config, your is different from mine. What I want to expose in each entity_config have expose: true , also I don’t have " or ’

  project_id: !secret google_project_id
  api_key: !secret google_homegraph_api_key
#  exposed_domains:
#    - switch
#    - light
#    - scene
#    - script
#    - media_player
#    - climate
#    - cover
#    - fan
#    - input boolean
#    - group
  entity_config:
    group.timer_light:
      name: Auto Outdoor Light
      aliases:
        - outdoor light
        - auto outdoor light
      expose: true     
      room: Office      
    switch.test_light_1:
      name: Test Light 1
      aliases:
        - test light 1
        - light number 1
        - gratia light 1
        - first light
      expose: true
      room: Office

When you expose the domain, in the past it exposed all lights unless set to false. If a domain was not exposed, you had to set to true to expose entities within that domain. Again, it worked flawlessly before the most recent update.

I am experiencing this same issue, something has changed :frowning:
Have you checked github for a bug report?

Edit: Found a github issue regarding this problem:

Seems it was fixed but created another issue so it was reverted.