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

Update Plone and Volto versions in generators #5246

Merged
merged 2 commits into from
Sep 30, 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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]
env:
ADDON_NAME: "<%= addonName %>"
ADDON_PATH: "<%= name %>"
VOLTO_VERSION: "17.0.0-alpha.25"
VOLTO_VERSION: "17.0.0-alpha.30"

jobs:

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RESET=`tput sgr0`
YELLOW=`tput setaf 3`

PLONE_VERSION=6
VOLTO_VERSION=17.0.0-alpha.25
VOLTO_VERSION=17.0.0-alpha.30

ADDON_NAME='<% if (scope) { %><%= scope %>/<%= name %><% } else { %><%= addonName %><% } %>'
ADDON_PATH='<%= name %>'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"stylelint-prettier": "4.0.2"
},
"peerDependencies": {
"@plone/volto": "^17.0.0-alpha.27"
"@plone/volto": "^17.0.0-alpha.30"
}
}
10 changes: 5 additions & 5 deletions packages/generator-volto/generators/app/templates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ MAKEFLAGS+=--warn-undefined-variables
MAKEFLAGS+=--no-builtin-rules

# Update the versions depending on your project requirements | Last Updated 2023-03-02
DOCKER_IMAGE=plone/server-dev:6.0.2
DOCKER_IMAGE_ACCEPTANCE=plone/server-acceptance:6.0.2
DOCKER_IMAGE=plone/server-dev:6.0.6
DOCKER_IMAGE_ACCEPTANCE=plone/server-acceptance:6.0.6
KGS=
TESTING_ADDONS=plone.app.robotframework==2.0.0 plone.app.testing==7.0.0
NODEBIN = ./node_modules/.bin

# Plone 5 legacy
DOCKER_IMAGE5=plone/plone-backend:5.2.10
KGS5=plone.restapi==8.35.0 plone.volto==4.0.5 plone.rest==3.0.0
DOCKER_IMAGE5=plone/plone-backend:5.2.12
KGS5=plone.restapi==8.43.3 plone.volto==4.1.0 plone.rest==3.0.1
TESTING_ADDONS=plone.app.robotframework==2.0.0 plone.app.testing==7.0.0

# Project settings

Expand Down
1 change: 1 addition & 0 deletions packages/generator-volto/news/5246.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update Plone and Volto versions in generators @sneridagh