Gatsby Wordpress gatsby-source-wordpress 3.11.0

Did something change with gatsby-source-wordpress 3.11.0? I know it is super outdated (I am in process of rebuilding my site with latest Gatsby and gatsby-source-wordpress) but recently it stopped pulling in wordpress posts. It still pulls in categories and media. But no more posts.

I have not changed any of my packages. Just went to run app locally and saw that posts were no longer pulling in via this plugin. Has anyone else seen this?

here is what it shows when pulling data:

success createSchemaCustomization - 0.005s
ā†’ wordpress__wp_media fetched : 373
ā†’ wordpress__CATEGORY fetched : 70
ā†’ wordpress__CATEGORY fetched : 30

Here is what my gatsby-config looks like for this plugin:

{
  resolve: 'gatsby-source-wordpress',
  options: {
    baseUrl: 'mindsetadminportal.wordpress.com',
    protocol: 'https',
    hostingWPCOM: true,
    useACF: false,
    auth: {
      wpcom_app_clientSecret: process.env.WORDPRESS_CLIENT_SECRET,
      wpcom_app_clientId: process.env.WORDPRESS_CLIENT_ID,
      wpcom_user: process.env.WORDPRESS_USER,
      wpcom_pass: process.env.WORDPRESS_PW,
    },
    verboseOutput: false,
    perPage: 100,
    concurrentRequests: 10,
    includedRoutes: ['**/posts', '**/categories', '**/media'],
  },
},

Again nothing has changed on my end. It has been working for years. I have not changed any thing. Any ideas?

Do you see any logs or access attempts on your Wordpress instance?

Iā€™m not sure where to look for this. the wordpress site is a simple site on wordpress.com. The gatsby-source-wordpress has always worked fine pulling in post data.

In the developer wordpress console i can see the post data (https://developer.wordpress.com/docs/api/console/)

So i am not sure what the issue may be. though it seems more like a wordpress issue rather than a gatsby / netlify issue. I will probably just use a workaround for now and pull data directly or something instead of using this plugin until i finish the site upgrade and can use the latest plugin which works fine.