mooxl / astroad

A pre-configured setup for easy website development with Astro and Payload CMS using Docker.
MIT License
92 stars 8 forks source link

Bump payload from 1.14.0 to 1.15.3 in /payload #102

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps payload from 1.14.0 to 1.15.3.

Release notes

Sourced from payload's releases.

Release 1.15.3

1.15.3 (2023-09-05)

Bug Fixes

  • draft globals always displaying unpublish button (9bc072c)
  • globals not saving updatedAt and createdAt and version dates correctly (9fbabc8)

Features

✨ Improving version enabled query speed (related PR)

  1. ➡️ Copy migration script below
  2. ➡️ Run migration script
  3. ➡️ Add new property to config

1. The migration script

const payload = require('payload');

require('dotenv').config();

const { PAYLOAD_SECRET, MONGODB_URI } = process.env;

// This function ensures that there is at least one corresponding version for any document // within each of your draft-enabled collections. const improveVersionsQueryPerformance = async () => { // Initialize Payload // IMPORTANT: make sure your ENV variables are filled properly here // as the below variable names are just for reference. await payload.init({ secret: PAYLOAD_SECRET, mongoURL: MONGODB_URI, local: true, });

async function migrateCollectionDocs(slug: string, docsAtATime = 100) { const VersionsModel = payload.versions[slug]; const remainingDocs = await VersionsModel.aggregate([ // Sort so that newest are first { $sort: { updatedAt: -1, }, }, // Group by parent ID // take the $first of each { $group: { </tr></table>

... (truncated)

Changelog

Sourced from payload's changelog.

1.15.3 (2023-09-05)

Bug Fixes

  • draft globals always displaying unpublish button (9bc072c)
  • globals not saving updatedAt and createdAt and version dates correctly (9fbabc8)

Features

  • improves query speed for version enabled collections (16e94d4)

1.15.2 (2023-08-25)

1.15.1 (2023-08-25)

Bug Fixes

1.15.0 (2023-08-24)

Features

  • query support for geo within and intersects + dynamic GraphQL operator types (#3183) (739abdc)
Commits
  • 6d148d7 chore(release): v1.15.3
  • 8e10eca Merge pull request #3256 from payloadcms/feat/versions-perf
  • ef27b9f chore: revert changes related to the status displayed by the Status component
  • 2dcce03 chore: simplify logic for global status rendering
  • b649ad7 chore: ensure not to update the version doc that was just created
  • 3cee0be chore: remove script file example
  • 8fc9536 chore(templates/ecommerce): properly formats csp and handles post requests in...
  • e28dfc0 chore: tweak script
  • 33561a8 chore: adds feature flag to config
  • e500b46 chore: removes console log
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #103.