Cant update netlify cms locally

Hi Im using Netlify CMS and the netlify cms proxy server

I dont know if something updated on netlify ends

but i certainly now cant update any changes i commit locally

i keep getting 422

API_ERROR: “params.entry” is required

before im not getting this error

its hard to debug a 3000 lines of config.yml

so i remove everything and still the error persist even with only one entry

here is the first part of my config.yml

backend:
  # Allows User to Sign with An Email Without Access To Repository.
  name: git-gateway
  branch: netlify-cms # Branch to update (optional; defaults to master)
local_backend: true # npx netlify-cms-proxy-server
media_folder: exampleSite/static/images # Folder where user uploaded files should go
public_folder: /images
site_url: http://localhost:3000 #change this to your site url
display_url: https://localhost:3000
logo_url: http://localhost:3000/images/logo.svg # change this to your site logo url
show_preview_links: true

collections: # A list of collections the CMS should be able to edit
  #1 @configs
  - name: "configs"
    label: "Configurations"
    editor:
      preview: false
    files:
      #1.1 @config_toml
      - file: "exampleSite/config/_default/config.toml"
        label: "Site Config"
        name: "config_toml"
        fields:
          - label: "Site Title"
            name: title
            widget: string
            hint: "Used as *Default* Page Title"
          

here is my index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Content Manager</title>
    <!-- Include the script that enables Netlify Identity on this page. -->
    <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
  </head>
  <body>
    <!-- Include the script that builds the page and powers Netlify CMS -->
    <script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
  </body>
</html>

Hi @codeitlikemiley, please see this issue:

TLDR: make sure to update netlify-cms-proxy-server to the latest version or use npx netlify-cms-proxy-server