Skip to content

Commit

Permalink
Merge branch 'main' into components-header
Browse files Browse the repository at this point in the history
* main:
  Release 18.0.0-alpha.20
  Add BBB code for removed WysiwygWidget (#5874)
  Release 18.0.0-alpha.19
  Release @plone/components 2.0.0-alpha.7
  Release @plone/slate 18.0.0-alpha.10
  Release generate-volto 9.0.0-alpha.11
  Release @plone/types 1.0.0-alpha.6
  Improve deps in project generator (#5872)
  Fix broken link to TanStack Query (#5871)
  Add missing nextjs install step (#5857)
  (Fix): Sorting Order and Sorting On are not working in Search Block edit mode (#5262)
  Update docs for defaultBlockType setting (#5862)
  Add reference to Docker installation for some Linux distributions (#5861)
  • Loading branch information
sneridagh committed Mar 15, 2024
2 parents 0059605 + 0deb876 commit 788f1c5
Show file tree
Hide file tree
Showing 46 changed files with 300 additions and 176 deletions.
1 change: 1 addition & 0 deletions apps/nextjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ To start, from the root of the monorepo:

```shell
pnpm install
pnpm build:deps && pnpm build:components
pnpm --filter plone-nextjs run dev
```

Expand Down
9 changes: 6 additions & 3 deletions docs/source/blocks/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,16 @@ Our new block should be ready to use in the editor.
It is a common pattern to use the block configuration to allow customization of a block's behavior or to provide block-specific implementation of various Volto mechanisms.
Some of these common options are described in the following sections.

(blockHasValue)=

### `blockHasValue`

`blockHasValue` returns `true` if the provided block data represents a value for the current block.
`blockHasValue` is a function that returns `true` if the provided block data represents a non-empty value for the current block.
Required for alternate default block types implementations.
It has the following signature.

```{seealso}
See also [Settings reference](../configuration/settings-reference).
```jsx
blockHasValue(data) => boolean
```

### `initialValue`
Expand Down
5 changes: 4 additions & 1 deletion docs/source/client/future-improvements.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ The steps for this approach are as follows:
3. Render the component to string on the server
4. Pass the data from collected queries to TanStack Query cache hydration

Refer to official docs for more information: https://tanstack.com/query/v4/docs/framework/react/guides/ssr
```{seealso}
[TanStack Query Server Rendering & Hydration documentation](https://tanstack.com/query/latest/docs/framework/react/guides/ssr)
```


### Automatic caching approach

Expand Down
5 changes: 3 additions & 2 deletions docs/source/configuration/settings-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ navDepth
Navigation levels depth used in the navigation endpoint calls. Increasing this is useful for implementing fat navigation menus. Defaults to `1`.
defaultBlockType
The default block type in Volto is "text", which uses the current DraftJS-based implementation for the rich text editor. Future alternative rich text editors will need to use this setting and replace it with their block type. The block definition should also include the `blockHasValue` function, which is needed to activate the Block Chooser functionality. See this function signature in [Blocks > Settings](../blocks/settings.md).
The name of the default block type used when a new block is added.
The default value of this setting is `slate`, which uses the current Slate-based implementation for the rich text editor.
If you change this to a different type of block, make sure the block configuration includes the {ref}`blockHasValue` function.
sentryOptions
In Volto 16.0.0.alpha.45, Sentry integration was moved from core to the add-on [`@plone-collective/volto-sentry`](https://www.npmjs.com/package/@plone-collective/volto-sentry).
Expand Down
5 changes: 5 additions & 0 deletions docs/source/contributing/install-docker.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
Install [Docker Desktop](https://docs.docker.com/get-docker/) for your operating system.
Docker Desktop includes all Docker tools.

```{note}
For some Linux distributions, you might need to create a group `docker` and add your user to this group.
See [Linux post-installation steps for Docker Engine](https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user) for details.
```
36 changes: 36 additions & 0 deletions docs/source/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,42 @@ myst:

<!-- towncrier release notes start -->

## 18.0.0-alpha.20 (2024-03-14)

### Bugfix

- Add BBB code for removed WysiwygWidget @sneridagh [#5874](https://github.com/plone/volto/issues/5874)

## 18.0.0-alpha.19 (2024-03-14)

### Breaking

- Remove legacy `text`, `table` and `hero` blocks based in `draftJS` @sneridagh [#5846](https://github.com/plone/volto/issues/5846)

### Feature

- Do not display options for Site Administrator to create, modify, or delete Manager users. @wesleybl [#5244](https://github.com/plone/volto/issues/5244)

### Bugfix

- (fix): make search block sort and facets work on edit @dobri1408 [#5262](https://github.com/plone/volto/issues/5262)
- Upgrade `@typescript-eslint` version @sneridagh [#5844](https://github.com/plone/volto/issues/5844)
- Fix the introduction of a mutable (referenced) object when assigning the default inner `blocksConfig` object for the `grid` block, pass by value instead. sneridagh [#5850](https://github.com/plone/volto/issues/5850)
- Fix other occurrences of mutable (referenced) objects when assigning the default inner `blocksConfig` object for the `grid` block, pass by value instead. sneridagh [#5859](https://github.com/plone/volto/issues/5859)

### Internal

- Upgrade versions of Cypress @sneridagh [#5845](https://github.com/plone/volto/issues/5845)

### Documentation

- Update link to cssnano documentation. @stevepiercy [#5853](https://github.com/plone/volto/issues/5853)
- Update docs for the `defaultBlockType` setting. @davisagli [#5854](https://github.com/plone/volto/issues/5854)
- The proper name is Semantic UI. @stevepiercy [#5855](https://github.com/plone/volto/issues/5855)
- Add missing nextjs install step. @gomez [#5857](https://github.com/plone/volto/issues/5857)
- Add reference to Docker installation for some Linux distributions. @stevepiercy [#5861](https://github.com/plone/volto/issues/5861)
- Fix broken link to TanStack Query. @stevepiercy [#5871](https://github.com/plone/volto/issues/5871)

## 18.0.0-alpha.18 (2024-03-05)

### Bugfix
Expand Down
10 changes: 10 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@

<!-- towncrier release notes start -->

## 2.0.0-alpha.7 (2024-03-14)

### Bugfix

- Missing CSS in build for `Container` @sneridagh [#5849](https://github.com/plone/volto/issues/5849)

### Internal

- Cleanup deps @sneridagh [#5846](https://github.com/plone/volto/issues/5846)

## 2.0.0-alpha.6 (2024-03-06)

### Breaking
Expand Down
1 change: 0 additions & 1 deletion packages/components/news/5846.internal

This file was deleted.

1 change: 0 additions & 1 deletion packages/components/news/5849.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
],
"license": "MIT",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"repository": {
"type": "git",
"url": "http://github.com/plone/components.git"
Expand Down
7 changes: 7 additions & 0 deletions packages/generator-volto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@

<!-- towncrier release notes start -->

## 9.0.0-alpha.11 (2024-03-14)

### Bugfix

- Upgrade all versions in generator templates @sneridagh [#5844](https://github.com/plone/volto/issues/5844)
- Improve deps in project generator. @sneridagh @wesleybl [#5870](https://github.com/plone/volto/issues/5870)

## 9.0.0-alpha.10 (2024-03-05)

### Bugfix
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
> 1%
last 4 versions
Firefox ESR
not ie 11
not dead
12 changes: 12 additions & 0 deletions packages/generator-volto/generators/app/templates/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"trailingComma": "all",
"singleQuote": true,
"overrides": [
{
"files": "*.overrides",
"options": {
"parser": "less"
}
}
]
}
23 changes: 23 additions & 0 deletions packages/generator-volto/generators/app/templates/.stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"extends": ["stylelint-config-idiomatic-order"],
"plugins": ["stylelint-prettier"],
"overrides": [
{
"files": ["**/*.less"],
"customSyntax": "postcss-less"
},
{
"files": ["**/*.overrides"],
"customSyntax": "postcss-less"
},
{
"files": ["**/*.scss"],
"customSyntax": "postcss-scss"
}
],
"rules": {
"prettier/prettier": true,
"order/properties-alphabetical-order": null
},
"ignoreFiles": "theme/themes/default/**/*.overrides"
}
107 changes: 34 additions & 73 deletions packages/generator-volto/generators/app/templates/package.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"start": "razzle start",
"postinstall": "make omelette && make patches",
"build": "razzle build --noninteractive",
"lint": "./node_modules/eslint/bin/eslint.js --max-warnings=0 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint:ci": "./node_modules/eslint/bin/eslint.js --max-warnings=0 -f checkstyle 'src/**/*.{js,jsx,ts,tsx}' > eslint.xml",
"prettier": "./node_modules/.bin/prettier --single-quote --check 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"prettier:fix": "./node_modules/.bin/prettier --single-quote --write 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"prettier:ci": "./node_modules/.bin/prettier --single-quote --check 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"lint": "eslint --max-warnings=0 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint:ci": "eslint --max-warnings=0 -f checkstyle 'src/**/*.{js,jsx,ts,tsx}' > eslint.xml",
"prettier": "prettier --single-quote --check 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"prettier:fix": "prettier --single-quote --write 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"prettier:ci": "prettier --single-quote --check 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"stylelint": "stylelint 'theme/**/*.{css,scss,less}' 'src/**/*.{css,scss,less}' --allow-empty-input",
"stylelint:overrides": "stylelint 'theme/**/*.overrides' 'src/**/*.overrides' --allow-empty-input",
"stylelint:fix": "yarn stylelint --fix && yarn stylelint:overrides --fix",
Expand Down Expand Up @@ -71,83 +71,44 @@
"__DEV__": true
}
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"overrides": [
{
"files": "*.overrides",
"options": {
"parser": "less"
}
}
]
},
"stylelint": {
"extends": [
"stylelint-config-idiomatic-order"
],
"plugins": [
"stylelint-prettier"
],
"overrides": [
{
"files": [
"**/*.less"
],
"customSyntax": "postcss-less"
},
{
"files": [
"**/*.overrides"
],
"customSyntax": "postcss-less"
},
{
"files": [
"**/*.scss"
],
"customSyntax": "postcss-scss"
}
],
"rules": {
"prettier/prettier": true,
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
]
},
"ignoreFiles": "theme/themes/default/**/*.overrides"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie 11",
"not dead"
],
"engines": {
"node": "^16 || ^18 || ^20"
"node": "^18 || ^20"
},
"dependencies": <%- dependencies %>,
"devDependencies": {
"@plone/scripts": "^3.0.0",
"@plone/scripts": "^3.5.0",
"@plone/types": "^1.0.0-alpha.5",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-controls": "6.3.0",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.3.0",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"@testing-library/cypress": "10.0.1",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"cypress": "13.6.6",
"cypress-axe": "1.5.0",
"cypress-file-upload": "5.0.8",
"eslint": "8.49.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest-junit": "8.0.0",
"mrs-developer": "^2.1.1",
"postcss": "8.4.13",
Expand All @@ -158,7 +119,7 @@
"stylelint-prettier": "5.0.0",
"ts-jest": "^26.4.2",
"ts-loader": "9.4.4",
"typescript": "5.3.3"
"typescript": "5.4.2"
},
"resolutions": {
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
Expand Down
1 change: 0 additions & 1 deletion packages/generator-volto/news/5844.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion packages/generator-volto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"license": "MIT",
"version": "9.0.0-alpha.10",
"version": "9.0.0-alpha.11",
"repository": {
"type": "git",
"url": "git+https://github.com/plone/generator-volto.git"
Expand Down
6 changes: 6 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

<!-- towncrier release notes start -->

## 1.0.0-alpha.6 (2024-03-14)

### Internal

- Cleanup deps @sneridagh [#5846](https://github.com/plone/volto/issues/5846)

## 1.0.0-alpha.5 (2024-03-01)

### Feature
Expand Down
1 change: 0 additions & 1 deletion packages/types/news/5846.internal

This file was deleted.

2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"funding": "https://github.com/sponsors/plone",
"license": "MIT",
"version": "1.0.0-alpha.5",
"version": "1.0.0-alpha.6",
"repository": {
"type": "git",
"url": "https://github.com/plone/volto.git"
Expand Down
14 changes: 14 additions & 0 deletions packages/volto-slate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@

<!-- towncrier release notes start -->

## 18.0.0-alpha.10 (2024-03-14)

### Breaking

- Remove legacy `text`, `table` and `hero` blocks based in `draftJS` @sneridagh [#5846](https://github.com/plone/volto/issues/5846)

### Bugfix

- Fix other occurrences of mutable (referenced) objects when assigning the default inner `blocksConfig` object for the `grid` block, pass by value instead. sneridagh [#5859](https://github.com/plone/volto/issues/5859)

### Internal

- Fix CSS lint @sneridagh [#5849](https://github.com/plone/volto/issues/5849)

## 18.0.0-alpha.9 (2024-03-02)

### Internal
Expand Down
1 change: 0 additions & 1 deletion packages/volto-slate/news/5846.breaking

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto-slate/news/5849.internal

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto-slate/news/5859.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion packages/volto-slate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plone/volto-slate",
"version": "18.0.0-alpha.9",
"version": "18.0.0-alpha.10",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
Loading

0 comments on commit 788f1c5

Please sign in to comment.