Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #8751

Merged
merged 3 commits into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fix-admin-meta-access.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-overscroll-ui.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-readers-unite.md

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/version_packages.yml

This file was deleted.

8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @keystone-6/core

## 5.5.1

### Patch Changes

- [#8771](https://github.com/keystonejs/keystone/pull/8771) [`650e27e6e`](https://github.com/keystonejs/keystone/commit/650e27e6e9b42abfb94c340c8470faf61f0ff284) Thanks [@dcousens](https://github.com/dcousens)! - Fixes `ui.isAccessAllowed` when `undefined`, to prevent access to the `adminMeta` GraphQL query, akin to the behaviour for the default AdminUI `pageMiddleware`

* [`8c43bd37b`](https://github.com/keystonejs/keystone/commit/8c43bd37baacaee6180b763cfde391a665c5d322) Thanks [@lahirurane-rau](https://github.com/lahirurane-rau)! - Fixes AdminUI overflow bug (#8754) introduced in #8702

## 5.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keystone-6/core",
"version": "5.5.0",
"version": "5.5.1",
"repository": "https://github.com/keystonejs/keystone/tree/main/packages/core",
"license": "MIT",
"main": "dist/keystone-6-core.cjs.js",
Expand Down Expand Up @@ -265,7 +265,7 @@
"uuid": "^9.0.0"
},
"devDependencies": {
"@keystone-6/core": "5.5.0",
"@keystone-6/core": "5.5.1",
"@types/bytes": "^3.1.1",
"@types/mime": "^3.0.0",
"@types/resolve": "^1.20.2",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/lib/admin-meta-resolver.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { GraphQLResolveInfo } from 'graphql';
import type { ScalarType, EnumType, EnumValue } from '@graphql-ts/schema';
import { QueryMode, KeystoneContext, BaseItem, MaybePromise } from '../../types';
import { graphql as graphqlBoundToKeystoneContext } from '../..';
import type { KeystoneContext, BaseItem, MaybePromise } from '../types';
import { QueryMode } from '../types';
import { graphql as graphqlBoundToKeystoneContext } from '../types/schema';
import type {
FieldMetaRootVal,
ListMetaRootVal,
Expand Down
6 changes: 6 additions & 0 deletions packages/fields-document/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @keystone-6/fields-document

## 8.0.1

### Patch Changes

- [`5e4860104`](https://github.com/keystonejs/keystone/commit/5e48601042566b321fd47c2bf2bb55929ca16cdd) Thanks [@mmachatschek](https://github.com/mmachatschek)! - Updates slate to ^0.94.1, slate-history to ^0.93.0 and slate-react to ^0.97.1

## 8.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-document/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@keystone-6/fields-document",
"description": "KeystoneJS Document Field Type",
"version": "8.0.0",
"version": "8.0.1",
"license": "MIT",
"main": "dist/keystone-6-fields-document.cjs.js",
"module": "dist/keystone-6-fields-document.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading