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.4 in /payload #103

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps payload from 1.14.0 to 1.15.4.

Release notes

Sourced from payload's releases.

Release 1.15.4

1.15.4 (2023-09-06)

Bug Fixes

  • sets full user data from fetchFullUser instead of partial jwt data (#3279) (cf12b5f), closes #3274
  • aligns depth behaviour between local api and admin panel (#3276) (5096c37)
  • appends versions key to incoming where query (#3287) (9cd5e5a)
  • change scoping of force parameter to prevent false negation; (#3278) (429a88a)

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
  4. 🧠 While this migration script is very basic, it is always a good idea to backup your DB before running migrations

1. The migration script

const payload = require('payload');

require('dotenv').config();

const { PAYLOAD_SECRET, MONGODB_URI } = process.env;

// This function adds a latest flag for each documents newest version // to improve query performance on versions/drafts 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) { </tr></table>

... (truncated)

Changelog

Sourced from payload's changelog.

1.15.4 (2023-09-06)

Bug Fixes

  • #3274: sets full user data from fetchFullUser instead of partial jwt data (#3279) (cf12b5f), closes #3274
  • aligns depth behaviour between local api and admin panel (#3276) (5096c37)
  • appends versions key to incoming where query (#3287) (9cd5e5a)
  • change scoping of force parameter to prevent false negation; (#3278) (429a88a)

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
  • 364014a chore(release): v1.15.4
  • 9cd5e5a fix: appends versions key to incoming where query (#3287)
  • 429a88a fix: change scoping of force parameter to prevent false negation; (#3278)
  • cf12b5f fix(#3274): sets full user data from fetchFullUser instead of partial jwt dat...
  • 5096c37 fix: aligns depth behaviour between local api and admin panel (#3276)
  • ac592b6 chore(templates/ecommerce): misc cleanup
  • 007f7e7 chore(templates/ecommerce): fixes nextjs hmr
  • 4ba072b chore(templates/ecommerce): related products
  • 8a4db15 chore(templates/ecommerce): prevents server from restarting when app files ch...
  • b28b902 chore(templates/ecommerce): fixes product published dates
  • 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 #104.