Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into blockModelV3
Browse files Browse the repository at this point in the history
  • Loading branch information
danalvrz committed Oct 23, 2024
1 parent 085eb79 commit 7b9fb80
Show file tree
Hide file tree
Showing 10 changed files with 34,098 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths:
- "*.js"
- "*.json"
- "*.yml"
- ".github/workflows/*.yml"
- "packages/**"

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths:
- "*.js"
- "*.json"
- "*.yml"
- ".github/workflows/*.yml"
- "packages/**"

env:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
paths:
- "*.js"
- "*.json"
- "*.yml"
- "packages/**"
- ".github/workflows/storybook.yml"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths:
- "*.js"
- "*.json"
- "*.yml"
- ".github/workflows/*.yml"
- "packages/**"

env:
Expand Down
121 changes: 121 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# kitconcept's volto-separator-block Release Notes

<!-- You should *NOT* be adding new change log entries to this file.
You should create a file in the news directory instead.
For helpful instructions, please see:
https://6.dev-docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
-->

<!-- towncrier release notes start -->

## 4.1.2 (2024-07-30)

### Internal

- Release after new setup @sneridagh [#0](https://github.com/kitconcept/volto-separator-block/issue/0)

## 4.1.1 (2024-03-23)

### Internal

- Repackage with dep and peerDeps updates @sneridagh [#0](https://github.com/kitconcept/volto-separator-block/pull/0)

## 4.1.0 (2024-01-12)

### Feature

- Add custom CSS properties from StyleWrapper support @sneridagh [#15](https://github.com/kitconcept/volto-separator-block/pull/15)

## 4.0.0 (2023-08-09)

### Bugfix

- Remove 'no line' option. @davisagli [#14](https://github.com/kitconcept/volto-separator-block/pull/14)


## 3.2.2 (2023-07-11)

### Internal

- Remove anonymous default export @sneridagh [#0](https://github.com/kitconcept/volto-separator-block/pull/0)


## 3.2.1 (2023-07-05)

### Bugfix

- Fix schema enhancer fields override, use the ones coming from above, if any @sneridagh [#13](https://github.com/kitconcept/volto-separator-block/pull/13)


## 3.2.0 (2023-06-21)

### Feature

- Use new docker based testing infrastructure @sneridagh [#11](https://github.com/kitconcept/volto-separator-block/pull/11)

### Bugfix

- Fix CSS for blocks chooser icon @sneridagh [#12](https://github.com/kitconcept/volto-separator-block/pull/12)


## 3.1.0 (2023-06-06)

### Feature

- Add Brazilian Portuguese translation @ericof [#9](https://github.com/kitconcept/volto-export/pull/9)


## 3.0.2 (2023-03-20)

### Bugfix

- Remove "block" from messages @danalvrz [#8](https://github.com/kitconcept/volto-export/pull/8)


## 3.0.1 (2023-01-25)

### Bugfix

- Add missing de translations. [davisagli] [#7](https://github.com/kitconcept/volto-export/pull/7)


## 3.0.0 (2023-01-19)

### Breaking

- Added alignment options as a block extender @danalvrz [#5](https://github.com/kitconcept/volto-export/pull/5)

### Feature

- Add towncrier, update to latest CI practices @sneridagh [#6](https://github.com/kitconcept/volto-export/pull/6)

### Internal

- Update to latest Volto 16 best practices, yarn 3 @davisagli [#4](https://github.com/kitconcept/volto-export/pull/4)


## 2.0.0 (2022-09-02)

### Breaking

- Rework separator block, make it schema based @steffenri

### Bugfix

- Fix translation string @robgietema

## 1.0.1 (2022-04-21)

### Internal

- Added github workflows @robgietema

## 1.0.0 (2022-02-16)

- Re-release 1.0.0-alpha.0 as 1.0.0 @tisto

## 1.0.0-alpha.0 (2021-10-21)

### Feature

- Initial release @iFlameing @tisto
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kitconcept/volto-separator-block-dev",
"version": "1.0.0-alpha.0",
"version": "4.1.2",
"description": "A new add-on for Volto",
"author": "kitconcept, GmbH",
"homepage": "https://github.com/kitconcept/volto-separator-block",
Expand Down Expand Up @@ -41,4 +41,4 @@
"mrs-developer": "^2.2.0"
},
"packageManager": "pnpm@9.1.1"
}
}
9 changes: 8 additions & 1 deletion packages/volto-separator-block/.release-it.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"plugins": {
"../../core/packages/scripts/prepublish.js": {}
},
"hooks": {
"after:bump": [
"pipx run towncrier build --draft --yes --version ${version} > .changelog.draft",
"pipx run towncrier build --yes --version ${version}",
"cp ../../README.md ./ && cp CHANGELOG.md ../../CHANGELOG.md",
"git add ../../CHANGELOG.md"
"python3 -c 'import json; data = json.load(open(\"../../package.json\")); data[\"version\"] = \"${version}\"; f = open(\"../../package.json\", \"w\"); f.write(json.dumps(data, indent=2))'",
"git add ../../CHANGELOG.md ../../package.json"
],
"after:release": "rm .changelog.draft README.md"
},
"npm": {
"publish": false
},
"git": {
"changelog": "pipx run towncrier build --draft --yes --version 0.0.0",
"requireUpstream": false,
Expand Down
6 changes: 6 additions & 0 deletions packages/volto-separator-block/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

<!-- towncrier release notes start -->

## 4.1.2 (2024-07-30)

### Internal

- Release after new setup @sneridagh [#0](https://github.com/kitconcept/volto-separator-block/issue/0)

## 4.1.1 (2024-03-23)

### Internal
Expand Down
6 changes: 3 additions & 3 deletions packages/volto-separator-block/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kitconcept/volto-separator-block",
"version": "1.0.0-alpha.0",
"description": "A new add-on for Volto",
"version": "4.1.2",
"description": "volto-separator-block: Volto add-on that provides a visual separator between blocks",
"main": "src/index.js",
"license": "MIT",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"release-alpha": "release-it --preRelease=alpha"
},
"dependencies": {
"@plone/components": "1.7.0"
"@plone/components": "workspace:*"
},
"peerDependencies": {
"react": "18.2.0",
Expand Down
Loading

0 comments on commit 7b9fb80

Please sign in to comment.