chore(release): staging to production - 2026.06.02 - #1089
Merged
Conversation
#1088) ## Summary The Contentful document loader unconditionally added `sys.archivedAt[exists]=false` to every query in `runQuery()`. This property is only valid on the **Preview API**. The **Delivery (CDN) API** rejects it with: ``` 400 Bad Request The property "sys.archivedAt" is invalid when querying a published Entry ``` because published entries can never be archived. As a result, any document store backed by the Delivery API fails to refresh/upsert. ## Fix Scope the `sys.archivedAt[exists]=false` filter to the Preview API host (`preview.contentful.com`). The Delivery API never returns archived entries anyway, and the existing post-fetch `sys.archivedVersion` filter is left in place as a safety net. ```ts if (this.host === 'preview.contentful.com') { query['sys.archivedAt[exists]'] = false } ``` ## Impact - Delivery-API-backed document stores can refresh/upsert again. - Preview-API behavior is unchanged (archived entries still excluded). ## Test plan - [ ] Refresh a document store configured against the Delivery API (`cdn.contentful.com`) and confirm it completes without the 400. - [ ] Refresh a document store configured against the Preview API and confirm archived entries remain excluded.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
maxtechera
temporarily deployed
to
staging - aai-unified2-flowise-moonstruck
June 2, 2026 17:26 — with
Render
Inactive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Release: Staging to Production
Release Date: 2026-06-02
Changes in this release
This PR is automatically created/updated when commits are pushed to staging.
Merging this PR will trigger the release workflow to create a new GitHub release.