From a42da1db439ea82fe8005ce7120ae62951890da1 Mon Sep 17 00:00:00 2001 From: valentinab25 <30239069+valentinab25@users.noreply.github.com> Date: Thu, 22 Dec 2022 18:41:54 +0200 Subject: [PATCH 01/14] chore: add non-interactive flag in build command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea8ac39..5e1ee5c 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "postinstall": "yarn omelette && yarn patches", "omelette": "if [ ! -d omelette ]; then ln -sf node_modules/@plone/volto omelette; fi", "patches": "/bin/bash patches/patchit.sh > /dev/null 2>&1 ||true", - "build": "razzle build", + "build": "razzle build --noninteractive", "lint": "./node_modules/eslint/bin/eslint.js 'src/**/*.{js,jsx}'", "lint:fix": "./node_modules/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx}'", "lint:ci": "./node_modules/eslint/bin/eslint.js -f checkstyle 'src/**/*.{js,jsx}' > eslint.xml", From 0ffe99975030c663d8b0aa112b442b12d51c60ca Mon Sep 17 00:00:00 2001 From: valentinab25 Date: Thu, 22 Dec 2022 19:23:36 +0200 Subject: [PATCH 02/14] test: add tests from volto-industry-theme --- .gitignore | 7 +- Jenkinsfile | 164 +++--- cypress.config.js | 27 + cypress.json | 12 - .../01-block-basics.cy.js} | 24 +- cypress/plugins/index.js | 26 - cypress/support/e2e.js | 125 ++++ cypress/support/index.js | 53 -- locales/de.json | 2 +- locales/en.json | 2 +- locales/pt_BR.json | 2 +- package.json | 3 + yarn.lock | 532 +++++++++++++++++- 13 files changed, 768 insertions(+), 211 deletions(-) create mode 100644 cypress.config.js delete mode 100644 cypress.json rename cypress/{integration/block-basics.js => e2e/01-block-basics.cy.js} (57%) delete mode 100644 cypress/plugins/index.js create mode 100644 cypress/support/e2e.js delete mode 100644 cypress/support/index.js diff --git a/.gitignore b/.gitignore index 2fd112e..7347fbe 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,11 @@ logs *.log npm-debug.log* .DS_Store - +cache +.nyc_output/ coverage +cypress/videos +cypress/reports node_modules build .env.local @@ -16,4 +19,4 @@ data omelette src/addons -src/develop \ No newline at end of file +src/develop diff --git a/Jenkinsfile b/Jenkinsfile index 15d3676..a31b05e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,70 +14,70 @@ pipeline { stages { - // stage('Integration tests') { - // parallel { - // stage('Integration with Cypress') { - // when { - // environment name: 'CHANGE_ID', value: '' - // } - // steps { - // node(label: 'docker') { - // script { - // try { - // sh '''docker pull plone; docker run -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="profile-plone.restapi:blocks" plone fg''' - // sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/volto-project-ci cypress''' - // } finally { - // try { - // sh '''rm -rf cypress-reports cypress-results''' - // sh '''mkdir -p cypress-reports cypress-results''' - // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' - // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' - // archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true - // } - // finally { - // catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { - // junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true - // } - // sh script: "docker stop $BUILD_TAG-plone", returnStatus: true - // sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true - // sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true - // } - // } - // } - // } - // } - // } - - // stage("Docker test build") { - // when { - // not { - // environment name: 'CHANGE_ID', value: '' - // } - // not { - // buildingTag() - // } - // environment name: 'CHANGE_TARGET', value: 'master' - // } - // environment { - // IMAGE_NAME = BUILD_TAG.toLowerCase() - // } - // steps { - // node(label: 'docker-host') { - // script { - // checkout scm - // try { - // dockerImage = docker.build("${IMAGE_NAME}", "--no-cache .") - // } finally { - // sh script: "docker rmi ${IMAGE_NAME}", returnStatus: true - // } - // } - // } - // } - // } - - - // } - // } + stage('Integration tests') { + parallel { + stage('Integration with Cypress') { + when { + environment name: 'CHANGE_ID', value: '' + } + steps { + node(label: 'docker') { + script { + try { + sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend''' + sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/volto-project-ci cypress''' + } finally { + try { + sh '''rm -rf cypress-reports cypress-results''' + sh '''mkdir -p cypress-reports cypress-results''' + sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' + sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' + archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true + } + finally { + catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { + junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true + } + sh script: "docker stop $BUILD_TAG-plone", returnStatus: true + sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true + sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true + } + } + } + } + } + } + + stage("Docker test build") { + when { + not { + environment name: 'CHANGE_ID', value: '' + } + not { + buildingTag() + } + environment name: 'CHANGE_TARGET', value: 'master' + } + environment { + IMAGE_NAME = BUILD_TAG.toLowerCase() + } + steps { + node(label: 'docker-host') { + script { + checkout scm + try { + dockerImage = docker.build("${IMAGE_NAME}", "--no-cache .") + } finally { + sh script: "docker rmi ${IMAGE_NAME}", returnStatus: true + } + } + } + } + } + + + } + } stage('Pull Request') { @@ -174,24 +174,24 @@ pipeline { } } - // stage('Update SonarQube Tags') { - // when { - // not { - // environment name: 'SONARQUBE_TAG', value: '' - // } - // buildingTag() - // } - // steps{ - // node(label: 'docker') { - // withSonarQubeEnv('Sonarqube') { - // withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GIT_TOKEN')]) { - // sh '''docker pull eeacms/gitflow''' - // sh '''docker run -i --rm --name="${BUILD_TAG}-sonar" -e GIT_NAME=${GIT_NAME} -e GIT_TOKEN="${GIT_TOKEN}" -e SONARQUBE_TAG=${SONARQUBE_TAG} -e SONARQUBE_TOKEN=${SONAR_AUTH_TOKEN} -e SONAR_HOST_URL=${SONAR_HOST_URL} eeacms/gitflow /update_sonarqube_tags.sh''' - // } - // } - // } - // } - // } + stage('Update SonarQube Tags') { + when { + not { + environment name: 'SONARQUBE_TAG', value: '' + } + buildingTag() + } + steps{ + node(label: 'docker') { + withSonarQubeEnv('Sonarqube') { + withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GIT_TOKEN')]) { + sh '''docker pull eeacms/gitflow''' + sh '''docker run -i --rm --name="${BUILD_TAG}-sonar" -e GIT_NAME=${GIT_NAME} -e GIT_TOKEN="${GIT_TOKEN}" -e SONARQUBE_TAG=${SONARQUBE_TAG} -e SONARQUBE_TOKEN=${SONAR_AUTH_TOKEN} -e SONAR_HOST_URL=${SONAR_HOST_URL} eeacms/gitflow /update_sonarqube_tags.sh''' + } + } + } + } + } } diff --git a/cypress.config.js b/cypress.config.js new file mode 100644 index 0000000..da8e7ba --- /dev/null +++ b/cypress.config.js @@ -0,0 +1,27 @@ +const { defineConfig } = require('cypress'); + +module.exports = defineConfig({ + viewportWidth: 1280, + defaultCommandTimeout: 8888, + chromeWebSecurity: false, + reporter: 'junit', + video: true, + retries: { + runMode: 8, + openMode: 0, + }, + reporterOptions: { + mochaFile: 'cypress/reports/cypress-[hash].xml', + jenkinsMode: true, + toConsole: true, + }, + e2e: { + setupNodeEvents(on, config) { + // e2e testing node events setup code + require('@cypress/code-coverage/task')(on, config); + require('cypress-fail-fast/plugin')(on, config); + return config; + }, + baseUrl: 'http://localhost:3000', + }, +}); diff --git a/cypress.json b/cypress.json deleted file mode 100644 index aef675e..0000000 --- a/cypress.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "baseUrl": "http://localhost:3000", - "viewportWidth": 1280, - "defaultCommandTimeout": 15000, - "reporter": "junit", - "video": true, - "reporterOptions": { - "mochaFile": "cypress/reports/cypress-[hash].xml", - "jenkinsMode": true, - "toConsole": true - } -} diff --git a/cypress/integration/block-basics.js b/cypress/e2e/01-block-basics.cy.js similarity index 57% rename from cypress/integration/block-basics.js rename to cypress/e2e/01-block-basics.cy.js index 454084c..1e726ef 100644 --- a/cypress/integration/block-basics.js +++ b/cypress/e2e/01-block-basics.cy.js @@ -1,20 +1,20 @@ -import { setupBeforeEach, tearDownAfterEach } from '../support'; +import { slateBeforeEach, slateAfterEach } from '../support/e2e'; + +import 'cypress-fail-fast'; describe('Blocks Tests', () => { - beforeEach(setupBeforeEach); - afterEach(tearDownAfterEach); + beforeEach(slateBeforeEach); + afterEach(slateAfterEach); it('Add Block: Empty', () => { // Change page title - cy.get('.documentFirstHeading > .public-DraftStyleDefault-block') - .clear() - .type('My Add-on Page') - .get('.documentFirstHeading span[data-text]') - .contains('My Add-on Page'); - - cy.get('.documentFirstHeading > .public-DraftStyleDefault-block').type( - '{enter}', - ); + cy.get('[contenteditable=true]').first().clear(); + + cy.get('[contenteditable=true]').first().type('My Add-on Page'); + + cy.get('.documentFirstHeading').contains('My Add-on Page'); + + cy.get('[contenteditable=true]').first().type('{enter}'); // Add block cy.get('.ui.basic.icon.button.block-add-button').first().click(); diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js deleted file mode 100644 index 27a31a5..0000000 --- a/cypress/plugins/index.js +++ /dev/null @@ -1,26 +0,0 @@ -/// -// *********************************************************** -// This example plugins/index.js can be used to load plugins -// -// You can change the location of this file or turn off loading -// the plugins file with the 'pluginsFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/plugins-guide -// *********************************************************** - -// This function is called when a project is opened or re-opened (e.g. due to -// the project's config changing) - -/** - * @type {Cypress.PluginConfig} - */ -module.exports = (on, config) => { - // `on` is used to hook into various events Cypress emits - // `config` is the resolved Cypress config - /* coverage-start - require('@cypress/code-coverage/task')(on, config) - on('file:preprocessor', require('@cypress/code-coverage/use-babelrc')) - return config - coverage-end */ -}; diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js new file mode 100644 index 0000000..f696418 --- /dev/null +++ b/cypress/support/e2e.js @@ -0,0 +1,125 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; +// Alternatively you can use CommonJS syntax: +// require('./commands') + +//Generate code-coverage +import '@cypress/code-coverage/support'; + +export const slateBeforeEach = (contentType = 'Document') => { + cy.autologin(); + cy.createContent({ + contentType: 'Document', + contentId: 'cypress', + contentTitle: 'Cypress', + }); + cy.createContent({ + contentType: contentType, + contentId: 'my-page', + contentTitle: 'My Page', + path: 'cypress', + }); + cy.visit('/cypress/my-page'); + cy.waitForResourceToLoad('@navigation'); + cy.waitForResourceToLoad('@breadcrumbs'); + cy.waitForResourceToLoad('@actions'); + cy.waitForResourceToLoad('@types'); + cy.waitForResourceToLoad('my-page'); + cy.navigate('/cypress/my-page/edit'); +}; + +export const slateAfterEach = () => { + cy.autologin(); + cy.removeContent('cypress'); +}; + +export const slateJsonBeforeEach = (contentType = 'slate') => { + cy.autologin(); + cy.addContentType(contentType); + cy.addSlateJSONField(contentType, 'slate'); + slateBeforeEach(contentType); +}; + +export const slateJsonAfterEach = (contentType = 'slate') => { + cy.autologin(); + cy.removeContentType(contentType); + slateAfterEach(); +}; + +export const getSelectedSlateEditor = () => { + return cy.get('.slate-editor.selected [contenteditable=true]').click(); +}; + +export const createSlateBlock = () => { + cy.get('.ui.basic.icon.button.block-add-button').first().click(); + cy.get('.blocks-chooser .title').contains('Text').click(); + cy.get('.ui.basic.icon.button.slate').contains('Text').click(); + return getSelectedSlateEditor(); +}; + +export const getSlateBlockValue = (sb) => { + return sb.invoke('attr', 'data-slate-value').then((str) => { + return typeof str === 'undefined' ? [] : JSON.parse(str); + }); +}; + +export const createSlateBlockWithList = ({ + numbered, + firstItemText, + secondItemText, +}) => { + let s1 = createSlateBlock(); + + s1.typeInSlate(firstItemText + secondItemText); + + // select all contents of slate block + // - this opens hovering toolbar + cy.contains(firstItemText + secondItemText).then((el) => { + selectSlateNodeOfWord(el); + }); + + // TODO: do not hardcode these selectors: + if (numbered) { + // this is the numbered list option in the hovering toolbar + cy.get('.slate-inline-toolbar > :nth-child(9)').click(); + } else { + // this is the bulleted list option in the hovering toolbar + cy.get('.slate-inline-toolbar > :nth-child(10)').click(); + } + + // move the text cursor + const sse = getSelectedSlateEditor(); + sse.type('{leftarrow}'); + for (let i = 0; i < firstItemText.length; ++i) { + sse.type('{rightarrow}'); + } + + // simulate pressing Enter + getSelectedSlateEditor().lineBreakInSlate(); + + return s1; +}; + +export const selectSlateNodeOfWord = (el) => { + return cy.window().then((win) => { + var event = new CustomEvent('Test_SelectWord', { + detail: el[0], + }); + win.document.dispatchEvent(event); + }); +}; diff --git a/cypress/support/index.js b/cypress/support/index.js deleted file mode 100644 index e585436..0000000 --- a/cypress/support/index.js +++ /dev/null @@ -1,53 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands'; - -// Alternatively you can use CommonJS syntax: -// require('./commands') - -/* coverage-start -//Generate code-coverage -import '@cypress/code-coverage/support'; -coverage-end */ - -export const setupBeforeEach = () => { - cy.autologin(); - cy.createContent({ - contentType: 'Folder', - contentId: 'cypress', - contentTitle: 'Cypress', - }); - cy.createContent({ - contentType: 'Document', - contentId: 'my-page', - contentTitle: 'My Page', - path: 'cypress', - }); - cy.visit('/cypress/my-page'); - cy.waitForResourceToLoad('@navigation'); - // cy.waitForResourceToLoad('@breadcrumbs'); - cy.waitForResourceToLoad('@actions'); - cy.waitForResourceToLoad('@types'); - cy.waitForResourceToLoad('my-page'); - cy.navigate('/cypress/my-page/edit'); - cy.get(`.block.title [data-contents]`); -}; - -export const tearDownAfterEach = () => { - cy.autologin(); - cy.removeContent('cypress'); -}; diff --git a/locales/de.json b/locales/de.json index 50ec067..69b13da 100644 --- a/locales/de.json +++ b/locales/de.json @@ -1 +1 @@ -{"

Add some HTML here

":"

HTML hier einfügen

","Accessibility":"Barrierefreiheit","Account Registration Completed":"Die Registrierung Ihres Zugangs wurde erfolgreich abgeschlossen.","Account activation completed":"Passwort gesetzt.","Action":"Aktion","Action changed":"","Action: ":"","Actions":"Aktionen","Activate and deactivate":"Aktiviern und Deaktivieren","Active":"","Active content rules in this Page":"","Add":"Hinzufügen","Add (object list)":"","Add Addons":"Add-on hinzufügen","Add Content":"Inhalte hinzufügen","Add Content Rule":"","Add Rule":"","Add Translation…":"Übersetzung hinzufügen…","Add User":"Benutzer hinzufügen","Add a description…":"Beschreibung hinzufügen…","Add a new alternative url":"","Add action":"","Add block":"Block hinzufügen","Add block…":"Block hinzufügen","Add condition":"","Add content rule":"","Add criteria":"Kriterien hinzufügen","Add date":"Datum hinzufügen","Add field":"Feld hinzufügen","Add fieldset":"Fieldset hinzufügen","Add group":"Gruppe hinzufügen","Add new content type":"Neuen Inhaltstypen hinzufügen","Add new group":"Neue Gruppe hinzufügen","Add new user":"Neuen Benutzer hinzufügen","Add to Groups":"Zu Gruppe hinzufügen","Add users to group":"Füge Benutzer zu Gruppe hinzu","Add vocabulary term":"Füge neuen Term hinzu","Add {type}":"{type} hinzufügen","Add-Ons":"","Add-on Configuration":"Konfiguration von Erweiterungen","Add-ons":"","Add-ons Settings":"Einstellungen Add-ons","Added":"","Additional date":"Zusätzliches Datum","Addon could not be installed":"","Addon could not be uninstalled":"","Addon could not be upgraded":"","Addon installed succesfuly":"","Addon uninstalled succesfuly":"","Addon upgraded succesfuly":"","Album view":"Album","Alias":"","Alias has been added":"","Alignment":"Ausrichtung","All":"Alle","All content":"Alle Inhalte","All existing alternative urls for this site":"","Alphabetically":"alphabetisch","Alt text":"Alternative Text","Alt text hint":"","Alt text hint link text":"","Alternative url path (Required)":"","Alternative url path must start with a slash.":"","Alternative url path → target url path (date and time of creation, manually created yes/no)":"","Applied to subfolders":"","Applies to subfolders?":"","Apply to subfolders":"","Apply working copy":"Arbeitskopie anwenden","Are you sure you want to delete this field?":"Sind Sie sicher, dass Sie dieses Feld löschen möchten?","Are you sure you want to delete this fieldset including all fields?":"Sind Sie sicher, dass Sie dieses Fieldset löschen möchten?","Ascending":"Aufsteigend","Assignments":"","Available":"Verfügbar","Available content rules:":"","Back":"Zurück","Background color":"Hintergrundfarbe","Base":"Basis","Base search query":"Basis Suchfilter","Block":"Block","Both email address and password are case sensitive, check that caps lock is not enabled.":"Sowohl E-Mail Adresse als auch Passwort unterscheiden zwischen Groß- und Kleinschreibung, stellen Sie sicher dass die Hochstelltaste nicht aktiviert ist.","Breadcrumbs":"Brotkrumen","Browse":"Durchsuchen","Browse the site, drop an image, or type an URL":"Seite durchsuchen, Bild ablegen oder URL eingeben","By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator.":"Standardmäßig werden die Berechtigungen von einem Ordner auf die in ihm befindlichen Artikel vererbt. Wenn Sie dies deaktivieren, sind nur die explizit definierten Zugriffsberechtigungen gültig. In der Übersicht zeigt das Symbol ${image_confirm_icon} einen ererbten Wert an. Das Symbol ${image_link_icon} zeigt eine globale Funktion an, die vom Administrator verwaltet wird.","By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.":"","Cache Name":"Cache Name","Can not edit Layout for {type} content-type as it doesn't have support for Volto Blocks enabled":"Layout für {type} kann nicht verändert werden, da das Volto Blocks-Behavior nicht für diesen Inhaltstyp aktiviert ist","Can not edit Layout for {type} content-type as the Blocks behavior is enabled and read-only":"Layout für {type} kann nicht verändert werden, da das Volto Blocks-Behavior auf nur-lesend gesetzt ist","Cancel":"Abbrechen","Cell":"Zelle","Center":"","Change Note":"Änderungsnotiz","Change Password":"Passwort ändern","Change State":"Arbeitsablauf-Status ändern","Change workflow state recursively":"Arbeitsablauf-Status für alle Unterobjekte ebenfalls ändern","Changes applied.":"Änderungen durchgeführt.","Changes saved":"Änderungen gespeichert","Changes saved.":"Änderungen gespeichert.","Checkbox":"Checkbox","Choices":"Auswahlfeld","Choose Image":"Bild auswählen","Choose Target":"Ziel auswählen","Choose a file":"Datei auswählen","Clear":"Löschen","Clear filters":"Filter entfernen","Click to download full sized image":"Klicken um das Bild in der vollen Größe runterzuladen","Close":"Schließen","Close menu":"Menu schließen","Code":"Code","Collapse item":"Element einklappen","Collection":"Kollektion","Color":"","Comment":"Kommentar","Commenter":"Kommentarautor","Comments":"Kommentare","Compare":"Vergleichen","Condition changed":"","Condition: ":"","Configure Content Rule":"","Configure Content Rule: {title}":"","Configure content rule":"","Confirm password":"Passwort bestätigen","Connection refused":"Verbindung abgelehnt","Contact":"Kontakt","Contact form":"Kontaktformular","Contained items":"Enthaltene Elemente","Content":"Inhalt","Content Rule":"","Content Rules":"","Content rules for {title}":"","Content rules from parent folders":"","Content type created":"Inhaltstyp erstellt","Content type deleted":"Inhaltstyp gelöscht","Contents":"Inhalte","Controls":"Einstellungen","Copy":"Kopieren","Copy blocks":"Blöcke kopieren","Copyright":"Urheberrecht","Copyright statement or other rights information on this item.":"Informationen über die Urheber- und Nutzungsrechte an diesem Artikel.","Create working copy":"Arbeitskopie erstellen","Created by {creator} on {date}":"Erstellt von {creator} am {date}","Created on":"Erstellt am","Creator":"Ersteller","Creators":"Ersteller","Criteria":"Kriterium","Current filters applied":"Ausgewählte Filter","Current password":"Aktuelles Passwort","Cut":"Ausschneiden","Cut blocks":"Blöcke ausschneiden","Daily":"Täglich","Database":"","Database Information":"Datenbankinformationen","Database Location":"Speicheort Datenbank","Database Size":"Größe Datenbank","Database main":"Datenbank","Date":"Datum","Date (newest first)":"Datum (neustes zuerst)","Default":"Standard","Default view":"Standard","Delete":"Löschen","Delete Group":"Gruppe löschen","Delete Type":"Inhaltstype löschen","Delete User":"Benutzer löschen","Delete action":"","Delete blocks":"Blöcke löschen","Delete col":"Spalte löschen","Delete condition":"","Delete row":"Zeile löschen","Deleted":"","Depth":"Tiefe","Descending":"Absteigend","Description":"Beschreibung","Diff":"Unterschied","Difference between revision {one} and {two} of {title}":"Unterschied zwischen Version {one} and {two} von {title}","Disable":"","Disable apply to subfolders":"","Disabled":"","Disabled apply to subfolders":"","Distributed under the {license}.":"Lizensiert unter der {license}.","Divide each row into separate cells":"Jede Zeile in einzelne Zellen teilen","Do you really want to delete the following items?":"Möchten Sie den Artikel wirklich löschen?","Do you really want to delete the group {groupname}?":"Möchten Sie die Gruppe {groupname} wirklich löschen?","Do you really want to delete the type {typename}?":"Möchten Sie den Inhaltstyp {typename} wirklich löschen?","Do you really want to delete the user {username}?":"Möchten Sie den Nutzer {username} wirklich löschen?","Do you really want to delete this item?":"Möchten Sie den Artikel wirklich löschen?","Document":"Seite","Document view":"Seite","Download Event":"","Drag and drop files from your computer onto this area or click the “Browse” button.":"Ziehen Sie Dateien von Ihrem Computer auf diesen Bereich oder drücken Sie den “Durchsuchen”-Knopf.","Drop file here to replace the existing file":"Datei hier ablegen um die bestehende Datei zu ersetzen","Drop file here to upload a new file":"Datei hier ablegen um eine neue Datei hochzuladen","Drop files here ...":"Datei hier ablegen um die bestehende Datei zu ersetzen","E-mail":"E-Mail","E-mail addresses do not match.":"E-Mail-Adressen stimmen nicht überein.","Edit":"Bearbeiten","Edit Rule":"","Edit comment":"Kommentar bearbeiten","Edit field":"Feld bearbeiten","Edit fieldset":"Fieldset bearbeiten","Edit recurrence":"Wiederkehrende Einstellungen bearbeiten","Edit values":"Werte bearbeiten","Edit {title}":"{title} bearbeiten","Email":"E-Mail","Email sent":"E-Mail versendet","Embed code error, please follow the instructions and try again.":"Fehler beim Einbinden des Google Maps Codes. Bitte lesen Sie die Anweisungen und stellen Sie sicher dass Sie den korrekten Code verwenden.","Empty object list":"Leere Liste von Elementen","Enable":"","Enable editable Blocks":"Aktiviere bearbeitbare Blocks","Enabled":"","Enabled here?":"","Enabled?":"","End Date":"Enddatum","Enter URL or select an item":"URL eingeben oder Objekt auswählen","Enter a username above to search or click 'Show All'":"Benutzername oben eingeben oder auf 'Alle anzeigen' klicken","Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.":"Tragen Sie Ihre E-Mail-Adresse ein, mit der Sie sich künftig anmelden müssen. Wir respektieren den Datenschutz und werden die E-Mail-Adresse nicht an Dritte weitergeben und auch nirgends anzeigen.","Enter full name, e.g. John Smith.":"Tragen Sie bitte Ihren vollen Namen ein.","Enter map Embed Code":"Karten-Einbettungscode eingeben","Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.":"","Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.":"","Enter your current password.":"Geben Sie Ihr aktuelles Passwort ein.","Enter your email for verification.":"","Enter your new password. Minimum 5 characters.":"Geben Sie ihr neues Passwort ein. Mindestens 5 Zeichen.","Enter your username for verification.":"","Error":"Fehler","ErrorHeader":"","Event":"","Event listing":"Termine","Event view":"Termin","Exclude from navigation":"Von der Navigation ausschließen","Exclude this occurence":"Dieses Datum ausschließen","Excluded from navigation":"Von Navigation ausgeschlossen","Existing alternative urls for this item":"","Expand sidebar":"Sidebar vergrößern","Expiration Date":"Ablaufdatum","Expiration date":"Ablaufdatum","Expired":"Abgelaufen","External URL":"Externe URL","Facet":"Facette","Facet widget":"Facetten-Widget","Facets":"Facetten","Facets on left side":"Facetten links","Facets on right side":"Facetten rechts","Facets on top":"Facetten oben","Failed To Undo Transactions":"","Field":"Feld","File":"Datei","File size":"Dateigröße","File view":"Datei","Filename":"Dateiname","Filter Rules:":"","Filter by prefix":"","Filter users by groups":"Filtere Benutzer via Gruppenmitgliedschaft","Filter…":"Filter…","First":"Erster Tag des Monats","Fixed width table cells":"Zellen mit fester Breite","Fold":"Einklappen","Folder":"Ordner","Folder listing":"Ordner","Forbidden":"Verboten","Fourth":"Vierter","From":"E-Mail","Full":"Volle Breite","Full Name":"Vor- und Nachname","Fullname":"Name","GNU GPL license":"GNU-GPL-Lizenz","General":"Allgemein","Global role":"Globale Rolle","Google Maps Embedded Block":"Google Maps Block","Group":"Gruppe","Group created":"Gruppe erstellt","Group roles updated":"Gruppenrollen aktualisiert","Groupname":"Gruppenname","Groups":"Gruppen","Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group.":"Gruppen sind Kollektionen von Nutzern, wie z.B. Abteilungen oder Organisationseinheiten. Berechtigungen werden normalerweise nicht global an Gruppen vergeben, sondern eher an Rollen, und dann haben Gruppen eine bestimmte Rolle. Das Symbol {plone_svg} zeigt an, dass eine Rolle von einer anderen Gruppe geerbt wird.","Header cell":"Kopfzeile","Headline":"Überschrift","Headline level":"","Hidden facets will still filter the results if proper parameters are passed in URLs":"Verteckte Facetten können die Ergebnisse weiterhin filtern, wenn die entsprechenden Parameter in der URL angehängt werden","Hide Replies":"Antworten ausblenden","Hide facet?":"Facette verstecken","History":"Historie","History Version Number":"Historie Versionsnummer","History of {title}":"Historie von {title}","Home":"Startseite","ID":"ID","If all of the following conditions are met:":"","If selected, this item will not appear in the navigation tree":"Bestimmt, ob der Artikel nicht in der Navigation auftauchen soll.","If this date is in the future, the content will not show up in listings and searches until this date.":"Falls das Datum in der Zukunft liegt wird der Inhalt in Auflistungen und bei der Suche nicht auftauchen, bis zu dem Datum.","If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it.":"Wenn Sie sicher sind dass das Objekt nicht mehr aktiv von einem anderen Nutzer verwendet wird, können Sie die Sperrung aufheben. Danach können Sie das Objekt bearbeiten.","If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}.":"Wenn Sie sicher sind, dass Sie die richtige Adresse eingegeben haben, kontaktieren Sie bitte den {site_admin}.","Image":"Bild","Image gallery":"Bildergalerie","Image size":"","Image view":"Bild","Include this occurence":"Datum einbeziehen","Info":"Information","InfoUserGroupSettings":"Sie haben die Option 'viele Benutzer' oder 'viele Gruppen' gewählt. Deshalb erwartet das Panel die Eingabe eines Suchwerts und die Auswahl eines Gruppen-Filters um Benutzer und Gruppen zu zeigen. Wenn Sie im Panel umgehend alle Benutzer und Gruppen sehen möchten, dann wechseln Sie bitte zu den Benutzer- und Gruppeneinstellungen und ändern die Einstellungen. Links finden Sie einen Link.","Inherit permissions from higher levels":"Berechtigungen von übergeordneten Ordnern übernehmen","Inherited value":"Geerbter Wert","Insert col after":"Spalte dahinter einfügen","Insert col before":"Spalte davor einfügen","Insert row after":"Zeile dahinter einfügen","Insert row before":"Zeile davor einfügen","Install":"Installieren","Installed":"Installiert","Installed version":"Installierte Version","Installing a third party add-on":"","Interval Daily":"Täglich","Interval Monthly":"Monatlich","Interval Weekly":"Wöchentlich","Interval Yearly":"Jährliches Intervall","Item batch size":"Batch-Anzahl","Item succesfully moved.":"Objekt wurde erfolgreich verschoben.","Item(s) copied.":"Objekt(e) kopiert.","Item(s) cut.":"Objekt(e) ausgeschnitten.","Item(s) has been updated.":"Objekt(e) wurde(n) aktualisiert","Item(s) pasted.":"Artikel eingefügt.","Item(s) state has been updated.":"Der Status der Objekte wurde aktualisiert.","Items":"Elemente","Items must be unique.":"Auswahl muss eindeutig sein.","Items to be deleted:":"","Label":"Label","Language":"Sprache","Language independent field.":"","Large":"","Last":"Letzter","Last comment date":"Letztes Kommentierdatum","Last modified":"Letzte Änderung","Latest version":"Letzte Version","Layout":"Layout","Lead Image":"Lead-Bild","Left":"","Link":"Link","Link more":"'Mehr' Link","Link redirect view":"Link","Link title":"Linktitel","Link to":"Link auf","Link translation for":"Übersetzung verbinden","Listing":"Auflistung","Listing view":"Auflistung","Load more":"Mehr laden","Loading":"lädt","Log In":"Anmelden","Log in":"Anmelden","Logged out":"Abgemeldet","Login":"Einloggen","Login Failed":"Login fehlgeschlagen","Login Name":"Benutzername","Logout":"Ausloggen","Made by {creator} on {date}. This is not a working copy anymore, but the main content.":"Erstellt von {creator} am {date}. Diese Seite ist keine Arbeitskopie mehr sondern die Live-Seite.","Make the table compact":"Tabelle komprimieren","Manage Translations":"Übersetzungen verwalten","Manage content…":"","Manage translations for {title}":"Übersetzungen für {} verwalten","Manual":"","Manually or automatically added?":"","Maps":"","Maps URL":"Karten URL","Maximum length is {len}.":"Maximale Länge ist {len}.","Maximum value is {len}.":"Maximaler Wert ist {len}","Medium":"","Message":"Nachricht","Minimum length is {len}.":"Minimale Länge ist {len}","Minimum value is {len}.":"Minimaler Wert ist {len}","Moderate Comments":"Kommentare moderieren","Moderate comments":"Kommentare moderieren","Monday and Friday":"Montag und Freitag","Month day":"Tag des Monats","Monthly":"Monatlich","More":"Mehr","Mosaic layout":"Mosaic","Move down":"","Move to bottom of folder":"Ans Ende verschieben","Move to top of folder":"An den Anfang verschieben","Move up":"","Multiple choices?":"Mehrfachauswahl","My email is":"","My username is":"Mein Benutzername ist","Name":"Name","Navigate back":"Zurück navigieren","Navigation":"Navigation","New password":"Neues Passwort","News Item":"Nachricht","News item view":"Nachricht","No":"Nein","No Transactions Found":"","No Transactions Selected":"","No Transactions Selected To Do Undo":"","No Video selected":"","No addons found":"Keine Add-ons installiert.","No connection to the server":"","No image selected":"","No image set in Lead Image content field":"Im Feld 'Lead-Bild' wurde kein Bild gesetzt.","No image set in image content field":"Im Feld 'Bild' wurde kein Bild gesetzt","No items found in this container.":"Keine Elemente gefunden","No items selected":"Kein Element ausgewählt","No map selected":"Keine Karte ausgewählt","No occurences set":"Kein Datum gesetzt","No options":"Keine Option","No results found":"Keine Ergebnisse gefunden","No results found.":"Keine Ergebnisse gefunden.","No selection":"Keine Auswahl","No uninstall profile":"Kein Deinstallationsprofil","No user found":"Kein Benutzer gefunden","No value":"Kein Wert","No workflow":"Kein Workflow","None":"Nicht vorhanden","Note":"","Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.":"Rollen gelten für diesen Nutzer. Das Zeichen {plone_svg} zeigt an dass eine Rolle von einer Gruppenzugehörigkeit geerbt wird.","Number of active objects":"Anzahl aktive Objekte","Object Size":"Grösse","Occurences":"Vorkommen","Ok":"OK","Only lowercase letters (a-z) without accents, numbers (0-9), and the characters \"-\", \"_\", and \".\" are allowed.":"Nur Kleinbuchstaben (a-z) ohne Umlaute oder Sonderzeichen, Zahlen (0-9) und die beiden Zeichen \"-\" und \"_\", und \".\" sind erlaubt.","Open in a new tab":"In neuem Browser-Tab öffnen","Open menu":"Menü öffnen","Open object browser":"Objekt-Browser öffnen","Origin":"Quelle","Page":"Seite","Parent fieldset":"Eltern-Fieldset","Password":"Passwort","Password reset":"Passwort zurücksetzen","Passwords do not match.":"Die Passwörter stimmen nicht überein.","Paste":"Einfügen","Paste blocks":"Blöcke einfügen","Perform the following actions:":"","Permissions have been updated successfully":"Berechtigungen wurden erfolgreich aktualisiert","Permissions updated":"Berechtigungen aktualisiert","Personal Information":"Persönliche Informationen","Personal Preferences":"Meine Einstellungen","Personal tools":"Persönliche Einstellungen","Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first.":"Eine Liste von Personen, die an der Erstellung dieses Artikels beteiligt waren. Bitte geben Sie einen Benutzernamen pro Zeile ein. Der Hauptverantwortliche sollte zuerst genannt werden.","Please enter a valid URL by deleting the block and adding a new video block.":"Geben Sie eine gültige URL ","Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the .","Please fill out the form below to set your password.":"Preencha o formulário abaixo para definir sua senha.","Please search for users or use the filters on the side.":"Procure por usuários ou use os filtros na lateral.","Please upgrade to plone.restapi >= 8.24.0.":"Por favor, atualize para plone.restapi >= 8.24.0.","Plone Foundation":"Fundação Plone","Plone Site":"Site Plone","Plone{reg} Open Source CMS/WCM":"Plone{reg} Open Source CMS/WCM","Position changed":"","Possible values":"Valores possíveis","Potential link breakage":"","Powered by Plone & Python":"Criado com Plone e Python","Preferences":"Preferências","Prettify your code":"Re-formatar seu código","Preview":"Pré-visualização","Preview Image URL":"Url de imagem de pré-visualização","Profile":"Perfil","Properties":"Propriedades","Publication date":"Data de publicação","Publishing Date":"Data de publicação","Query":"Consulta","Re-enter the password. Make sure the passwords are identical.":"Reinsira a senha. Certifique-se de que as senhas são idênticas.","Read More…":"Leia Mais…","Rearrange items by…":"Reorganize itens por…","Recurrence ends":"Término da recorrência","Recurrence ends after":"Recorrência se encerra após","Recurrence ends on":"Recorrência se encerra em","Redo":"Refazer","Reduce complexity":"Reduzir complexidade","Register":"Cadastro","Registration form":"Formulário de cadastro","Relevance":"Relevância","Remove":"","Remove item":"Remover Item","Remove recurrence":"Remover a recorrência","Remove selected":"","Remove term":"Remover o termo","Remove users from group":"Remover usuários do grupo","Remove working copy":"Remover a cópia de trabalho","Rename":"Renomear","Rename Items Loading Message":"Renomeando os items","Rename items":"Renomear itens","Repeat":"Repetição","Repeat every":"Repete a cada","Repeat on":"Repete em","Replace existing file":"Substituir arquivo existente","Reply":"Responder","Required":"Obrigatório","Required input is missing.":"Falta informação obrigatória.","Reset term title":"Redefinir o título do termo","Results limit":"Limite de resultados","Results preview":"Visualização de resultados","Results template":"Modelo de resultados","Reversed order":"Ordem invertida","Revert to this revision":"Reverter para esta revisão","Review state":"Estado","Richtext":"Texto rico","Right":"Direita","Rights":"Direitos","Roles":"Papéis","Root":"Raiz","Rule added":"","Rule enable changed":"","Rules":"","Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.":"","Save":"Salvar","Save recurrence":"Salvar a recorrência","Saved":"","Schema":"Esquema","Schema updates":"Atualizações do esquema","Search":"Pesquisar","Search SVG":"SVG de busca","Search Site":"Pesquisar no site","Search block":"Bloco de busca","Search button label":"Rótulo do botão de busca","Search content":"Pesquisar conteúdo","Search for user or group":"Pesquisar por usuário ou grupo","Search group…":"Pesquisar grupo…","Search input label":"Rótulo da caixa de busca","Search results":"Resultados da pesquisa","Search results for {term}":"Resultados da pesquisa para {term}","Search users…":"Pesquisar usuários…","Searched for":"Busca por","Second":"Segundo","Section title":"Título da Seção","Select":"Selecionar","Select a date to add to recurrence":"Selecione uma data para adicionar à recorrência","Select columns to show":"Selecione colunas para mostrar","Select the transition to be used for modifying the items state.":"Selecione a transição a ser usada para modificar o estado dos itens.","Selected dates":"Datas selecionadas","Selected items":"Itens selecionados","Selected items - x of y":"Itens selecionados - x de y","Selection":"Seleção","Select…":"Selecionar…","Send":"Enviar","Send a confirmation mail with a link to set the password.":"","Set my password":"Defina minha senha","Set your password":"Defina sua senha","Settings":"Configurações","Sharing":"Compartilhamento","Sharing for {title}":"Compartilhamento para {title}","Short Name":"Nome curto","Short name":"Nome curto","Show":"Mostrar","Show All":"Mostrar tudo","Show Replies":"Mostrar respostas","Show groups of users below":"Mostrar grupos de usuários abaixo","Show item":"Mostrar item","Show search button?":"Mostrar botão de pesquisa?","Show search input?":"Mostrar campo de pesquisa?","Show sorting?":"Mostrar ordenação?","Show total results":"","Shrink sidebar":"Recolher barra lateral","Shrink toolbar":"Recolher barra de ferramentas","Sign in to start session":"Faça login para iniciar a sessão","Site":"Site","Site Administration":"Administração do site","Site Map":"Mapa do site","Site Setup":"Configuração do site","Sitemap":"Mapa do site","Size: {size}":"Tamanho: {size}","Small":"Pequeno","Sorry, something went wrong with your request":"Desculpe, algo deu errado com sua requisição","Sort By":"","Sort By:":"Ordenar por:","Sort on":"Ordenado por","Sort on label":"Rótulo de ordenação","Sort on options":"Opções de ordenação","Sort transactions by User-Name, Path or Date":"","Sorted":"","Source":"Fonte","Specify a youtube video or playlist url":"Informe a url para um vídeo ou uma playlist do YouTube","Split":"Dividir","Start Date":"Data de Início","Start of the recurrence":"Início da recorrência","Start password reset":"Redefinir senha","State":"Estado","Status":"","Stop compare":"Pare de comparar","String":"Texto","Stripe alternate rows with color":"Alternar cores das linhas","Styling":"Estilo","Subject":"Assunto","Success":"Sucesso","Successfully Undone Transactions":"","Summary":"Resumo","Summary view":"","Switch to":"Mudar para","Table":"Tabela","Table of Contents":"Tabela de conteúdos","Tabular view":"","Tags":"Tags","Tags to add":"Tags a serem adicionadas","Tags to remove":"Tags a serem removidas","Target":"","Target Path (Required)":"","Target memory size per cache in bytes":"Tamanho de memória destinada para o cache em bytes","Target number of objects in memory per cache":"Número de objetos na memória para o cache","Target url path must start with a slash.":"","Text":"Texto","Thank you.":"Obrigado.","The Database Manager allow you to view database status information":"O Gerenciador de banco de dados permite que você visualize informações de status do banco de dados","The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again.":"","The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable.":"O servidor de backend não está respondendo, verifique se você inicializou o Plone, verifique o apiPath de objeto de configuração do seu projeto (ou se você está usando o proxy interno, devProxyToApiPath) ou a variável ambiente RAZZLE_API_PATH Volto.","The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources.":"O servidor de backend está respondendo, mas os cabeçalhos CORS não estão configurados corretamente e o navegador negou o acesso aos recursos de backend.","The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators.":"O servidor de backend do seu site não está respondendo, pedimos desculpas pelo inconveniente. Por favor, tente recarregar a página e tente novamente. Se o problema persistir, entre em contato com os administradores do site.","The button presence disables the live search, the query is issued when you press ENTER":"A presença do botão desativa a busca ativa, a consulta é realizada apenas quando você pressiona ENTER","The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.":"","The item could not be deleted.":"O item não pôde ser excluído.","The link address is:":"O endereço do link é:","The provided alternative url already exists!":"","The registration process has been successful. Please check your e-mail inbox for information on how activate your account.":"O processo de registro foi bem sucedido. Verifique sua caixa de entrada de e-mail para obter informações sobre como ativar sua conta.","The working copy was discarded":"A cópia de trabalho foi descartada.","The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.":"O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos.","There is a configuration problem on the backend":"Há um problema de configuração no backend","There were some errors":"Houve alguns erros","There were some errors.":"Houve alguns erros.","Third":"Terceiro","This Page is referenced by the following items:":"","This has an ongoing working copy in {title}":"Este conteúdo tem uma cópia de trabalho ativa em {title}","This is a reserved name and can't be used":"Este é um nome reservado e não pode ser usado","This is a working copy of {title}":"Esta é uma cópia de trabalho de {title}","This item was locked by {creator} on {date}":"Este item foi bloqueado por {creator} em {date}","This name will be displayed in the URL.":"Este nome será exibido na URL.","This page does not seem to exist…":"Esta página parece não existir…","This rule is assigned to the following locations:":"","Time":"Hora","Title":"Título","Title field error. Value not provided or already existing.":"","Total active and non-active objects":"Total de objetos ativos e não ativos","Total comments":"Total de comentários","Total number of objects in each cache":"Número total de objetos em cada cache","Total number of objects in memory from all caches":"Número total de objetos na memória de todos os caches","Total number of objects in the database":"Número total de objetos no banco de dados","Transactions":"","Transactions Checkbox":"","Transactions Have Been Sorted":"","Transactions Have Been Unsorted":"","Translate to {lang}":"Traduza para {lang}","Translation linked":"Tradução vinculada","Translation linking removed":"Vínculo de tradução removido","Triggering event field error. Please select a value":"","Type":"Tipo","Type a Video (YouTube, Vimeo or mp4) URL":"Digite uma URL de vídeo (YouTube, Vimeo ou mp4)","Type text...":"Digite texto...","Type text…":"Digite texto…","Type the heading…":"","Type the title…":"Digite o título…","UID":"UID","URL Management":"","URL Management for {title}":"","Unassign":"","Unassigned":"","Unauthorized":"Não autorizado","Undo":"Desfazer","Undo Controlpanel":"","Unfold":"Expandir","Unified":"Unificado","Uninstall":"Desinstalar","Unknown Block":"Bloco Desconhecido","Unlink translation for":"Desvincular a tradução para","Unlock":"Destravar","Unsorted":"","Update":"Atualizar","Update installed addons":"Atualizar complementos instalados","Update installed addons:":"Atualização de complementos instalados:","Updates available":"Atualizações disponíveis","Upload":"Enviar","Upload a lead image in the 'Lead Image' content field.":"Enviar uma imagem para o campo de imagem principal.","Upload a new image":"Enviar uma nova imagem","Upload files":"Enviar arquivos","Uploading files":"Enviando arquivos","Uploading image":"Enviando imagem","Use the form below to define the new content rule":"","Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.":"","Used for programmatic access to the fieldset.":"Usado para acesso programático ao conjunto de campos.","User":"Usuário","User Group Membership":"Participação de usuário em grupos","User Group Settings":"Configurações de usuários e grupos","User created":"Usuário criado","User name":"Nome de usuário","User roles updated":"Papéis do grupo atualizados","Username":"Nome de usuário","Users":"Usuários","Users and Groups":"Usuários e Grupos","Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.":"","Variation":"Variação","Version Overview":"Versões","Video":"Vídeo","Video URL":"URL do vídeo","View":"Visão","View changes":"Ver mudanças","View this revision":"Ver esta revisão","View working copy":"Exibir a cópia de trabalho","Viewmode":"Visão","Vocabulary term":"Termo de vocabulário","Vocabulary term title":"Título do termo de vocabulário","Vocabulary terms":"Termos de vocabulário","Warning Regarding debug mode":"Aviso em relação ao modo de depuração","We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.":"Pedimos desculpas pelo inconveniente, mas o backend do site que você está acessando não está disponível agora. Por favor, tente de novo mais tarde.","We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.":"Pedimos desculpas pelo inconveniente, mas a página que você estava tentando acessar não está neste endereço. Você pode usar os links abaixo para ajudá-lo a encontrar o que você está procurando.","We apologize for the inconvenience, but you don't have permissions on this resource.":"Pedimos desculpas pelo inconveniente, mas você não tem permissões neste recurso.","Weeek day of month":"Dia do mês","Weekday":"Dia da semana","Weekly":"Semanalmente","What":"O quê","When":"Quando","When this date is reached, the content will nolonger be visible in listings and searches.":"Quando chegar a esta data, o conteúdo deixará de ficar visível nas listagens e nas pesquisas.","Whether or not execution of further rules should stop after this rule is executed":"","Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops":"","Whether or not the rule is currently enabled":"","Who":"Quem","Wide":"Largo","Workflow Change Loading Message":"Alterando os estados...","Workflow updated.":"Workflow atualizado.","Yearly":"Anualmente","Yes":"Sim","You are trying to access a protected resource, please {login} first.":"Você está tentando acessar um recurso protegido, por favor, {login} primeiro.","You are using an outdated browser":"Você está usando um navegador desatualizado","You can add a comment by filling out the form below. Plain text formatting.":"Você pode adicionar um comentário preenchendo o formulário abaixo. Formatação de texto simples.","You can control who can view and edit your item using the list below.":"Você pode controlar quem pode visualizar e editar seu item usando a lista abaixo.","You can view the difference of the revisions below.":"Você pode ver a diferença das revisões abaixo.","You can view the history of your item below.":"Você pode ver o histórico do seu item abaixo.","You can't paste this content here":"Você não pode colar este conteúdo aqui","You have been logged out from the site.":"","Your email is required for reset your password.":"Seu e-mail é necessário para redefinir sua senha.","Your password has been set successfully. You may now {link} with your new password.":"Sua senha foi definida com sucesso. Agora você pode {link} com sua nova senha.","Your preferred language":"O seu idioma preferido","Your usernaame is required for reset your password.":"Seu nome de usuário é necessário para redefinir sua senha.","box_forgot_password_option":"Esqueceu sua senha?","common":"Padrão","compare_to":"Comparar com","delete":"excluir","deprecated_browser_notice_message":"Você está usando {browsername} {browserversion} que está sem suporte pelo seu desenvolvedor. Isto significa que não existem mais atualizações de segurança e que ele não suporta as funcionalidades atuais da web, Por favor, atualize seu navegador","description":"Descrição","description_lost_password":"Por motivos de segurança, armazenamos sua senha criptografada e não podemos enviá-la para você. Se você deseja redefinir sua senha, preencha o formulário abaixo e enviaremos um e-mail para o endereço que você forneceu quando se cadastrou para iniciar o processo de redefinição de sua senha.","description_sent_password":"Sua solicitação de redefinição de senha foi enviada. Ele deve chegar em sua caixa de correio em breve. Ao receber a mensagem, visite o endereço que ela contém para redefinir sua senha.","draft":"Rascunho","email":"E-mail","event_alldates":"Todas as datas","event_attendees":"Participantes","event_contactname":"Pessoa de contato","event_contactphone":"Telefone de contato","event_website":"Site","event_what":"O quê","event_when":"Quando","event_where":"Onde","heading_sent_password":"Sua solicitação de redefinição de senha foi enviada","hero":"Herói","html":"HTML","image":"Imagem","integer":"Valor deve ser um número inteiro","intranet":"Intranet","label_my_email_is":"Meu endereço de e-mail é","label_my_username_is":"Meu nome de usuário é<<<<<<< HEAD","leadimage":"Imagem principal","listing":"Listagem","loading":"Carregando","log in":"acessar","maps":"mapas","maxLength":"Comprimento máximo","maximum":"Valor máximo","media":"Mídia","minLength":"Comprimento mínimo","minimum":"Valor mínimo","mostUsed":"Mais usados","no":"Não","no workflow state":"Sem estado de workflow","number":"Valor deve ser numérico","of the month":"do mês","or try a different page.":"ou tente uma página diferente","others":"outros","private":"privado","published":"publicado","querystring-widget-select":"Selecionar","results found":"resultados","return to the site root":"retornar à raiz do site","rrule_and":"e","rrule_approximate":"(~aproximadamente)","rrule_at":"em","rrule_dateFormat":"[day], [month], [year]","rrule_day":"dia","rrule_days":"dias","rrule_every":"a cada","rrule_for":"para","rrule_hour":"hora","rrule_hours":"horas","rrule_in":"em","rrule_last":"última","rrule_minutes":"minutos","rrule_month":"mês","rrule_months":"meses","rrule_nd":"nd","rrule_on":"em","rrule_on the":"no","rrule_or":"ou","rrule_rd":"rd","rrule_st":"st","rrule_th":"th","rrule_the":"o","rrule_time":"vezz","rrule_times":"vezes","rrule_until":"até","rrule_week":"semana","rrule_weekday":"dia da semana","rrule_weekdays":"dias da semana","rrule_weeks":"semanas","rrule_year":"ano","rrule_years":"anos","skiplink-footer":"Ir para o rodapé","skiplink-main-content":"Ir para o conteúdo","skiplink-navigation":"Ir para a navegação","sort":"ordenar","table":"tabela","text":"texto","title":"título","toc":"tabela de conteúdos","upgradeVersions":"","url":"url","user avatar":"avatar do usuário","video":"vídeo","visit_external_website":"Visitar site externo","workingCopyErrorUnauthorized":"","workingCopyGenericError":"","yes":"Sim","{count, plural, one {Upload {count} file} other {Upload {count} files}}":"{count, plural, one {Enviar {count} arquivo} other {Enviar {count} arquivos}}","{count} selected":"{count} selecionados","{id} Content Type":"Tipo de conteúdo {id}","{id} Schema":"Esquema {id}","{title} copied.":"{title} copiado.","{title} cut.":"{title} cortado.","{title} has been deleted.":"{title} foi excluído."} \ No newline at end of file +{"

Add some HTML here

":"

Adicione o HTML aqui

","Accessibility":"Acessibilidade","Account Registration Completed":"Cadastro de Conta Finalizado","Account activation completed":"Ativação completa","Action":"Ação","Action changed":"","Action: ":"","Actions":"Ações","Activate and deactivate":"Ativar e desativar","Active":"","Active content rules in this Page":"","Add":"Adicionar","Add (object list)":"Adicionar","Add Addons":"Adicione complementos","Add Content":"Adicionar conteúdo","Add Content Rule":"","Add Rule":"","Add Translation…":"Adicionar tradução…","Add User":"Adicionar usuário","Add a description…":"Adicionar uma descrição…","Add a new alternative url":"","Add action":"","Add block":"Adicionar Bloco","Add block…":"Adicionar bloco…","Add condition":"","Add content rule":"","Add criteria":"Adicionar critério","Add date":"Adicionar data","Add field":"Adicionar campo","Add fieldset":"Adicionar conjunto de campos","Add group":"Adicionar grupo","Add new content type":"Adicionar novo tipo de conteúdo","Add new group":"Adicionar novo grupo","Add new user":"Adicionar novo usuário","Add to Groups":"Adicionar a grupos","Add users to group":"Adicionar usuários ao grupo","Add vocabulary term":"Adicionar termo de vocabulário","Add {type}":"Adicionar {type}","Add-Ons":"Complementos","Add-on Configuration":"Configuração de complemento","Add-ons":"Complementos","Add-ons Settings":"Configurações dos complementos","Added":"","Additional date":"Outra data","Addon could not be installed":"","Addon could not be uninstalled":"","Addon could not be upgraded":"","Addon installed succesfuly":"","Addon uninstalled succesfuly":"","Addon upgraded succesfuly":"","Album view":"","Alias":"","Alias has been added":"","Alignment":"Alinhamento","All":"Todos","All content":"","All existing alternative urls for this site":"","Alphabetically":"Alfabeticamente","Alt text":"Descrição Alt","Alt text hint":"Deixe em branco se a imagem for puramente decorativa.","Alt text hint link text":"Descreve o propósito da imagem.","Alternative url path (Required)":"","Alternative url path must start with a slash.":"","Alternative url path → target url path (date and time of creation, manually created yes/no)":"","Applied to subfolders":"","Applies to subfolders?":"","Apply to subfolders":"","Apply working copy":"Aplicar a cópia de trabalho","Are you sure you want to delete this field?":"Você realmente deseja deletar este campo?","Are you sure you want to delete this fieldset including all fields?":"Você realmente deseja deletar este fieldset com todos os campos?","Ascending":"Ascendente","Assignments":"","Available":"Disponível","Available content rules:":"","Back":"Voltar","Background color":"Cor de fundo","Base":"Base","Base search query":"Base da consulta para busca","Block":"Bloco","Both email address and password are case sensitive, check that caps lock is not enabled.":"O endereço de e-mail e a senha diferenciam maiúsculas de minúsculas. Certifique-se que o caps lock não está ativado.","Breadcrumbs":"Navegação estrutural","Browse":"Procurar","Browse the site, drop an image, or type an URL":"Navegue no site, arraste uma imagem ou digite um URL","By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator.":"Por padrão, as permissões do contêiner deste item são herdadas. Se você desabilitar isso, apenas as permissões de compartilhamento definidas explicitamente serão válidas. Na visão geral, o símbolo {inherited} indica um valor herdado. Da mesma forma, o símbolo {global} indica uma função global que é gerenciada pelo administrador do site.","By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.":"","Cache Name":"Nome do cache","Can not edit Layout for {type} content-type as it doesn't have support for Volto Blocks enabled":"Não é possível editar layout para o tipo de conteúdo {type} , pois não tem suporte para Blocos Volto ativados","Can not edit Layout for {type} content-type as the Blocks behavior is enabled and read-only":"Não é possível editar layout para o tipo de conteúdo {type}, pois o comportamento de Blocos está ativado mas somentepara leitura","Cancel":"Cancelar","Cell":"Célula","Center":"Centro","Change Note":"Alterar Nota","Change Password":"Alterar senha","Change State":"Alterar estado","Change workflow state recursively":"Alterar o estado de workflow recursivamente","Changes applied.":"Alterações aplicadas.","Changes saved":"Alterações salvas","Changes saved.":"Alterações guardadas.","Checkbox":"Caixa de verificação","Choices":"Escolhas","Choose Image":"Escolha Imagem","Choose Target":"Escolha Alvo","Choose a file":"Escolha um arquivo","Clear":"Limpar","Clear filters":"Limpar filtros","Click to download full sized image":"Clique para baixar a imagem em tamanho original","Close":"Fechar","Close menu":"Fechar menu","Code":"Código","Collapse item":"Colapsar item","Collection":"Coleção","Color":"Cor","Comment":"Comentar","Commenter":"Comentador","Comments":"Comentários","Compare":"Comparar","Condition changed":"","Condition: ":"","Configure Content Rule":"","Configure Content Rule: {title}":"","Configure content rule":"","Confirm password":"Confirmar senha","Connection refused":"Conexão recusada","Contact":"Contato","Contact form":"Formulário de contato","Contained items":"Itens contidos","Content":"Conteúdo","Content Rule":"","Content Rules":"","Content rules for {title}":"","Content rules from parent folders":"","Content type created":"Tipo de conteúdo criado","Content type deleted":"Tipo de conteúdo removido","Contents":"Conteúdo","Controls":"Controles","Copy":"Copiar","Copy blocks":"Copiar blocos","Copyright":"Copyright","Copyright statement or other rights information on this item.":"Declaração de copyright ou outras informações de direitos sobre este item.","Create working copy":"Criar cópia de trabalho","Created by {creator} on {date}":"Criado por {creator} em {date}","Created on":"Criado em","Creator":"Autor","Creators":"Autores","Criteria":"Critérios","Current filters applied":"Filtros atualmente aplicados","Current password":"Senha atual","Cut":"Cortar","Cut blocks":"Recortar blocos","Daily":"Diariamente","Database":"Base de dados","Database Information":"Informações do banco de dados","Database Location":"Localização do banco de dados","Database Size":"Tamanho do banco de dados","Database main":"Banco de dados principal","Date":"Data","Date (newest first)":"Data (mais novo primeiro)","Default":"Padrão","Default view":"","Delete":"Excluir","Delete Group":"Excluir Grupo","Delete Type":"Excluir Tipo","Delete User":"Excluir Usuário","Delete action":"","Delete blocks":"Excluir blocos","Delete col":"Excluir coluna","Delete condition":"","Delete row":"Excluir linha","Deleted":"","Depth":"Profundidade","Descending":"Descendente","Description":"Descrição","Diff":"Diferenças","Difference between revision {one} and {two} of {title}":"Diferenças entre as revisões {one} e {two} de {title}","Disable":"","Disable apply to subfolders":"","Disabled":"","Disabled apply to subfolders":"","Distributed under the {license}.":"Distribuído sob a licença {license}.","Divide each row into separate cells":"Dividir cada linha em células separadas","Do you really want to delete the following items?":"Você realmente quer excluir os itens seguintes?","Do you really want to delete the group {groupname}?":"Você realmente quer excluir o grupo {groupname}?","Do you really want to delete the type {typename}?":"Você realmente quer excluir o tipo {typename}?","Do you really want to delete the user {username}?":"Você realmente quer excluir o usuário {username}?","Do you really want to delete this item?":"Você realmente quer excluir este item?","Document":"Documento","Document view":"","Download Event":"Baixar evento","Drag and drop files from your computer onto this area or click the “Browse” button.":"Arraste e solte arquivos do seu computador para esta área ou clique no botão \"Procurar\".","Drop file here to replace the existing file":"Solte um arquivo aqui para substituir o arquivo existente","Drop file here to upload a new file":"Solte um arquivo aqui para enviar um novo arquivo","Drop files here ...":"Soltar aquivos aqui…","E-mail":"E-mail","E-mail addresses do not match.":"Os endereços de e-mail não coincidem.","Edit":"Editar","Edit Rule":"","Edit comment":"Editar comentário","Edit field":"Editar campo","Edit fieldset":"Editar conjunto de campos","Edit recurrence":"Editar recorrência","Edit values":"Editar valores","Edit {title}":"Editar {title}","Email":"E-mail","Email sent":"E-mail enviado","Embed code error, please follow the instructions and try again.":"Erro de código Embed, siga as instruções e tente novamente.","Empty object list":"Lista de objetos vazia","Enable":"","Enable editable Blocks":"Habilitar blocos editáveis","Enabled":"","Enabled here?":"","Enabled?":"","End Date":"Data Final","Enter URL or select an item":"Digite URL ou selecione um item","Enter a username above to search or click 'Show All'":"Digite um nome de usuário acima para pesquisar ou clique em 'Mostrar todos'","Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.":"Digite um endereço de e-mail. Este será o seu nome de usuário. Respeitamos a sua privacidade e nunca iremos ceder o seu endereço a terceiros ou expô-lo onde quer que seja.","Enter full name, e.g. John Smith.":"Digite o nome completo. Por exemplo, José da Silva.","Enter map Embed Code":"Informe o código Embed do mapa","Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.":"","Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.":"","Enter your current password.":"Digite sua senha atual.","Enter your email for verification.":"Informe seu e-mail para verificação.","Enter your new password. Minimum 5 characters.":"Digite sua nova senha. Mínimo de 5 caracteres.","Enter your username for verification.":"Informe seu nome de usuário para verificação.","Error":"Erro","ErrorHeader":"","Event":"","Event listing":"","Event view":"","Exclude from navigation":"Excluir da navegação","Exclude this occurence":"Exclua essa ocorrência","Excluded from navigation":"Excluído da navegação","Existing alternative urls for this item":"","Expand sidebar":"Expandir barra lateral","Expiration Date":"Data de expiração","Expiration date":"Data de validade","Expired":"Expirado","External URL":"URL externa","Facet":"Faceta","Facet widget":"Widget faceta","Facets":"Facetas","Facets on left side":"Facetas no lado esquerdo","Facets on right side":"Facetas no lado direito","Facets on top":"Facetas no topo","Failed To Undo Transactions":"","Field":"Campo","File":"Arquivo","File size":"Tamanho do arquivo","File view":"","Filename":"Nome do arquivo","Filter Rules:":"","Filter by prefix":"","Filter users by groups":"Filtrar usuários por grupos","Filter…":"Filtrar…","First":"Primeiro","Fixed width table cells":"Células de tabela de largura fixa","Fold":"Colapsar","Folder":"Pasta","Folder listing":"","Forbidden":"Restrito","Fourth":"Quarto","From":"E-mail","Full":"Cheia","Full Name":"Nome completo","Fullname":"Nome completo","GNU GPL license":"Licença GNU GPL","General":"Geral","Global role":"Papel global","Google Maps Embedded Block":"Bloco Google Maps","Group":"Grupo","Group created":"Grupo criado","Group roles updated":"Papéis do grupo atualizados","Groupname":"Nome do grupo","Groups":"Grupos","Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group.":"Grupos são coleções lógicas de usuários, como departamentos e unidades de negócios. Os grupos não estão diretamente relacionados com permissões em nível global, você normalmente usa Funções para isso - e permite que certos Grupos tenham um papel particular. O símbolo{plone_svg}dica um papel herdado da adesão a outro grupo.","Header cell":"Célula de cabeçalho","Headline":"Chamada","Headline level":"","Hidden facets will still filter the results if proper parameters are passed in URLs":"Facetas ocultas ainda filtrarão os resultados se parâmetros adequados forem passados em URLs","Hide Replies":"Ocultar respostas","Hide facet?":"Ocultar faceta?","History":"Histórico","History Version Number":"Número da versão","History of {title}":"Histórico de {title}","Home":"Início","ID":"ID","If all of the following conditions are met:":"","If selected, this item will not appear in the navigation tree":"Se selecionado, este item não aparecerá na árvore de navegação","If this date is in the future, the content will not show up in listings and searches until this date.":"Se essa data for no futuro, o conteúdo não aparecerá em listagens e pesquisas até esta data.","If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it.":"Se você tiver certeza de que este usuário abandonou o objeto, você pode desbloquear o objeto. Em seguida, você poderá editá-lo.","If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}.":"Se você tiver certeza de que tem o endereço web correto, mas está encontrando um erro, entre em contato com o {site_admin}.","Image":"Imagem","Image gallery":"Galeria de imagem","Image size":"Tamanho da imagem","Image view":"","Include this occurence":"Inclua esta ocorrência","Info":"Informação","InfoUserGroupSettings":"Você selecionou a opção \"muitos usuários\" ou \"muitos grupos\". Por isto, este painel necessita de um filtro para exibir usuários e grupos. Caso queira ver os usuários e grupos imediatamente, vá até configurações de usuários e grupos.","Inherit permissions from higher levels":"Herdar permissões de níveis superiores","Inherited value":"Herdar valor","Insert col after":"Inserir coluna após","Insert col before":"Inserir coluna antes","Insert row after":"Inserir linha após","Insert row before":"Inserir linha antes","Install":"Instalar","Installed":"Instalado","Installed version":"Versão instalada","Installing a third party add-on":"Instalando um complemento de terceiros","Interval Daily":"Intervalo Diário","Interval Monthly":"Intervalo Mensal","Interval Weekly":"Intervalo Semanal","Interval Yearly":"Intervalo Anual","Item batch size":"Tamanho do lote de itens","Item succesfully moved.":"Item movido com sucesso.","Item(s) copied.":"Itens copiados.","Item(s) cut.":"Itens cortados.","Item(s) has been updated.":"Itens atualizados.","Item(s) pasted.":"Itens colados.","Item(s) state has been updated.":"O estado dos itens foi atualizado.","Items":"Itens","Items must be unique.":"Os itens devem ser únicos.","Items to be deleted:":"","Label":"Rótulo","Language":"Idioma","Language independent field.":"Campo independente da linguagem.","Large":"Grande","Last":"Último","Last comment date":"Data do último comentário","Last modified":"Última modificação","Latest version":"Última versão","Layout":"Layout","Lead Image":"Imagem principal","Left":"Esquerda","Link":"Link","Link more":"Mais","Link redirect view":"","Link title":"Título do link","Link to":"Link para","Link translation for":"Linkar tradução para","Listing":"Listagem","Listing view":"","Load more":"Carregar mais","Loading":"Carregando","Log In":"Entrar","Log in":"Entrar","Logged out":"","Login":"Entrar","Login Failed":"Falha na autenticação","Login Name":"Nome de usuário","Logout":"Sair","Made by {creator} on {date}. This is not a working copy anymore, but the main content.":"Criado por {creator} em {date}. Esta não é mais uma cópia de trabalho, mas sim o conteúdo final.","Make the table compact":"Compactar a tabela","Manage Translations":"Gerenciar traduções","Manage content…":"","Manage translations for {title}":"Gerenciar traduções para {title}","Manual":"","Manually or automatically added?":"","Maps":"Mapas","Maps URL":"Url do Mapa","Maximum length is {len}.":"O comprimento máximo é {len}.","Maximum value is {len}.":"O valor máximo é {len}.","Medium":"Médio","Message":"Mensagem","Minimum length is {len}.":"O comprimento mínimo é {len}.","Minimum value is {len}.":"O valor mínimo é {len}.","Moderate Comments":"Moderar comentários","Moderate comments":"Moderar comentários","Monday and Friday":"Segunda e sexta-feira","Month day":"Dia do mês","Monthly":"Mensalmente","More":"Mais","Mosaic layout":"","Move down":"","Move to bottom of folder":"Mover para o final da pasta","Move to top of folder":"Mover para o topo da pasta","Move up":"","Multiple choices?":"Múltipla escolha?","My email is":"Meu e-mail é","My username is":"Meu nome de usuário é","Name":"Nome","Navigate back":"Voltar","Navigation":"Navegação","New password":"Nova senha","News Item":"Notícia","News item view":"","No":"Não","No Transactions Found":"","No Transactions Selected":"","No Transactions Selected To Do Undo":"","No Video selected":"Nenhum vídeo selecionado","No addons found":"Nenhum complemento encontrado","No connection to the server":"","No image selected":"Nenhuma imagem selecionada","No image set in Lead Image content field":"Nenhuma imagem definida no campo de imagem principal","No image set in image content field":"Nenhuma imagem definida no campo de imagem","No items found in this container.":"Não foram encontrados itens nesta pasta.","No items selected":"Nenhum item selecionado","No map selected":"Nenhum mapa selecionado","No occurences set":"Sem ocorrências definidas","No options":"Sem opções","No results found":"Nenhum resultado encontrado","No results found.":"Nenhum resultado encontrado.","No selection":"Nenhuma seleção","No uninstall profile":"Sem perfil de desinstalação","No user found":"Nenhum usuário encontrado","No value":"Sem valor","No workflow":"Sem workflow","None":"Nenhum","Note":"","Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.":"Observe que as funções definidas aqui se aplicam diretamente a um usuário. O símbolo{plone_svg}dica um papel herdado da adesão a um grupo.","Number of active objects":"Número de objetos ativos","Object Size":"Tamanho do objeto","Occurences":"Ocorrências","Ok":"Ok","Only lowercase letters (a-z) without accents, numbers (0-9), and the characters \"-\", \"_\", and \".\" are allowed.":"","Open in a new tab":"Abrir em nova aba","Open menu":"Abrir menu","Open object browser":"Abrir navegador de objetos","Origin":"Origem","Page":"Página","Parent fieldset":"Conjunto de campos","Password":"Senha","Password reset":"Redefinição de senha","Passwords do not match.":"As senhas não coincidem.","Paste":"Colar","Paste blocks":"Colar blocos","Perform the following actions:":"","Permissions have been updated successfully":"Permissões atualizadas com sucesso","Permissions updated":"Permissões atualizadas","Personal Information":"Informações pessoais","Personal Preferences":"Preferências pessoais","Personal tools":"Ferramentas pessoais","Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first.":"Pessoas responsáveis pela criação do conteúdo deste item. Por favor, insira uma lista de nomes de usuário, um por linha. O autor principal deve vir primeiro.","Please enter a valid URL by deleting the block and adding a new video block.":"Digite uma URL válida excluindo o bloco e adicionando um novo bloco de vídeo.","Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the .","Please fill out the form below to set your password.":"Preencha o formulário abaixo para definir sua senha.","Please search for users or use the filters on the side.":"Procure por usuários ou use os filtros na lateral.","Please upgrade to plone.restapi >= 8.24.0.":"Por favor, atualize para plone.restapi >= 8.24.0.","Plone Foundation":"Fundação Plone","Plone Site":"Site Plone","Plone{reg} Open Source CMS/WCM":"Plone{reg} Open Source CMS/WCM","Position changed":"","Possible values":"Valores possíveis","Potential link breakage":"","Powered by Plone & Python":"Criado com Plone e Python","Preferences":"Preferências","Prettify your code":"Re-formatar seu código","Preview":"Pré-visualização","Preview Image URL":"Url de imagem de pré-visualização","Profile":"Perfil","Properties":"Propriedades","Publication date":"Data de publicação","Publishing Date":"Data de publicação","Query":"Consulta","Re-enter the password. Make sure the passwords are identical.":"Reinsira a senha. Certifique-se de que as senhas são idênticas.","Read More…":"Leia Mais…","Rearrange items by…":"Reorganize itens por…","Recurrence ends":"Término da recorrência","Recurrence ends after":"Recorrência se encerra após","Recurrence ends on":"Recorrência se encerra em","Redo":"Refazer","Reduce complexity":"Reduzir complexidade","Register":"Cadastro","Registration form":"Formulário de cadastro","Relevance":"Relevância","Remove":"","Remove item":"Remover Item","Remove recurrence":"Remover a recorrência","Remove selected":"","Remove term":"Remover o termo","Remove users from group":"Remover usuários do grupo","Remove working copy":"Remover a cópia de trabalho","Rename":"Renomear","Rename Items Loading Message":"Renomeando os items","Rename items":"Renomear itens","Repeat":"Repetição","Repeat every":"Repete a cada","Repeat on":"Repete em","Replace existing file":"Substituir arquivo existente","Reply":"Responder","Required":"Obrigatório","Required input is missing.":"Falta informação obrigatória.","Reset term title":"Redefinir o título do termo","Results limit":"Limite de resultados","Results preview":"Visualização de resultados","Results template":"Modelo de resultados","Reversed order":"Ordem invertida","Revert to this revision":"Reverter para esta revisão","Review state":"Estado","Richtext":"Texto rico","Right":"Direita","Rights":"Direitos","Roles":"Papéis","Root":"Raiz","Rule added":"","Rule enable changed":"","Rules":"","Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.":"","Save":"Salvar","Save recurrence":"Salvar a recorrência","Saved":"","Schema":"Esquema","Schema updates":"Atualizações do esquema","Search":"Pesquisar","Search SVG":"SVG de busca","Search Site":"Pesquisar no site","Search block":"Bloco de busca","Search button label":"Rótulo do botão de busca","Search content":"Pesquisar conteúdo","Search for user or group":"Pesquisar por usuário ou grupo","Search group…":"Pesquisar grupo…","Search input label":"Rótulo da caixa de busca","Search results":"Resultados da pesquisa","Search results for {term}":"Resultados da pesquisa para {term}","Search users…":"Pesquisar usuários…","Searched for":"Busca por","Second":"Segundo","Section title":"Título da Seção","Select":"Selecionar","Select a date to add to recurrence":"Selecione uma data para adicionar à recorrência","Select columns to show":"Selecione colunas para mostrar","Select the transition to be used for modifying the items state.":"Selecione a transição a ser usada para modificar o estado dos itens.","Selected dates":"Datas selecionadas","Selected items":"Itens selecionados","Selected items - x of y":"Itens selecionados - x de y","Selection":"Seleção","Select…":"Selecionar…","Send":"Enviar","Send a confirmation mail with a link to set the password.":"","Set my password":"Defina minha senha","Set your password":"Defina sua senha","Settings":"Configurações","Sharing":"Compartilhamento","Sharing for {title}":"Compartilhamento para {title}","Short Name":"Nome curto","Short name":"Nome curto","Show":"Mostrar","Show All":"Mostrar tudo","Show Replies":"Mostrar respostas","Show groups of users below":"Mostrar grupos de usuários abaixo","Show item":"Mostrar item","Show search button?":"Mostrar botão de pesquisa?","Show search input?":"Mostrar campo de pesquisa?","Show sorting?":"Mostrar ordenação?","Show total results":"","Shrink sidebar":"Recolher barra lateral","Shrink toolbar":"Recolher barra de ferramentas","Sign in to start session":"Faça login para iniciar a sessão","Site":"Site","Site Administration":"Administração do site","Site Map":"Mapa do site","Site Setup":"Configuração do site","Sitemap":"Mapa do site","Size: {size}":"Tamanho: {size}","Small":"Pequeno","Sorry, something went wrong with your request":"Desculpe, algo deu errado com sua requisição","Sort By":"","Sort By:":"Ordenar por:","Sort on":"Ordenado por","Sort on label":"Rótulo de ordenação","Sort on options":"Opções de ordenação","Sort transactions by User-Name, Path or Date":"","Sorted":"","Source":"Fonte","Specify a youtube video or playlist url":"Informe a url para um vídeo ou uma playlist do YouTube","Split":"Dividir","Start Date":"Data de Início","Start of the recurrence":"Início da recorrência","Start password reset":"Redefinir senha","State":"Estado","Status":"","Stop compare":"Pare de comparar","String":"Texto","Stripe alternate rows with color":"Alternar cores das linhas","Styling":"Estilo","Subject":"Assunto","Success":"Sucesso","Successfully Undone Transactions":"","Summary":"Resumo","Summary view":"","Switch to":"Mudar para","Table":"Tabela","Table of Contents":"Tabela de conteúdos","Tabular view":"","Tags":"Tags","Tags to add":"Tags a serem adicionadas","Tags to remove":"Tags a serem removidas","Target":"Fonte","Target Path (Required)":"","Target memory size per cache in bytes":"Tamanho de memória destinada para o cache em bytes","Target number of objects in memory per cache":"Número de objetos na memória para o cache","Target url path must start with a slash.":"","Text":"Texto","Thank you.":"Obrigado.","The Database Manager allow you to view database status information":"O Gerenciador de banco de dados permite que você visualize informações de status do banco de dados","The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again.":"","The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable.":"O servidor de backend não está respondendo, verifique se você inicializou o Plone, verifique o apiPath de objeto de configuração do seu projeto (ou se você está usando o proxy interno, devProxyToApiPath) ou a variável ambiente RAZZLE_API_PATH Volto.","The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources.":"O servidor de backend está respondendo, mas os cabeçalhos CORS não estão configurados corretamente e o navegador negou o acesso aos recursos de backend.","The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators.":"O servidor de backend do seu site não está respondendo, pedimos desculpas pelo inconveniente. Por favor, tente recarregar a página e tente novamente. Se o problema persistir, entre em contato com os administradores do site.","The button presence disables the live search, the query is issued when you press ENTER":"A presença do botão desativa a busca ativa, a consulta é realizada apenas quando você pressiona ENTER","The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.":"","The item could not be deleted.":"O item não pôde ser excluído.","The link address is:":"O endereço do link é:","The provided alternative url already exists!":"","The registration process has been successful. Please check your e-mail inbox for information on how activate your account.":"O processo de registro foi bem sucedido. Verifique sua caixa de entrada de e-mail para obter informações sobre como ativar sua conta.","The working copy was discarded":"A cópia de trabalho foi descartada.","The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.":"O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos.","There is a configuration problem on the backend":"Há um problema de configuração no backend","There were some errors":"Houve alguns erros","There were some errors.":"Houve alguns erros.","Third":"Terceiro","This Page is referenced by the following items:":"","This has an ongoing working copy in {title}":"Este conteúdo tem uma cópia de trabalho ativa em {title}","This is a reserved name and can't be used":"Este é um nome reservado e não pode ser usado","This is a working copy of {title}":"Esta é uma cópia de trabalho de {title}","This item was locked by {creator} on {date}":"Este item foi bloqueado por {creator} em {date}","This name will be displayed in the URL.":"Este nome será exibido na URL.","This page does not seem to exist…":"Esta página parece não existir…","This rule is assigned to the following locations:":"","Time":"Hora","Title":"Título","Title field error. Value not provided or already existing.":"","Total active and non-active objects":"Total de objetos ativos e não ativos","Total comments":"Total de comentários","Total number of objects in each cache":"Número total de objetos em cada cache","Total number of objects in memory from all caches":"Número total de objetos na memória de todos os caches","Total number of objects in the database":"Número total de objetos no banco de dados","Transactions":"","Transactions Checkbox":"","Transactions Have Been Sorted":"","Transactions Have Been Unsorted":"","Translate to {lang}":"Traduza para {lang}","Translation linked":"Tradução vinculada","Translation linking removed":"Vínculo de tradução removido","Triggering event field error. Please select a value":"","Type":"Tipo","Type a Video (YouTube, Vimeo or mp4) URL":"Digite uma URL de vídeo (YouTube, Vimeo ou mp4)","Type text...":"Digite texto...","Type text…":"Digite texto…","Type the heading…":"","Type the title…":"Digite o título…","UID":"UID","URL Management":"","URL Management for {title}":"","Unassign":"","Unassigned":"","Unauthorized":"Não autorizado","Undo":"Desfazer","Undo Controlpanel":"","Unfold":"Expandir","Unified":"Unificado","Uninstall":"Desinstalar","Unknown Block":"Bloco Desconhecido","Unlink translation for":"Desvincular a tradução para","Unlock":"Destravar","Unsorted":"","Update":"Atualizar","Update installed addons":"Atualizar complementos instalados","Update installed addons:":"Atualização de complementos instalados:","Updates available":"Atualizações disponíveis","Upload":"Enviar","Upload a lead image in the 'Lead Image' content field.":"Enviar uma imagem para o campo de imagem principal.","Upload a new image":"Enviar uma nova imagem","Upload files":"Enviar arquivos","Uploading files":"Enviando arquivos","Uploading image":"Enviando imagem","Use the form below to define the new content rule":"","Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.":"","Used for programmatic access to the fieldset.":"Usado para acesso programático ao conjunto de campos.","User":"Usuário","User Group Membership":"Participação de usuário em grupos","User Group Settings":"Configurações de usuários e grupos","User created":"Usuário criado","User name":"Nome de usuário","User roles updated":"Papéis do grupo atualizados","Username":"Nome de usuário","Users":"Usuários","Users and Groups":"Usuários e Grupos","Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.":"","Variation":"Variação","Version Overview":"Versões","Video":"Vídeo","Video URL":"URL do vídeo","View":"Visão","View changes":"Ver mudanças","View this revision":"Ver esta revisão","View working copy":"Exibir a cópia de trabalho","Viewmode":"Visão","Vocabulary term":"Termo de vocabulário","Vocabulary term title":"Título do termo de vocabulário","Vocabulary terms":"Termos de vocabulário","Warning Regarding debug mode":"Aviso em relação ao modo de depuração","We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.":"Pedimos desculpas pelo inconveniente, mas o backend do site que você está acessando não está disponível agora. Por favor, tente de novo mais tarde.","We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.":"Pedimos desculpas pelo inconveniente, mas a página que você estava tentando acessar não está neste endereço. Você pode usar os links abaixo para ajudá-lo a encontrar o que você está procurando.","We apologize for the inconvenience, but you don't have permissions on this resource.":"Pedimos desculpas pelo inconveniente, mas você não tem permissões neste recurso.","Weeek day of month":"Dia do mês","Weekday":"Dia da semana","Weekly":"Semanalmente","What":"O quê","When":"Quando","When this date is reached, the content will nolonger be visible in listings and searches.":"Quando chegar a esta data, o conteúdo deixará de ficar visível nas listagens e nas pesquisas.","Whether or not execution of further rules should stop after this rule is executed":"","Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops":"","Whether or not the rule is currently enabled":"","Who":"Quem","Wide":"Largo","Workflow Change Loading Message":"Alterando os estados...","Workflow updated.":"Workflow atualizado.","Yearly":"Anualmente","Yes":"Sim","You are trying to access a protected resource, please {login} first.":"Você está tentando acessar um recurso protegido, por favor, {login} primeiro.","You are using an outdated browser":"Você está usando um navegador desatualizado","You can add a comment by filling out the form below. Plain text formatting.":"Você pode adicionar um comentário preenchendo o formulário abaixo. Formatação de texto simples.","You can control who can view and edit your item using the list below.":"Você pode controlar quem pode visualizar e editar seu item usando a lista abaixo.","You can view the difference of the revisions below.":"Você pode ver a diferença das revisões abaixo.","You can view the history of your item below.":"Você pode ver o histórico do seu item abaixo.","You can't paste this content here":"Você não pode colar este conteúdo aqui","You have been logged out from the site.":"","Your email is required for reset your password.":"Seu e-mail é necessário para redefinir sua senha.","Your password has been set successfully. You may now {link} with your new password.":"Sua senha foi definida com sucesso. Agora você pode {link} com sua nova senha.","Your preferred language":"O seu idioma preferido","Your usernaame is required for reset your password.":"Seu nome de usuário é necessário para redefinir sua senha.","box_forgot_password_option":"Esqueceu sua senha?","common":"Padrão","compare_to":"Comparar com","delete":"excluir","deprecated_browser_notice_message":"Você está usando {browsername} {browserversion} que está sem suporte pelo seu desenvolvedor. Isto significa que não existem mais atualizações de segurança e que ele não suporta as funcionalidades atuais da web, Por favor, atualize seu navegador","description":"Descrição","description_lost_password":"Por motivos de segurança, armazenamos sua senha criptografada e não podemos enviá-la para você. Se você deseja redefinir sua senha, preencha o formulário abaixo e enviaremos um e-mail para o endereço que você forneceu quando se cadastrou para iniciar o processo de redefinição de sua senha.","description_sent_password":"Sua solicitação de redefinição de senha foi enviada. Ele deve chegar em sua caixa de correio em breve. Ao receber a mensagem, visite o endereço que ela contém para redefinir sua senha.","draft":"Rascunho","email":"E-mail","event_alldates":"Todas as datas","event_attendees":"Participantes","event_contactname":"Pessoa de contato","event_contactphone":"Telefone de contato","event_website":"Site","event_what":"O quê","event_when":"Quando","event_where":"Onde","heading_sent_password":"Sua solicitação de redefinição de senha foi enviada","hero":"Herói","html":"HTML","image":"Imagem","integer":"Valor deve ser um número inteiro","intranet":"Intranet","label_my_email_is":"Meu endereço de e-mail é","label_my_username_is":"Meu nome de usuário é<<<<<<< HEAD","leadimage":"Imagem principal","listing":"Listagem","loading":"Carregando","log in":"acessar","maps":"mapas","maxLength":"Comprimento máximo","maximum":"Valor máximo","media":"Mídia","minLength":"Comprimento mínimo","minimum":"Valor mínimo","mostUsed":"Mais usados","no":"Não","no workflow state":"Sem estado de workflow","number":"Valor deve ser numérico","of the month":"do mês","or try a different page.":"ou tente uma página diferente","others":"outros","private":"privado","published":"publicado","querystring-widget-select":"Selecionar","results found":"resultados","return to the site root":"retornar à raiz do site","rrule_and":"e","rrule_approximate":"(~aproximadamente)","rrule_at":"em","rrule_dateFormat":"[day], [month], [year]","rrule_day":"dia","rrule_days":"dias","rrule_every":"a cada","rrule_for":"para","rrule_hour":"hora","rrule_hours":"horas","rrule_in":"em","rrule_last":"última","rrule_minutes":"minutos","rrule_month":"mês","rrule_months":"meses","rrule_nd":"nd","rrule_on":"em","rrule_on the":"no","rrule_or":"ou","rrule_rd":"rd","rrule_st":"st","rrule_th":"th","rrule_the":"o","rrule_time":"vezz","rrule_times":"vezes","rrule_until":"até","rrule_week":"semana","rrule_weekday":"dia da semana","rrule_weekdays":"dias da semana","rrule_weeks":"semanas","rrule_year":"ano","rrule_years":"anos","skiplink-footer":"Ir para o rodapé","skiplink-main-content":"Ir para o conteúdo","skiplink-navigation":"Ir para a navegação","sort":"ordenar","table":"tabela","text":"texto","title":"título","toc":"tabela de conteúdos","upgradeVersions":"","url":"url","user avatar":"avatar do usuário","video":"vídeo","visit_external_website":"Visitar site externo","workingCopyErrorUnauthorized":"","workingCopyGenericError":"","yes":"Sim","{count, plural, one {Upload {count} file} other {Upload {count} files}}":"{count, plural, one {Enviar {count} arquivo} other {Enviar {count} arquivos}}","{count} selected":"{count} selecionados","{id} Content Type":"Tipo de conteúdo {id}","{id} Schema":"Esquema {id}","{title} copied.":"{title} copiado.","{title} cut.":"{title} cortado.","{title} has been deleted.":"{title} foi excluído.","Image override":"Imagem","Please choose an existing content as source for this element":"Por favor escolha um conteúdo como fonte deste elemento.","Teaser":"Destaque","column":"coluna","columns":"colunas","head_title":"Chapéu"} \ No newline at end of file diff --git a/package.json b/package.json index 5e1ee5c..661b7b5 100644 --- a/package.json +++ b/package.json @@ -165,6 +165,9 @@ "eslint-plugin-prettier": "3.1.3", "jest-junit": "8.0.0", "mrs-developer": "*", + "@cypress/code-coverage": "^3.10.0", + "babel-plugin-transform-class-properties": "^6.24.1", + "cypress-fail-fast": "^5.0.1", "postcss": "8.3.11", "prettier": "2.0.5", "stylelint": "14.0.1", diff --git a/yarn.lock b/yarn.lock index 9a0a770..97187e3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29,6 +29,11 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.13.tgz#6aff7b350a1e8c3e40b029e46cbe78e24a913483" integrity sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw== +"@babel/compat-data@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733" + integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g== + "@babel/core@7.12.9": version "7.12.9" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" @@ -72,6 +77,27 @@ json5 "^2.2.1" semver "^6.3.0" +"@babel/core@^7.0.1": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f" + integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-module-transforms" "^7.20.7" + "@babel/helpers" "^7.20.7" + "@babel/parser" "^7.20.7" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + "@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.18.13", "@babel/generator@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" @@ -81,6 +107,15 @@ "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" +"@babel/generator@^7.17.9", "@babel/generator@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a" + integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw== + dependencies: + "@babel/types" "^7.20.7" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + "@babel/helper-annotate-as-pure@^7.14.5": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" @@ -106,6 +141,17 @@ browserslist "^4.20.2" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" + integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": version "7.14.6" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" @@ -209,6 +255,20 @@ "@babel/traverse" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helper-module-transforms@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43" + integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/helper-optimise-call-expression@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" @@ -252,6 +312,13 @@ dependencies: "@babel/types" "^7.18.6" +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818" @@ -300,6 +367,15 @@ "@babel/traverse" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helpers@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce" + integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" @@ -314,6 +390,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== +"@babel/parser@^7.13.0", "@babel/parser@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" + integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" @@ -1108,6 +1189,15 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" +"@babel/template@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/traverse@^7.1.0", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.9", "@babel/traverse@^7.7.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" @@ -1124,6 +1214,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.17.9", "@babel/traverse@^7.20.7": + version "7.20.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08" + integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.14.5", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" @@ -1133,6 +1239,15 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@babel/types@^7.20.2", "@babel/types@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" + integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + "@base2/pretty-print-object@1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047" @@ -1156,6 +1271,21 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== +"@cypress/code-coverage@^3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@cypress/code-coverage/-/code-coverage-3.10.0.tgz#2132dbb7ae068cab91790926d50a9bf85140cab4" + integrity sha512-K5pW2KPpK4vKMXqxd6vuzo6m9BNgpAv1LcrrtmqAtOJ1RGoEILXYZVost0L6Q+V01NyY7n7jXIIfS7LR3nP6YA== + dependencies: + "@cypress/webpack-preprocessor" "^5.11.0" + chalk "4.1.2" + dayjs "1.10.7" + debug "4.3.4" + execa "4.1.0" + globby "11.0.4" + istanbul-lib-coverage "3.0.0" + js-yaml "3.14.1" + nyc "15.1.0" + "@cypress/request@^2.88.10": version "2.88.10" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.10.tgz#b66d76b07f860d3a4b8d7a0604d020c662752cce" @@ -1180,6 +1310,24 @@ tunnel-agent "^0.6.0" uuid "^8.3.2" +"@cypress/webpack-preprocessor@^5.11.0": + version "5.16.0" + resolved "https://registry.yarnpkg.com/@cypress/webpack-preprocessor/-/webpack-preprocessor-5.16.0.tgz#68dbd8ba0fb4d14e8f3d346fa31a567617a5134d" + integrity sha512-cQM0pPMZ/3DjA8ohFL5vBOrkD7CCpk7nH8k0ML4pLJrN6WDeIHRWuFQRISZoNXom4KP2M0kJNxJ7fCV7EbOYIg== + dependencies: + "@babel/core" "^7.0.1" + "@babel/generator" "^7.17.9" + "@babel/parser" "^7.13.0" + "@babel/traverse" "^7.17.9" + bluebird "3.7.1" + debug "^4.3.2" + fs-extra "^10.1.0" + loader-utils "^2.0.0" + lodash "^4.17.20" + md5 "2.3.0" + source-map "^0.6.1" + webpack-virtual-modules "^0.4.4" + "@cypress/xvfb@^1.2.4": version "1.2.4" resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a" @@ -4125,6 +4273,11 @@ ansi-regex@^5.0.0, ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -4177,6 +4330,13 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= +append-transform@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-2.0.0.tgz#99d9d29c7b38391e6f428d28ce136551f0b77e12" + integrity sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== + dependencies: + default-require-extensions "^3.0.0" + aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -4187,6 +4347,11 @@ arch@^2.2.0: resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== +archy@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== + are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -4495,6 +4660,15 @@ axobject-query@^2.0.2: dependencies: ast-types-flow "0.0.7" +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + babel-eslint@10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" @@ -4507,6 +4681,25 @@ babel-eslint@10.1.0: eslint-visitor-keys "^1.0.0" resolve "^1.12.0" +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q== + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + babel-jest@^26.3.0, babel-jest@^26.6.3: version "26.6.3" resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" @@ -4531,6 +4724,13 @@ babel-loader@^8.0.6, babel-loader@^8.2.2: make-dir "^3.1.0" schema-utils "^2.6.5" +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w== + dependencies: + babel-runtime "^6.22.0" + babel-plugin-add-module-exports@0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25" @@ -4695,11 +4895,26 @@ babel-plugin-root-import@6.1.0: dependencies: slash "^1.0.0" +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + integrity sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA== + babel-plugin-syntax-jsx@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= +babel-plugin-transform-class-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + integrity sha512-n4jtBA3OYBdvG5PRMKsMXJXHfLYw/ZOmtxCLOOwz6Ro5XlrColkStLnz1AS1L2yfPA9BKJ1ZNlmVCLjAL9DSIg== + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-plugin-transform-define@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-define/-/babel-plugin-transform-define-2.0.1.tgz#6a34fd6ea89989feb75721ee4cce817ec779be7f" @@ -4762,7 +4977,7 @@ babel-preset-razzle@4.2.17: babel-plugin-transform-react-remove-prop-types "^0.4.24" chalk "^4.1.0" -babel-runtime@6.x, babel-runtime@^6.26.0, babel-runtime@^6.6.1: +babel-runtime@6.x, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.6.1: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== @@ -4770,6 +4985,47 @@ babel-runtime@6.x, babel-runtime@^6.26.0, babel-runtime@^6.6.1: core-js "^2.4.0" regenerator-runtime "^0.11.0" +babel-template@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg== + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA== + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + bail@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.4.tgz#7181b66d508aa3055d3f6c13f0a0c720641dde9b" @@ -4864,6 +5120,11 @@ blob-util@^2.0.2: resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== +bluebird@3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de" + integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg== + bluebird@3.7.2, bluebird@^3.3.5, bluebird@^3.5.5, bluebird@^3.7.2: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" @@ -5234,6 +5495,16 @@ cachedir@^2.3.0: resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== +caching-transform@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-4.0.0.tgz#00d297a4206d71e2163c39eaffa8157ac0651f0f" + integrity sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== + dependencies: + hasha "^5.0.0" + make-dir "^3.0.0" + package-hash "^4.0.0" + write-file-atomic "^3.0.0" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -5349,18 +5620,29 @@ chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4. escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== +chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" @@ -5395,6 +5677,11 @@ chardet@^0.7.0: resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + check-more-types@2.24.0, check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" @@ -6111,6 +6398,11 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + crypto-browserify@^3.11.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" @@ -6400,6 +6692,13 @@ cypress-axe@1.0.0: resolved "https://registry.yarnpkg.com/cypress-axe/-/cypress-axe-1.0.0.tgz#ab4e9486eaa3bb956a90a1ae40d52df42827b4f0" integrity sha512-QBlNMAd5eZoyhG8RGGR/pLtpHGkvgWXm2tkP68scJ+AjYiNNOlJihxoEwH93RT+rWOLrefw4iWwEx8kpEcrvJA== +cypress-fail-fast@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/cypress-fail-fast/-/cypress-fail-fast-5.0.1.tgz#b86803ec2df0292b55f7f2b0d9d9b7eb593fa359" + integrity sha512-8x1RGWki0Vldq3dNUuWnSUiDPBSdDqznSl8S8Z6aK3JBPaqMZOlVYWhCzoyymSpt4Ta8rL+IAuDJ/+5GA2faTA== + dependencies: + chalk "4.1.2" + cypress-file-upload@5.0.8: version "5.0.8" resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" @@ -6723,19 +7022,19 @@ date-fns@2.28.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== -dayjs@^1.10.4: +dayjs@1.10.7, dayjs@^1.10.4: version "1.10.7" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.7.tgz#2cf5f91add28116748440866a0a1d26f3a6ce468" integrity sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig== -debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: +debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: +debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -6846,6 +7145,13 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" +default-require-extensions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-3.0.1.tgz#bfae00feeaeada68c2ae256c62540f60b80625bd" + integrity sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw== + dependencies: + strip-bom "^4.0.0" + defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7590,6 +7896,11 @@ es5-shim@^4.5.13: resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef" integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg== +es6-error@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" + integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== + es6-shim@^0.35.5: version "0.35.6" resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0" @@ -7610,7 +7921,7 @@ escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== -escape-string-regexp@^1.0.5: +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= @@ -8363,7 +8674,7 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-cache-dir@^3.3.1: +find-cache-dir@^3.2.0, find-cache-dir@^3.3.1: version "3.3.2" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== @@ -8476,6 +8787,14 @@ for-in@^1.0.2: resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= +foreground-child@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" + integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^3.0.2" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -8585,7 +8904,12 @@ from@~0: resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= -fs-extra@10.1.0: +fromentries@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" + integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== + +fs-extra@10.1.0, fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== @@ -8920,6 +9244,11 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + globalthis@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9" @@ -8939,6 +9268,18 @@ globby@11.0.1: merge2 "^1.3.0" slash "^3.0.0" +globby@11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + globby@^11.0.1, globby@^11.0.2, globby@^11.0.4: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" @@ -9051,6 +9392,13 @@ harmony-reflect@^1.4.6: resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" @@ -9152,6 +9500,14 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" +hasha@^5.0.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.2.tgz#a48477989b3b327aea3c04f53096d816d97522a1" + integrity sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== + dependencies: + is-stream "^2.0.0" + type-fest "^0.8.0" + hast-to-hyperscript@^9.0.0: version "9.0.1" resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d" @@ -9791,7 +10147,7 @@ intl-messageformat@^7.7.0: intl-format-cache "^4.2.12" intl-messageformat-parser "^3.4.0" -invariant@^2.1.0, invariant@^2.1.1, invariant@^2.2.3, invariant@^2.2.4: +invariant@^2.1.0, invariant@^2.1.1, invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -9894,7 +10250,7 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-buffer@^1.1.5: +is-buffer@^1.1.5, is-buffer@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== @@ -10377,11 +10733,23 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= -istanbul-lib-coverage@^3.0.0: +istanbul-lib-coverage@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" + integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== +istanbul-lib-hook@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz#8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6" + integrity sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== + dependencies: + append-transform "^2.0.0" + istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" @@ -10392,6 +10760,18 @@ istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: istanbul-lib-coverage "^3.0.0" semver "^6.3.0" +istanbul-lib-processinfo@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz#366d454cd0dcb7eb6e0e419378e60072c8626169" + integrity sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg== + dependencies: + archy "^1.0.0" + cross-spawn "^7.0.3" + istanbul-lib-coverage "^3.2.0" + p-map "^3.0.0" + rimraf "^3.0.0" + uuid "^8.3.2" + istanbul-lib-report@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" @@ -10895,7 +11275,12 @@ js-string-escape@^1.0.1: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1: +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + +js-yaml@3.14.1, js-yaml@^3.13.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -11413,6 +11798,11 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= +lodash.flattendeep@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" + integrity sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== + lodash.includes@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" @@ -11649,6 +12039,15 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" +md5@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + mdast-squeeze-paragraphs@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97" @@ -12188,6 +12587,13 @@ node-notifier@^8.0.0: uuid "^8.3.0" which "^2.0.2" +node-preload@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/node-preload/-/node-preload-0.2.1.tgz#c03043bb327f417a18fee7ab7ee57b408a144301" + integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== + dependencies: + process-on-spawn "^1.0.0" + node-releases@^1.1.61: version "1.1.73" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" @@ -12309,6 +12715,39 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== +nyc@15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.1.0.tgz#1335dae12ddc87b6e249d5a1994ca4bdaea75f02" + integrity sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A== + dependencies: + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + caching-transform "^4.0.0" + convert-source-map "^1.7.0" + decamelize "^1.2.0" + find-cache-dir "^3.2.0" + find-up "^4.1.0" + foreground-child "^2.0.0" + get-package-type "^0.1.0" + glob "^7.1.6" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-hook "^3.0.0" + istanbul-lib-instrument "^4.0.0" + istanbul-lib-processinfo "^2.0.2" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.0.2" + make-dir "^3.0.0" + node-preload "^0.2.1" + p-map "^3.0.0" + process-on-spawn "^1.0.0" + resolve-from "^5.0.0" + rimraf "^3.0.0" + signal-exit "^3.0.2" + spawn-wrap "^2.0.0" + test-exclude "^6.0.0" + yargs "^15.0.2" + oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" @@ -12656,6 +13095,16 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +package-hash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-4.0.0.tgz#3537f654665ec3cc38827387fc904c163c54f506" + integrity sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ== + dependencies: + graceful-fs "^4.1.15" + hasha "^5.0.0" + lodash.flattendeep "^4.4.0" + release-zalgo "^1.0.0" + pad@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/pad/-/pad-3.2.0.tgz#be7a1d1cb6757049b4ad5b70e71977158fea95d1" @@ -13556,6 +14005,13 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== +process-on-spawn@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/process-on-spawn/-/process-on-spawn-1.0.0.tgz#95b05a23073d30a17acfdc92a440efd2baefdc93" + integrity sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg== + dependencies: + fromentries "^1.2.0" + process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -14956,6 +15412,13 @@ relateurl@^0.2.7: resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= +release-zalgo@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" + integrity sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA== + dependencies: + es6-error "^4.0.1" + remark-external-links@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345" @@ -15922,6 +16385,18 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== +spawn-wrap@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-2.0.0.tgz#103685b8b8f9b79771318827aa78650a610d457e" + integrity sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg== + dependencies: + foreground-child "^2.0.0" + is-windows "^1.0.2" + make-dir "^3.0.0" + rimraf "^3.0.0" + signal-exit "^3.0.2" + which "^2.0.1" + spdx-correct@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" @@ -16482,6 +16957,11 @@ superagent@3.8.2: qs "^6.5.1" readable-stream "^2.0.5" +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -16853,6 +17333,11 @@ to-camel-case@^1.0.0: dependencies: to-space-case "^1.0.0" +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -17040,7 +17525,7 @@ type-fest@^0.6.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== -type-fest@^0.8.1: +type-fest@^0.8.0, type-fest@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== @@ -17753,6 +18238,11 @@ webpack-virtual-modules@^0.2.2: dependencies: debug "^3.0.0" +webpack-virtual-modules@^0.4.4: + version "0.4.6" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" + integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== + webpack@4, webpack@4.46.0: version "4.46.0" resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" @@ -18078,7 +18568,7 @@ yargs@^13.3.2: y18n "^4.0.0" yargs-parser "^13.1.2" -yargs@^15.4.1: +yargs@^15.0.2, yargs@^15.4.1: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== From 8238d0baab8e2072b3ceaef14cce69a0f3e79fa0 Mon Sep 17 00:00:00 2001 From: Claudia Ifrim Date: Fri, 23 Dec 2022 11:59:27 +0200 Subject: [PATCH 03/14] update docker file --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90fb351..dfc11c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,16 +5,17 @@ COPY . /opt/frontend/ WORKDIR /opt/frontend/ # Update apt packages -RUN runDeps="openssl ca-certificates patch git" \ +RUN runDeps="openssl ca-certificates patch gosu git make tmux locales-all" \ && apt-get update \ && apt-get install -y --no-install-recommends $runDeps \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ - && chown -R node /opt/frontend/ \ + && npm install --location=global mrs-developer \ && cp jsconfig.json.prod jsconfig.json \ && mkdir -p /opt/frontend/src/addons \ && rm -rf /opt/frontend/src/addons/* \ - && npm install -g mrs-developer + && find /opt/frontend -not -user node -exec chown node {} \+ \ + && corepack enable USER node From dc58cfddd6c63042553402a05abff123e9dd90b4 Mon Sep 17 00:00:00 2001 From: Nilesh Date: Fri, 23 Dec 2022 16:02:50 +0530 Subject: [PATCH 04/14] update dockerfile --- Dockerfile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index dfc11c6..c9f5a1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,25 +10,28 @@ RUN runDeps="openssl ca-certificates patch gosu git make tmux locales-all" \ && apt-get install -y --no-install-recommends $runDeps \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ - && npm install --location=global mrs-developer \ + && npm install -g mrs-developer \ && cp jsconfig.json.prod jsconfig.json \ && mkdir -p /opt/frontend/src/addons \ && rm -rf /opt/frontend/src/addons/* \ - && find /opt/frontend -not -user node -exec chown node {} \+ \ + && find /opt/frontend/ -not -user node -exec chown node {} \+ \ && corepack enable USER node -ARG MAX_OLD_SPACE_SIZE=8192 -ENV NODE_OPTIONS=--max_old_space_size=$MAX_OLD_SPACE_SIZE +WORKDIR /opt/frontend/ RUN cd /opt/frontend \ && RAZZLE_API_PATH=VOLTO_API_PATH RAZZLE_INTERNAL_API_PATH=VOLTO_INTERNAL_API_PATH yarn \ && RAZZLE_API_PATH=VOLTO_API_PATH RAZZLE_INTERNAL_API_PATH=VOLTO_INTERNAL_API_PATH yarn build \ - && rm -rf /home/node/.cache + && rm -rf /home/node/.cache \ + && rm -rf /home/node/.yarn \ + && rm -rf /home/node/.npm \ + && rm -rf /app/.yarn/cache + +USER root EXPOSE 3000 3001 4000 4001 ENTRYPOINT ["/opt/frontend/entrypoint-prod.sh"] CMD ["yarn", "start:prod"] -USER root From baf6eac49ec4f42e2b1b684711d1f55587ab962b Mon Sep 17 00:00:00 2001 From: Nilesh Date: Fri, 23 Dec 2022 16:28:19 +0530 Subject: [PATCH 05/14] add Makefile and update scripts --- .gitignore | 88 +++++++++++++++++++++++++++++++++++++++++++++++++--- Makefile | 67 +++++++++++++++++++++++++++++++++++++++ omelette | 1 - package.json | 3 -- 4 files changed, 150 insertions(+), 9 deletions(-) create mode 100644 Makefile delete mode 120000 omelette diff --git a/.gitignore b/.gitignore index 7347fbe..7fbf691 100644 --- a/.gitignore +++ b/.gitignore @@ -3,20 +3,98 @@ logs *.log npm-debug.log* .DS_Store -cache -.nyc_output/ + coverage -cypress/videos -cypress/reports + +# Node node_modules +coverage +jsdoc +webpack-assets.json +webpack-stats.json +npm-debug.log +dist +junit.xml +eslint.xml +yarn-error.log build + +# Other +.DS_Store +.idea +lighthouse-report.html +.vscode/ +backend +.#* +*~ + +# Python +/api/.installed.cfg +/api/.mr.developer.cfg +/api/bin/ +/api/develop-eggs/ +/api/eggs/ +/api/include/ +/api/lib/ +/api/lib64/ +/api/notebook/env/ +/api/parts/ +/api/share/python-wheels/ +/api/src/ +/api/var/ +/api/venv/ +/bin/ +/lib/ +.Python +include +pip-selfcheck.json +pyvenv.cfg +share + +# locales +locales/*.json + +# Tests +/tests/bin +/tests/develop-eggs +/tests/parts +/tests/.installed.cfg +*.pyc +geckodriver.log +log.html +output.xml +report.html +selenium-screenshot-*.png +/selenium/ +cypress/videos/ +cypress/screenshots + +# Local environment setup +.env .env.local .env.development.local .env.test.local .env.production.local +# generic data omelette - +*.old +*~ src/addons src/develop +npm-cache +backend + +# build +public/critical.css +/cache + +# yarn 3 +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b5c5336 --- /dev/null +++ b/Makefile @@ -0,0 +1,67 @@ +# Yeoman Volto App development + +### Defensive settings for make: +# https://tech.davis-hansson.com/p/make/ +SHELL:=bash +.ONESHELL: +.SHELLFLAGS:=-xeu -o pipefail -O inherit_errexit -c +.SILENT: +.DELETE_ON_ERROR: +MAKEFLAGS+=--warn-undefined-variables +MAKEFLAGS+=--no-builtin-rules + +# Project settings + +DIR=$(shell basename $$(pwd)) +ADDON ?= "marine-frontend" + +# Recipe snippets for reuse + +# We like colors +# From: https://coderwall.com/p/izxssa/colored-makefile-for-golang-projects +RED=`tput setaf 1` +GREEN=`tput setaf 2` +RESET=`tput sgr0` +YELLOW=`tput setaf 3` + + +# Top-level targets +.PHONY: all +all: project + +.PHONY: start-test-backend +start-test-backend: ## Start Test Plone Backend + @echo "$(GREEN)==> Start Test Plone Backend$(RESET)" + docker run -i --rm -e ZSERVER_HOST=0.0.0.0 -e ZSERVER_PORT=55001 -p 55001:55001 -e VERSIONS="plone.restapi=8.17.0 plone.rest=2.0.0a1 plone.app.vocabularies=4.3.0" -e APPLY_PROFILES=plone.app.contenttypes:plone-content,plone.restapi:default,plone.volto:default-homepage -e CONFIGURE_PACKAGES=plone.app.contenttypes,plone.restapi,plone.volto,plone.volto.cors -e ADDONS='plone.app.robotframework plone.app.contenttypes plone.restapi plone.volto' plone ./bin/robot-server plone.app.robotframework.testing.PLONE_ROBOT_TESTING + +.PHONY: start-backend-docker +start-backend-docker: ## Starts a Docker-based backend + @echo "$(GREEN)==> Start Docker-based Plone Backend$(RESET)" + docker run -it --rm --name=plone -p 8080:8080 -e VERSIONS="plone.restapi=8.17.0 plone.rest=2.0.0a1 plone.app.vocabularies=4.3.0" -e SITE=Plone -e ADDONS="plone.volto" -e ZCML="plone.volto.cors" plone + +.PHONY: help +help: ## Show this help. + @echo -e "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)" + +.PHONY: install +install: ## Install the frontend + @echo "Install frontend" + $(MAKE) omelette + $(MAKE) preinstall + yarn install + +.PHONY: preinstall +preinstall: ## Preinstall task, checks if missdev (mrs-developer) is present and runs it + if [ -f $$(pwd)/mrs.developer.json ]; then make develop; fi + +.PHONY: develop +develop: ## Runs missdev in the local project (mrs.developer.json should be present) + npx -p mrs-developer missdev --config=jsconfig.json --output=addons --fetch-https + +.PHONY: omelette +omelette: ## Creates the omelette folder that contains a link to the installed version of Volto (a softlink pointing to node_modules/@plone/volto) + if [ ! -d omelette ]; then ln -sf node_modules/@plone/volto omelette; fi + +.PHONY: patches +patches: + /bin/bash patches/patchit.sh > /dev/null 2>&1 ||true \ No newline at end of file diff --git a/omelette b/omelette deleted file mode 120000 index 285517d..0000000 --- a/omelette +++ /dev/null @@ -1 +0,0 @@ -node_modules/@plone/volto \ No newline at end of file diff --git a/package.json b/package.json index 661b7b5..b9390dd 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,6 @@ ], "scripts": { "start": "razzle start", - "postinstall": "yarn omelette && yarn patches", - "omelette": "if [ ! -d omelette ]; then ln -sf node_modules/@plone/volto omelette; fi", - "patches": "/bin/bash patches/patchit.sh > /dev/null 2>&1 ||true", "build": "razzle build --noninteractive", "lint": "./node_modules/eslint/bin/eslint.js 'src/**/*.{js,jsx}'", "lint:fix": "./node_modules/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx}'", From 637ba7d89268ffabac4f1704383b40074ca839e0 Mon Sep 17 00:00:00 2001 From: Claudia Ifrim Date: Fri, 23 Dec 2022 13:11:03 +0200 Subject: [PATCH 06/14] update npm install command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c9f5a1f..187d553 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN runDeps="openssl ca-certificates patch gosu git make tmux locales-all" \ && apt-get install -y --no-install-recommends $runDeps \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ - && npm install -g mrs-developer \ + && npm install --location=global mrs-developer \ && cp jsconfig.json.prod jsconfig.json \ && mkdir -p /opt/frontend/src/addons \ && rm -rf /opt/frontend/src/addons/* \ From e7018fe3c776855c1edb993ff9658b87ae8af11d Mon Sep 17 00:00:00 2001 From: Claudia Ifrim Date: Fri, 23 Dec 2022 13:45:30 +0200 Subject: [PATCH 07/14] set volto kitkat version to 8.2.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b9390dd..2fafcb9 100644 --- a/package.json +++ b/package.json @@ -149,7 +149,7 @@ "node": "^12 || ^14 || ^16" }, "dependencies": { - "@eeacms/volto-eea-kitkat": "10.3.0", + "@eeacms/volto-eea-kitkat": "8.2.4", "@eeacms/volto-industry-theme": "2.0.13", "@plone/volto": "16.0.0-alpha.45" }, From b0339750e58b4fbee7464e40bb2fd5a4c41c5f07 Mon Sep 17 00:00:00 2001 From: Claudia Ifrim Date: Fri, 23 Dec 2022 14:04:00 +0200 Subject: [PATCH 08/14] update yarn.lock --- yarn.lock | 492 ++++++++++++++++++++++++++---------------------------- 1 file changed, 241 insertions(+), 251 deletions(-) diff --git a/yarn.lock b/yarn.lock index 97187e3..8ad9621 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1348,27 +1348,27 @@ dependencies: "@datapunt/matomo-tracker-js" "^0.3.1" -"@eeacms/volto-accordion-block@6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-accordion-block/-/volto-accordion-block-6.0.0.tgz#b4aa4f51315dfc5585a60301db60728fecb36040" - integrity sha512-ccpLVfw0UmI1v1xsUU0mDsanIwRTyTVFLj2iNiKWwW0qG731rkZDco+k26d4YiQUgS2GVUjQLqmLM20BRIOuNg== +"@eeacms/volto-accordion-block@4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@eeacms/volto-accordion-block/-/volto-accordion-block-4.1.0.tgz#a1cb9cdb14fe83bd124ccc79e3b4440f17d1eb63" + integrity sha512-h4oo58orH/uw5tjEwNVYk88+kYGrl1LL4Jc4Uzo6Cmj05P8qgNX3P2IV8uVAg1Z6BmIwIcDSfXErYy95I515Dg== -"@eeacms/volto-banner@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-banner/-/volto-banner-3.0.1.tgz#32b80b48683f484168b217a7ba50fe6b38dc330a" - integrity sha512-lSr/R1VzmuAsfOhXpDbORHwXi4gaqTCnw+yeflc6Wfb/xQVUI43fPuqZkF1QRoMwvA9iK14v+BtaetyxXEJc9w== +"@eeacms/volto-banner@2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@eeacms/volto-banner/-/volto-banner-2.2.1.tgz#559d31aba65b0cc87d693f5a7c0e8370f68754a1" + integrity sha512-oFCombGDx9XwuqRqxGGTdF3w8QPXvUzpa9MBqaGeg7GCxuT8GFuLFMXI3Jq4Y5Q06Pr6LTNqF/+V2Yz5rKhICw== -"@eeacms/volto-block-divider@5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-block-divider/-/volto-block-divider-5.0.0.tgz#1edf4e09b7f0817dc54037b6af24fcd19e412a38" - integrity sha512-n+hhtHJ0bsdkILKm1MaA4ke1iYXwLJsOSN3MGqisBAHihZGR1Tafg4WIevHCsF/hUZ/z3lqUOz2+Ze2YsRNC1A== +"@eeacms/volto-block-divider@3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@eeacms/volto-block-divider/-/volto-block-divider-3.0.2.tgz#f70d0cc321032d270f09c1859773f3006cee0328" + integrity sha512-0vTD5ArcQoL3B2yx3eFhrAHAZkKyII8Gjej+i2OcY5LObkRopkHz4JYHii04i+LDWvCDbzqkYzQl1zbZKGs95g== dependencies: react-color "~2.18.1" -"@eeacms/volto-block-image-cards@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-block-image-cards/-/volto-block-image-cards-1.0.1.tgz#012dca45d4a32ee277de86c30a4bde05441d30be" - integrity sha512-qR82HRPY+RQLT3FrJcE0aw1OM92fygfXdXpqDlw8dlgx08EgRB8HUeIXaw+Ff2WqSshqf7jJr1I3A3GZsIw1PQ== +"@eeacms/volto-block-image-cards@0.6.5": + version "0.6.5" + resolved "https://registry.yarnpkg.com/@eeacms/volto-block-image-cards/-/volto-block-image-cards-0.6.5.tgz#facfd366d2259c9ac031b3b0c94ada3148aa4f7e" + integrity sha512-JIvkNBqDx6/nWcUkWgLN2sPqpmm2bPf0xIV5AWSBDXxw1agrFMz0EvBc1zQy5a0bJJYM7IO2A9WHcHz5gw94iQ== dependencies: "@eeacms/volto-block-style" "*" "@eeacms/volto-object-widget" "*" @@ -1376,8 +1376,9 @@ react-resize-detector "6.7.6" react-slick "^0.24.0" slick-carousel "^1.8.1" + volto-slate "*" -"@eeacms/volto-block-style@*", "@eeacms/volto-block-style@4.1.2": +"@eeacms/volto-block-style@*": version "4.1.2" resolved "https://registry.yarnpkg.com/@eeacms/volto-block-style/-/volto-block-style-4.1.2.tgz#29c0e234f41bc201de0d318fb87cdccb8488f04e" integrity sha512-xB7f1bNa7/aDXJCDEslC/ugep74oTb2G+B3ehc7E9Y93kh7AtCeyM7mL+o7cZTU4mCO+opJjunXMiKAOrnOjgw== @@ -1385,23 +1386,43 @@ "@eeacms/volto-resize-helper" "*" react-color "~2.18.1" -"@eeacms/volto-call-to-action-block@2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-call-to-action-block/-/volto-call-to-action-block-2.0.0.tgz#048b994db77265597aac726834a4feb61f8c030b" - integrity sha512-1yUyMAi5iT3+LmLftysanNY4j+fhauhV/kG/SU8XlHLx9+6741cY1z9+zXxFQnxnq/Y3AI9yhvce5rbLtmrNOA== +"@eeacms/volto-block-style@3.7.2": + version "3.7.2" + resolved "https://registry.yarnpkg.com/@eeacms/volto-block-style/-/volto-block-style-3.7.2.tgz#56d0c0fc40fbd2cbfde19e9eaad27f1e91dc2391" + integrity sha512-X4idepbyak6h3lsH0a7ozRynECPm97GqyNv3JN8Q4oiSeNz3Tl1bWKXndd1YHuwYDTgTGoQgd07iOrO84hCiuw== + dependencies: + "@eeacms/volto-resize-helper" "*" + react-color "~2.18.1" -"@eeacms/volto-columns-block@*", "@eeacms/volto-columns-block@5.1.0": +"@eeacms/volto-block-toc@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@eeacms/volto-block-toc/-/volto-block-toc-3.0.1.tgz#0f020dac44908264a7554c8229e387026b94ea56" + integrity sha512-bDXDv47xfAK+GCd/cC4ccQpZyd4+EolRl+AX+w8FMZElix8TKSZuBaKJ+r1hLduNN54dO1gu5oS8biwf5VGGAQ== + +"@eeacms/volto-columns-block@*": version "5.1.0" resolved "https://registry.yarnpkg.com/@eeacms/volto-columns-block/-/volto-columns-block-5.1.0.tgz#c09474532578506a2bc7e127c3a8829dbd5f666e" integrity sha512-YxaXuUa1zy1A4YOxEn4MQbqergutU0jXSHbv8S92HRvmc7/tXyyEkkSwYCYynpSU8zLnaxQRG6dpd9O3s6EvWQ== dependencies: react-color "~2.19.3" -"@eeacms/volto-corsproxy@*", "@eeacms/volto-corsproxy@3.0.1": +"@eeacms/volto-columns-block@4.5.3": + version "4.5.3" + resolved "https://registry.yarnpkg.com/@eeacms/volto-columns-block/-/volto-columns-block-4.5.3.tgz#b7bd727940c46829d089fddb08d3be6f543f9735" + integrity sha512-8NoaqS6ydRatrSAOuGhv466mJgp/imqVXqy4lujTn2ULRHfzH6kMbZQYO+lu/kvTbgDOiOTmFjARRqGamVaQiA== + dependencies: + react-color "~2.19.3" + +"@eeacms/volto-corsproxy@*": version "3.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-corsproxy/-/volto-corsproxy-3.0.1.tgz#626b0011e816a52f627aceefb08c20596821fbd7" integrity sha512-Bfld+LTqFFjCAClAIVvBCnQtYJW0IW+0NQdOa956kWq5lNttEEoM4oMhG7JhpRWoH0MYgoOw1tk0IjLl3npHsQ== +"@eeacms/volto-corsproxy@2.1.6": + version "2.1.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-corsproxy/-/volto-corsproxy-2.1.6.tgz#af110351370553c4bd51f404e0aca8e5593ec863" + integrity sha512-ScJuVsF51efiiHfv3nPuVoocHN9YpTUA2Jjsb193NFjtxMY1WH9fcAVlZt12Nau/5dqQRLPCl5VtVyxWvOwxsg== + "@eeacms/volto-datablocks@*": version "4.0.0" resolved "https://registry.yarnpkg.com/@eeacms/volto-datablocks/-/volto-datablocks-4.0.0.tgz#02428ae2f1586259eafe32aebe5ddfe10a26eba6" @@ -1418,56 +1439,43 @@ react-visibility-sensor "5.1.1" sanitize-html "^2.3.3" -"@eeacms/volto-depiction@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-depiction/-/volto-depiction-1.0.1.tgz#46ff35d52cb550ee9b096d054f2ba4f056ecee69" - integrity sha512-+MS7qJFgxHMeNK1nDmvpIKlAY2DcO15J2K1BOlkvyFSsrI+UDNvUYqP7wiAGXb/Pt6Ukb1y/tNZxNm+5Ri3a3Q== - -"@eeacms/volto-description-block@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-description-block/-/volto-description-block-1.0.1.tgz#4ae89166e424e2bc1299cbe617e132644401d801" - integrity sha512-ZfopN9sA3rT4WONZgZWyGCTVzviuBewbabTrgE6MfJME1e3mAll452aEub26Y6ccdUp40hKe4sV1+ZTTUAsiAg== - -"@eeacms/volto-eea-kitkat@10.3.0": - version "10.3.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-eea-kitkat/-/volto-eea-kitkat-10.3.0.tgz#5799fd7278cb3575cc99dbc48b979f45f52d3f68" - integrity sha512-2Ns3K50icCpByuLTeNRh2W6jTPKm1rpNfhet5hCWtKMAxUQtmmDsoKGbSieQQcO3gXG74NRDNc7qhy3yxf+tKw== - dependencies: - "@eeacms/volto-accordion-block" "6.0.0" - "@eeacms/volto-banner" "3.0.1" - "@eeacms/volto-block-divider" "5.0.0" - "@eeacms/volto-block-image-cards" "1.0.1" - "@eeacms/volto-block-style" "4.1.2" - "@eeacms/volto-call-to-action-block" "2.0.0" - "@eeacms/volto-columns-block" "5.1.0" - "@eeacms/volto-corsproxy" "3.0.1" - "@eeacms/volto-depiction" "1.0.1" - "@eeacms/volto-description-block" "1.0.1" - "@eeacms/volto-group-block" "5.0.1" - "@eeacms/volto-hero-block" "2.1.0" - "@eeacms/volto-listing-block" "2.3.0" - "@eeacms/volto-matomo" "3.0.1" - "@eeacms/volto-metadata-block" "5.0.1" - "@eeacms/volto-object-widget" "5.0.1" - "@eeacms/volto-quote-block" "1.0.1" - "@eeacms/volto-resize-helper" "1.0.1" - "@eeacms/volto-sentry-rancher-config" "3.0.1" - "@eeacms/volto-slate-footnote" "6.0.2" - "@eeacms/volto-slate-label" "0.4.4" - "@eeacms/volto-slate-metadata-mentions" "6.0.1" - "@eeacms/volto-slate-zotero" "5.0.2" - "@eeacms/volto-statistic-block" "1.0.1" - "@eeacms/volto-tabs-block" "3.0.1" - "@eeacms/volto-tags-block" "1.0.2" - "@eeacms/volto-taxonomy" "3.0.1" - "@eeacms/volto-timeline-block" "1.0.1" - "@eeacms/volto-widget-dataprovenance" "0.2.1" - "@eeacms/volto-widget-geolocation" "5.0.1" - "@eeacms/volto-widget-temporal-coverage" "5.0.1" - "@eeacms/volto-widget-toggle" "3.0.1" - "@eeacms/volto-widgets-view" "4.0.1" - "@kitconcept/volto-blocks-grid" "5.1.1" - "@plone-collective/volto-sentry" "0.3.0" +"@eeacms/volto-depiction@0.1.6": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-depiction/-/volto-depiction-0.1.6.tgz#20431aaa211186eb5ac77e2fdc176bdbe1a9c9e6" + integrity sha512-Rcrem8q1eIgY349n9TMTtZo7Tg3vKjUv65uuy1my4XKeTSv84CzHMCFOM+15WtJhvuMfxbwjYPy3xmiAqy4IGg== + +"@eeacms/volto-eea-kitkat@8.2.4": + version "8.2.4" + resolved "https://registry.yarnpkg.com/@eeacms/volto-eea-kitkat/-/volto-eea-kitkat-8.2.4.tgz#2ac268a153c3b13bfea3f2659ee456a468382c7a" + integrity sha512-2FchNgjegFrjmkqklRuJUHdF3b4TzfTFuVRkFxfUOWz6iSAIyJCP1GUJNTzzuqYX++AoGzrJOGRwZWSe38cBhA== + dependencies: + "@eeacms/volto-accordion-block" "4.1.0" + "@eeacms/volto-banner" "2.2.1" + "@eeacms/volto-block-divider" "3.0.2" + "@eeacms/volto-block-image-cards" "0.6.5" + "@eeacms/volto-block-style" "3.7.2" + "@eeacms/volto-block-toc" "3.0.1" + "@eeacms/volto-columns-block" "4.5.3" + "@eeacms/volto-corsproxy" "2.1.6" + "@eeacms/volto-depiction" "0.1.6" + "@eeacms/volto-group-block" "4.3.8" + "@eeacms/volto-listing-block" "0.6.8" + "@eeacms/volto-matomo" "2.0.9" + "@eeacms/volto-metadata-block" "4.0.8" + "@eeacms/volto-object-widget" "4.0.2" + "@eeacms/volto-resize-helper" "0.2.10" + "@eeacms/volto-sentry-rancher-config" "2.1.6" + "@eeacms/volto-slate-footnote" "5.0.1" + "@eeacms/volto-slate-metadata-mentions" "5.0.1" + "@eeacms/volto-slate-zotero" "4.0.5" + "@eeacms/volto-tabs-block" "2.2.0" + "@eeacms/volto-taxonomy" "2.0.6" + "@eeacms/volto-widget-dataprovenance" "0.1.7" + "@eeacms/volto-widget-geolocation" "4.0.6" + "@eeacms/volto-widget-temporal-coverage" "4.0.6" + "@eeacms/volto-widget-toggle" "2.2.7" + "@eeacms/volto-widgets-view" "3.0.5" + volto-slate "6.4.0" "@eeacms/volto-embed@*": version "5.0.0" @@ -1478,17 +1486,15 @@ "@eeacms/volto-datablocks" "*" react-visibility-sensor "5.1.1" -"@eeacms/volto-group-block@*", "@eeacms/volto-group-block@5.0.1": +"@eeacms/volto-group-block@*": version "5.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-group-block/-/volto-group-block-5.0.1.tgz#eaf6b3dd187daa803a44b5e2e136b4b38c42e450" integrity sha512-mBoa7fZowCMs4dCuWlRH01UEIXx82aD5atifmE24jO9vPyEIlfwXVp39p+yz9wK42CdDkACE9xzWc3aAvVCJ1g== -"@eeacms/volto-hero-block@2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-hero-block/-/volto-hero-block-2.1.0.tgz#04f3c3bc73feb005b805fd8b531dbb8446295669" - integrity sha512-Ruf3HB0w/u7vsSZo4TeH24hlBwMSO0A/wgtwEcx6JJYNJnWdur254Zw2+3pVZbFB/cmTUzueos+FIllTLQwj7Q== - dependencies: - "@eeacms/volto-object-widget" "*" +"@eeacms/volto-group-block@4.3.8": + version "4.3.8" + resolved "https://registry.yarnpkg.com/@eeacms/volto-group-block/-/volto-group-block-4.3.8.tgz#d7d16fe17745cb08bf7f625c27d021e854281bb4" + integrity sha512-aRvREccetNiqIeOLvYH0sUAoQgBeuS4J3K0pWQeEwGw2i1znvYMvgZaWVNcck84RiLsMOHVnuafSGYvzR4RkZA== "@eeacms/volto-industry-theme@2.0.13": version "2.0.13" @@ -1504,34 +1510,47 @@ react-highlight-words "0.17.0" react-tooltip "4.2.21" -"@eeacms/volto-listing-block@2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@eeacms/volto-listing-block/-/volto-listing-block-2.3.0.tgz#b48e8b397bc8290639f2a6bdbb68da3264713e1c" - integrity sha512-42luSdBy968u7ImgZCzTxjNHoXtILZH283fvIeM9S9CUlQVT4aLVnY0Wm5CtLJCHWcqfQw/ZcrtIvspM/FjZ4Q== +"@eeacms/volto-listing-block@0.6.8": + version "0.6.8" + resolved "https://registry.yarnpkg.com/@eeacms/volto-listing-block/-/volto-listing-block-0.6.8.tgz#15af75828500cf3d6227435063e4a898c13eb357" + integrity sha512-PWncy3SVg3pQly9N/7sr0teB0US9/ZR2v6GGPGXKv+/zkyRqL8LHmw6ZjQmbKIPMBVsggKriylNq8bQo1T+vwQ== dependencies: react-resize-detector "7.1.2" react-slick "0.29.0" slick-carousel "1.8.1" + volto-slate "*" -"@eeacms/volto-matomo@*", "@eeacms/volto-matomo@3.0.1": +"@eeacms/volto-matomo@*": version "3.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-matomo/-/volto-matomo-3.0.1.tgz#e098268c6964b553e75297cca5f9ac15b73ba2d9" integrity sha512-cdAf76iaSrmHbH7zuE+PsAb4buMZZE8gKYyEAOswaxUF+yg/5ZAGpYIUA6Qr2PCRuDRokr1SJTQv4UVAGGMaKg== dependencies: "@datapunt/matomo-tracker-react" "0.3.1" -"@eeacms/volto-metadata-block@5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-metadata-block/-/volto-metadata-block-5.0.1.tgz#ad18c9fd152837dd11ac0281bcfd95ec7579e131" - integrity sha512-hmSJV+sva2bp0tBNEGtpvSAYsCX+zPx4/JbSAYRr0IgzjPhJw+Bsr6CCWNs/PfG9rh52rVjKPzADSdP81GU9NQ== +"@eeacms/volto-matomo@2.0.9": + version "2.0.9" + resolved "https://registry.yarnpkg.com/@eeacms/volto-matomo/-/volto-matomo-2.0.9.tgz#b5d4811f54df5fe731244ced5b49666550cddbf6" + integrity sha512-ImrAafTaxos3CQe0bhpT33bkrYNKF3TYqjgswUdBLa9U7x0XSzIXIRcdv+ikxgO21BeLa3QedaDKJLxl0Cp7ng== + dependencies: + "@datapunt/matomo-tracker-react" "0.3.1" + +"@eeacms/volto-metadata-block@4.0.8": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@eeacms/volto-metadata-block/-/volto-metadata-block-4.0.8.tgz#113a79de68bc6ae7eb9f633fd291793f1a78edfe" + integrity sha512-I0jTKyJDGTRtbemjAXjWB73mmEtEPX2zhfR72s+5s4d20IYilvSJpYxjIeF/0cPvr08sqcx9kngVM2DLT9jzKQ== dependencies: "@eeacms/volto-widgets-view" "*" -"@eeacms/volto-object-widget@*", "@eeacms/volto-object-widget@5.0.1": +"@eeacms/volto-object-widget@*": version "5.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-object-widget/-/volto-object-widget-5.0.1.tgz#f39ff7f414dd01c80562512c39945d4c95b1d043" integrity sha512-ni/NNmcd4kLHI3hmLFA5wzU6gH4xND3pfYTdD0Ovpp6S5wSrN9XFaJeyHWsrMYbXh1VOZxvO8quv/amxqMbbNw== +"@eeacms/volto-object-widget@4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@eeacms/volto-object-widget/-/volto-object-widget-4.0.2.tgz#7f92eb6998e74b4a60bb874d054334265b5178d6" + integrity sha512-j4RdHxiobaRuLIaszl3S5ukED3VsWCmxl3pdUHG3Sib9L79XOBG6WPfCzNkNGaC0rfigkvAhp6ryuA/GLyAlTg== + "@eeacms/volto-openlayers-map@*": version "0.2.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-openlayers-map/-/volto-openlayers-map-0.2.1.tgz#3baa1f31a1f58b84bd0be575b7c0188fb29d8bec" @@ -1539,59 +1558,48 @@ dependencies: ol "6.6.x" -"@eeacms/volto-quote-block@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-quote-block/-/volto-quote-block-1.0.1.tgz#5679bcaa7c71448716a49c68e09bf406782787c7" - integrity sha512-SUnqY18KU/9ppoIcvCJZYHxuFaDZCLYhjFodqEnlh5ghSKD7ig7u4hilMfO4MWXQKvUpwi0Sz2SXHGW2OKq6yg== - dependencies: - "@eeacms/volto-object-widget" "*" - -"@eeacms/volto-resize-helper@*", "@eeacms/volto-resize-helper@1.0.1": +"@eeacms/volto-resize-helper@*": version "1.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-resize-helper/-/volto-resize-helper-1.0.1.tgz#7e9e38cb7d0787c3ff1ccbb31257efda684d45e8" integrity sha512-XteD2zINQim/XiqaUNHAO5qP54Xc36ScQBx5nNM91iOSva7geV27COiHvYebT7pANB2kIivHMdulKdO4q4cZzg== -"@eeacms/volto-resize-helper@^0.2.4": +"@eeacms/volto-resize-helper@0.2.10", "@eeacms/volto-resize-helper@^0.2.4": version "0.2.10" resolved "https://registry.yarnpkg.com/@eeacms/volto-resize-helper/-/volto-resize-helper-0.2.10.tgz#f58ecd866988444f3b0b855e30dde17431a25edf" integrity sha512-kbCIIzvDeqO5otAJfIgzJkJzkZFUudoG49/e320QxQzZQFrGF/jUUk54J1qgl5RJpgIcJFvchTZMFLKx5KUJ+A== -"@eeacms/volto-sentry-rancher-config@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-sentry-rancher-config/-/volto-sentry-rancher-config-3.0.1.tgz#43ac118ae8c4eb1e1dd7fdb69d9ff85eb9a3713d" - integrity sha512-FI9AzJoNP+IJ0Jh1PiY3JH6hZsPih1vaU9vBMF2idmvdwoTfUHlXeMA4wB2/WN1i+5+JeNz7i8P+zwkh8ilerw== +"@eeacms/volto-sentry-rancher-config@2.1.6": + version "2.1.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-sentry-rancher-config/-/volto-sentry-rancher-config-2.1.6.tgz#1b924382914df02752d3fbe874ef2d5d637b4421" + integrity sha512-xEPxx+0Keb/in5x25jDdpHUMU4Lcm5sEMEJv7sIfgQ1ZXP8QlzsXMDJthSdJ7nsyf/pt3ZvHfIq6GuS5Rc7GmQ== -"@eeacms/volto-slate-footnote@*", "@eeacms/volto-slate-footnote@6.0.2": +"@eeacms/volto-slate-footnote@*": version "6.0.2" resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-footnote/-/volto-slate-footnote-6.0.2.tgz#ec77e40e74be3b58e9ba8c148f0c01f166997b00" integrity sha512-kqWpTCS0VVwguYEvFgaNvYDRx6A9xKM6XKqtEMDlhbEhrBo7EDTrmP2SXPGGkklKAoO9BTkPTCvJkvX0pusL2Q== -"@eeacms/volto-slate-label@0.4.4": - version "0.4.4" - resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-label/-/volto-slate-label-0.4.4.tgz#207bc346254585ee5d053bb0551e37a12d9e9989" - integrity sha512-vC8KDOLQk5kn3v9gW1ywIMJjy/3vgHFMg2dr8RYzCQBXv/N+1Z/v8BRtOYZo3aSkiSdLtJTLUBMV3Zq+9jQpxw== +"@eeacms/volto-slate-footnote@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-footnote/-/volto-slate-footnote-5.0.1.tgz#af0099d9dbe3dd5642eebbe567ed918d92d4093b" + integrity sha512-frjFSvxM7PULloPPCxWWGjlDxCj9SfUoi6XtaoriDIzk7TioGivODWR8S51BA+tvmeSyLyVCKsgXahfm1DQvDQ== + dependencies: + volto-slate "*" -"@eeacms/volto-slate-metadata-mentions@6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-metadata-mentions/-/volto-slate-metadata-mentions-6.0.1.tgz#7c57e202c7deba7bba8f64f3381b3aa29dc46975" - integrity sha512-1cuKwIzkkeyUCKnp3JkK/4HCTQ8OmN60HjFfkPL5C0aoRPgKXybuSKDzqTgRX8N0wklTEjSDmhpGKZzYESje2Q== +"@eeacms/volto-slate-metadata-mentions@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-metadata-mentions/-/volto-slate-metadata-mentions-5.0.1.tgz#d07ed511c2d53018e8839cecd5a281bac1fc869f" + integrity sha512-bITDx7U+2c2i7zVCa55xG9pVU8NhU0cHa8rsWGnHOJmwsX7rwMkjRJSDXrBpzPa+kXC4XL93i/MlpC9vKWe2aw== dependencies: "@eeacms/volto-widgets-view" "*" + volto-slate "*" -"@eeacms/volto-slate-zotero@5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-zotero/-/volto-slate-zotero-5.0.2.tgz#b2cef9859fa3f461f1d266511f22c74e2894e5f2" - integrity sha512-bkWPNW/39hHPU18xjG+NdxMDY1JuZ17uMuMRZH0I6efDGxlalzSfGcs9YRzXBufagst0uOM8wfONz4MMeDrhYg== +"@eeacms/volto-slate-zotero@4.0.5": + version "4.0.5" + resolved "https://registry.yarnpkg.com/@eeacms/volto-slate-zotero/-/volto-slate-zotero-4.0.5.tgz#d49cb0a1c4ba0425418d1780083e871a9c4e3cfe" + integrity sha512-SVRTmY46kW8Y6rYfNMSRTdFabV+EWl19KWEKZkFBZQ1SvoiFYoHLYfsv/1ShQu4OMu7gP4bPYnKw1H5jgg/Sfg== dependencies: "@eeacms/volto-slate-footnote" "*" - -"@eeacms/volto-statistic-block@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-statistic-block/-/volto-statistic-block-1.0.1.tgz#d0347737fa6ac49c5ac740f3997e9af83812c335" - integrity sha512-zlPtEWwxo/n2BOCzWlI1MJmcg1Wma50rjvdUBfIW0xBIwMvmUvAvV2zRUt2j8IeboSghcuJ6OUZJc41aJ5tQqA== - dependencies: - react-countup "6.3.1" - react-visibility-sensor "5.1.1" + volto-slate "*" "@eeacms/volto-tableau@*": version "2.0.0" @@ -1600,59 +1608,56 @@ dependencies: "@eeacms/volto-resize-helper" "^0.2.4" -"@eeacms/volto-tabs-block@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-tabs-block/-/volto-tabs-block-3.0.1.tgz#f992027f8bafd34c7590c11bb2233f910cbf8eda" - integrity sha512-sg6pTweL8FORL72/qZx/OPz3oSpldPWZmhVyzGT2pCcXy1g4LdkOeWizFRT0nxXpjHle7bgUNdgPKxokHQ7YXA== +"@eeacms/volto-tabs-block@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@eeacms/volto-tabs-block/-/volto-tabs-block-2.2.0.tgz#b5ac9fc636bd8696b3bb502315e7778884d267ab" + integrity sha512-JsdoyjTYYzSh2cAGLE86FJueS6vSA3huSuSyutSWn6/b4hG801blujisYXPOVOPdBSQFbzpXhARzNN+IR8ySjg== dependencies: "@eeacms/volto-block-style" "*" react-responsive-tabs "4.4.3" react-slick "^0.24.0" slick-carousel "^1.8.1" -"@eeacms/volto-tags-block@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@eeacms/volto-tags-block/-/volto-tags-block-1.0.2.tgz#2ddd0216e4a1e736d77f3387580d785bceb6d6c5" - integrity sha512-tOU2usVgJ6FFFBIRKpNktf+dRPOyLVuvzqTE6zxqKEDC30PxdjYHVlYhLMtmjRvApNSQCZNs5a24l4Vscou7LQ== - -"@eeacms/volto-taxonomy@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-taxonomy/-/volto-taxonomy-3.0.1.tgz#1c7b822f1c087f7af55f06bc1cabab7eeb299088" - integrity sha512-NDPdfsWEUVBWfNiaqP4s3SthWrx2zNTdja9xwWWYplFY+ahsNyf3gTYwCc9TpAIWIKMuC4p770GsRUwIM3/o4g== - -"@eeacms/volto-timeline-block@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-timeline-block/-/volto-timeline-block-1.0.1.tgz#c4a1a5add3ea8d40d11195059a5d258fadeefc6f" - integrity sha512-jDFhonndDY9CIzE7I0JlYUQ6YGbqYCxLdv6Im1rlHQJ/BbbsFY7W2fc2GL3xtr6DrL7zKq676p50hvook4kBww== +"@eeacms/volto-taxonomy@2.0.6": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-taxonomy/-/volto-taxonomy-2.0.6.tgz#83f17f7db23c1227f07981d5b00dc3b98d1b9081" + integrity sha512-iJQ7ATw2gl5PEi4zb7+Cs4XsFxG32WyaDheoln0zH/MzUD9ezHeZTNQD5vIaRn63Eomn8PRo92cqYcgJTiBL/Q== -"@eeacms/volto-widget-dataprovenance@0.2.1": - version "0.2.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-dataprovenance/-/volto-widget-dataprovenance-0.2.1.tgz#616880d813dae362506032580a89b579a79779f4" - integrity sha512-80XVzXKR4H2BXicMx3V0YRSVkTbA22yWB+zqtpVTot9UTpgUt/oH6Eryd6uKvDPmgVkMFNhZiFsOLrFlP7c0eQ== +"@eeacms/volto-widget-dataprovenance@0.1.7": + version "0.1.7" + resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-dataprovenance/-/volto-widget-dataprovenance-0.1.7.tgz#866054c3bc6978a86d3ea85cf6d32548a86313ee" + integrity sha512-D1Fi8hM3Q3s++aUaF0IvuEnLlov7+1qUcvIrvxoL2ksbAwDYFpdWKPNLbyDMWKqrSet0yc2Djakfc6sH6TwtNw== + dependencies: + "@plone/scripts" "*" -"@eeacms/volto-widget-geolocation@5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-geolocation/-/volto-widget-geolocation-5.0.1.tgz#2801e3f04b272a851ea2a4a1c9cf95a707c709f7" - integrity sha512-5cImd4Q00le7+2mCcItZ62As5tfzyJqgcAdP1PUhSPHylnOGifEo6KODw6Pehf7QiMO7KBO/O0WGA/D/XhmaBQ== +"@eeacms/volto-widget-geolocation@4.0.6": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-geolocation/-/volto-widget-geolocation-4.0.6.tgz#d387f34e858fb1e7910c664842841a6326fa7f9d" + integrity sha512-/uzjIcdBoNH12DLKj6VTmmxvqXteAfSXr9wRxTaxPNMsNmMvPYiquLYc/T3apnkLPO3oefNS2Lkw//Ajo6SoTA== dependencies: "@eeacms/volto-corsproxy" "*" i18n-iso-countries "6.2.1" -"@eeacms/volto-widget-temporal-coverage@5.0.1": - version "5.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-temporal-coverage/-/volto-widget-temporal-coverage-5.0.1.tgz#dec62a152fc2c7e9a7657e7fa49880cf82dc114a" - integrity sha512-dMiIfvxSetIOgJIGjMCjudIPkEimkMTl5AUPMkx5MzdqE0KecV0twIlorJL3es2CwhRcKBmKk3RjC+L+70zyHw== +"@eeacms/volto-widget-temporal-coverage@4.0.6": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-temporal-coverage/-/volto-widget-temporal-coverage-4.0.6.tgz#b542e1daa8046e2769516c08b444a81c3f562293" + integrity sha512-BIXiL2jDVLt64jIa97Xc4M51Hd6UHDrtm11MgJ26v+0o+T3Bz40uIKx57wv/M9N+0fK/WA0qojOz/d/+A9E6NQ== -"@eeacms/volto-widget-toggle@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-toggle/-/volto-widget-toggle-3.0.1.tgz#f35aa980af8033affb63a008dd4d0df548f43e5c" - integrity sha512-LRe36sDrChJLmG6asiVL49WShYoZdP2zZYeCsm6L+AXITx4nH56HaQT0SwDWNZMYgVTpgQKcvKbgguSZl2vewg== +"@eeacms/volto-widget-toggle@2.2.7": + version "2.2.7" + resolved "https://registry.yarnpkg.com/@eeacms/volto-widget-toggle/-/volto-widget-toggle-2.2.7.tgz#782596854130e6bef6e64625fc3a0b10ad8e1379" + integrity sha512-70G1nrTOyVtXenMDO/LGBIjm75+XBmzz/q5Ges5Iqk44s1rAFcjutqmc9BR+acfPIZZpvnnPhfUlEN8jf1GWmA== -"@eeacms/volto-widgets-view@*", "@eeacms/volto-widgets-view@4.0.1": +"@eeacms/volto-widgets-view@*": version "4.0.1" resolved "https://registry.yarnpkg.com/@eeacms/volto-widgets-view/-/volto-widgets-view-4.0.1.tgz#9db1132262030ab10aced707541e73b0e53778a2" integrity sha512-tudJsY31FvR/ROD+fkm7PaBLBYpZipIkWEVPE74fXkmjF9QhinbRXyeyr3wnys5luT12RNMrWABeWZUNOk4Mug== +"@eeacms/volto-widgets-view@3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@eeacms/volto-widgets-view/-/volto-widgets-view-3.0.5.tgz#a6b3480c7c0350d5ac10ed1aadd69256ca1f747b" + integrity sha512-2VgPsKP2oIP5o9gv54RyWSxlxOwVoQwCJmCpNWtLN2pPt0jIf5xzpUq4EOuEZFLWGKR0bBAQEYVkPenb3eDDZw== + "@emotion/cache@^10.0.27": version "10.0.29" resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0" @@ -2116,11 +2121,6 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@kitconcept/volto-blocks-grid@5.1.1": - version "5.1.1" - resolved "https://registry.yarnpkg.com/@kitconcept/volto-blocks-grid/-/volto-blocks-grid-5.1.1.tgz#bc2f31a8fa5691f7204066d3e74862369f5fcd88" - integrity sha512-f8yyyq/b5JZ4FY7Rv4D2Nzu0F2axT/AfUb4VmNp3UpGUEaPXtSeSFCFArI2mRU9BsJCSwuqsB7K36EbAoSc8jw== - "@kwsites/file-exists@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@kwsites/file-exists/-/file-exists-1.1.1.tgz#ad1efcac13e1987d8dbaf235ef3be5b0d96faa99" @@ -2277,15 +2277,20 @@ dependencies: mkdirp "^1.0.4" -"@plone-collective/volto-sentry@0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@plone-collective/volto-sentry/-/volto-sentry-0.3.0.tgz#b5a8a9d2e1d7d7f8d9541c5fcce6b624e11a2f7e" - integrity sha512-9lkL1DOxKdZAnL8rHvx4WJpw52CNF8zYOaB6I4PY+FoUIBeiCatnEVfY6oeFdt+qUA23qrerBLaOuuR6grtdbw== +"@plone/scripts@*": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@plone/scripts/-/scripts-2.2.2.tgz#5822de0a344d943ac1eefa9130073049a31aad69" + integrity sha512-gmoGsmYZZ2H1iKXW40VwGOOLGA1pDW+v6IL09Tz727zakU6Ofd8xO1jbuKgYzvf9moyJGUamx3gSCux2kYs+QA== dependencies: - "@sentry/browser" "7.15.0" - "@sentry/integrations" "7.15.0" - "@sentry/node" "7.15.0" - "@sentry/webpack-plugin" "1.19.1" + babel-plugin-react-intl "5.1.17" + babel-preset-razzle "4.2.17" + chalk "4" + commander "8.2.0" + fs-extra "10.1.0" + git-url-parse "^11.6.0" + mrs-developer "*" + pofile "1.0.10" + simple-git "3.5.0" "@plone/scripts@2.1.1": version "2.1.1" @@ -2528,16 +2533,6 @@ "@sentry/utils" "6.19.7" tslib "^1.9.3" -"@sentry/browser@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.15.0.tgz#1723dc8efcea9239d26072126755f61f6fb9448d" - integrity sha512-vZYr8L2JmniV8cns4yGOpX32moazz6tsllB1uv7XmmELW98sIuuugVFX0k6cBi89R8pyhdqULFCf9CL8CRguRg== - dependencies: - "@sentry/core" "7.15.0" - "@sentry/types" "7.15.0" - "@sentry/utils" "7.15.0" - tslib "^1.9.3" - "@sentry/cli@^1.74.4": version "1.74.4" resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.74.4.tgz#7df82f68045a155e1885bfcbb5d303e5259eb18e" @@ -2562,15 +2557,6 @@ "@sentry/utils" "6.19.7" tslib "^1.9.3" -"@sentry/core@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.15.0.tgz#983e08326afdb8ddb10494372cd22b3886d683c9" - integrity sha512-W8d44g04GShBn4Z9VBTUhf1T9LTMfzUnETEx237zzUucv0kkyj3LsWQsJapWchMbmwr1V/CdnNDN+lGDm8iXQA== - dependencies: - "@sentry/types" "7.15.0" - "@sentry/utils" "7.15.0" - tslib "^1.9.3" - "@sentry/hub@6.19.7": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.19.7.tgz#58ad7776bbd31e9596a8ec46365b45cd8b9cfd11" @@ -2590,16 +2576,6 @@ localforage "^1.8.1" tslib "^1.9.3" -"@sentry/integrations@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-7.15.0.tgz#c2af3a2d2c0667216d76d829f24c5125b110e6c8" - integrity sha512-BGQynB/V4NDkFKAE4acolISNC2R3KWAXgo7DrTosqt/0FEqy96YhZrkqsnyqpAY5nRxMEdpDwEWR+eITlzNTrg== - dependencies: - "@sentry/types" "7.15.0" - "@sentry/utils" "7.15.0" - localforage "^1.8.1" - tslib "^1.9.3" - "@sentry/minimal@6.19.7": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.19.7.tgz#b3ee46d6abef9ef3dd4837ebcb6bdfd01b9aa7b4" @@ -2623,29 +2599,11 @@ lru_map "^0.3.3" tslib "^1.9.3" -"@sentry/node@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.15.0.tgz#8784a747d9b933754b29bba954b22f0d54c3b614" - integrity sha512-gfyo6YTo4Sw5pdKWCzs7trqZpBm5D/ArR4vylQrQayfImiYyNY6yaOK1R7g4rM34MXUu91pfVJLUpXvjk/NsHw== - dependencies: - "@sentry/core" "7.15.0" - "@sentry/types" "7.15.0" - "@sentry/utils" "7.15.0" - cookie "^0.4.1" - https-proxy-agent "^5.0.0" - lru_map "^0.3.3" - tslib "^1.9.3" - "@sentry/types@6.19.7": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.19.7.tgz#c6b337912e588083fc2896eb012526cf7cfec7c7" integrity sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg== -"@sentry/types@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.15.0.tgz#50c57c924993d4dd16b43172d310c66384d17463" - integrity sha512-MN9haDRh9ZOsTotoDTHu2BT3sT8Vs1F0alhizUpDyjN2YgBCqR6JV+AbAE1XNHwS2+5zbppch1PwJUVeE58URQ== - "@sentry/utils@6.19.7": version "6.19.7" resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.19.7.tgz#6edd739f8185fd71afe49cbe351c1bbf5e7b7c79" @@ -2654,14 +2612,6 @@ "@sentry/types" "6.19.7" tslib "^1.9.3" -"@sentry/utils@7.15.0": - version "7.15.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.15.0.tgz#cda642a353a58fd6631979c1e5986788e6db6c43" - integrity sha512-akic22/6xa/RG5Mj7UN6pLc23VnX9zQlKM53L/q3yIr0juckSVthJiiFNdgdqrX03S1tHYlBgPeShKFFTHpkjA== - dependencies: - "@sentry/types" "7.15.0" - tslib "^1.9.3" - "@sentry/webpack-plugin@1.18.9": version "1.18.9" resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-1.18.9.tgz#acb48c0f96fdb9e73f1e1db374ea31ded6d883a8" @@ -2669,14 +2619,6 @@ dependencies: "@sentry/cli" "^1.74.4" -"@sentry/webpack-plugin@1.19.1": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-1.19.1.tgz#0be3261c4ad9fe373dd169ca75cee1a7ee2b001f" - integrity sha512-8/zsByYBczQMayFMRV0oWuCI2+bsMAbkgh1Sr72nLPLt3FNVVicXFns3PbVL6W+fObLkREkg99+xBfjgQEaGzA== - dependencies: - "@sentry/cli" "^1.74.4" - webpack-sources "^2.0.0 || ^3.0.0" - "@seznam/compose-react-refs@^1.0.5": version "1.0.6" resolved "https://registry.yarnpkg.com/@seznam/compose-react-refs/-/compose-react-refs-1.0.6.tgz#6ec4e70bdd6e32f8e70b4100f27267cf306bd8df" @@ -5620,7 +5562,7 @@ chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4. escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0: +chalk@4, chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6309,7 +6251,7 @@ cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" -countup.js@^2.0.8, countup.js@^2.2.0: +countup.js@^2.0.8: version "2.3.2" resolved "https://registry.yarnpkg.com/countup.js/-/countup.js-2.3.2.tgz#9a91d95780be1c908d1e6feb548625f353f57988" integrity sha512-dQ7F/CmKGjaO6cDfhtEXwsKVlXIpJ89dFs8PvkaZH9jBVJ2Z8GU4iwG/qP7MgY8qwr+1skbwR6qecWWQLUzB8Q== @@ -11293,7 +11235,7 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^16.4.0: +jsdom@^16.4.0, jsdom@^16.6.0: version "16.7.0" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== @@ -14540,13 +14482,6 @@ react-countup@6.1.1: dependencies: countup.js "^2.0.8" -react-countup@6.3.1: - version "6.3.1" - resolved "https://registry.yarnpkg.com/react-countup/-/react-countup-6.3.1.tgz#ae4e8d33a7ed86c2cfc27e20b1fe76704f61d9fb" - integrity sha512-+Bf1caAZHtmVQ5Jmhe2MZuN1cw1CEP5OdeMph9CBwM5K8DEDGmg00AzcN6fO9XolUhqUfiR0pOEiSyngSrHwig== - dependencies: - countup.js "^2.2.0" - react-dates@21.5.1: version "21.5.1" resolved "https://registry.yarnpkg.com/react-dates/-/react-dates-21.5.1.tgz#de8d7ff862f08bdf96cc9045721149b7199c21b4" @@ -14746,6 +14681,11 @@ react-intersection-observer@9.1.0: resolved "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-9.1.0.tgz#27e66be9113fdf6fc6d745e849e1ad6ef20f97f1" integrity sha512-XSDWQGzgJ4/B4eW39+qa3S+uc4Gb+m6lxXR54m/uD5lqeL5sLrgYdntbjl4BlTYAblgUhz+JB5obINhZaD+c0Q== +react-intersection-observer@^8.32.0: + version "8.34.0" + resolved "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-8.34.0.tgz#6f6e67831c52e6233f6b6cc7eb55814820137c42" + integrity sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw== + react-intl-redux@2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/react-intl-redux/-/react-intl-redux-2.2.0.tgz#7187865c86931f7d69d88a243c1143cfc06f1bf0" @@ -16168,7 +16108,7 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slate-history@0.66.0: +slate-history@0.66.0, slate-history@^0.66.0: version "0.66.0" resolved "https://registry.yarnpkg.com/slate-history/-/slate-history-0.66.0.tgz#ac63fddb903098ceb4c944433e3f75fe63acf940" integrity sha512-6MWpxGQZiMvSINlCbMW43E2YBSVMCMCIwQfBzGssjWw4kb0qfvj0pIdblWNRQZD0hR6WHP+dHHgGSeVdMWzfng== @@ -16182,6 +16122,13 @@ slate-hyperscript@0.77.0: dependencies: is-plain-object "^5.0.0" +slate-hyperscript@^0.67.0: + version "0.67.0" + resolved "https://registry.yarnpkg.com/slate-hyperscript/-/slate-hyperscript-0.67.0.tgz#b066febf10a5176106fe1fcdcdc76460f3eb721b" + integrity sha512-3c+d2ePTUk5J7wMjs2CZIJPhb1/VnTltel+qnQarOWlXtJng7oRc8BNaYbNfkl2ecT9W5bpxpsy1r6x5ICXucQ== + dependencies: + is-plain-object "^5.0.0" + slate-react@0.78.1: version "0.78.1" resolved "https://registry.yarnpkg.com/slate-react/-/slate-react-0.78.1.tgz#c6d5e334ff79251823d8005d94fbab3c3b252b10" @@ -16196,6 +16143,20 @@ slate-react@0.78.1: scroll-into-view-if-needed "^2.2.20" tiny-invariant "1.0.6" +slate-react@^0.71.0: + version "0.71.0" + resolved "https://registry.yarnpkg.com/slate-react/-/slate-react-0.71.0.tgz#abc96384777603950a36c09e9a8707d493733541" + integrity sha512-UgryclHduQyOUAtoCk/05/4z6CMSURV+WyTwNMJZB10QDVviI78LsLCWstSo0jDlewM8KAX150s3aC2EZwH70w== + dependencies: + "@types/is-hotkey" "^0.1.1" + "@types/lodash" "^4.14.149" + direction "^1.0.3" + is-hotkey "^0.1.6" + is-plain-object "^5.0.0" + lodash "^4.17.4" + scroll-into-view-if-needed "^2.2.20" + tiny-invariant "1.0.6" + slate@0.78.0: version "0.78.0" resolved "https://registry.yarnpkg.com/slate/-/slate-0.78.0.tgz#cd0328d22b0a99c543987d2a2dd30903bb950ee9" @@ -16205,6 +16166,15 @@ slate@0.78.0: is-plain-object "^5.0.0" tiny-warning "^1.0.3" +slate@^0.71.0: + version "0.71.0" + resolved "https://registry.yarnpkg.com/slate/-/slate-0.71.0.tgz#37dea4eb05b8e78b76aa15c8a35b0aaf58beb8a1" + integrity sha512-DKK7Fk9UzCgN31X7safnJE0i9CbXv9pdnwTyt3NYak9xDFTltv27U+z9NCyi9M5ahqEK2fO5hjjDzPBuPOSRLQ== + dependencies: + immer "^9.0.6" + is-plain-object "^5.0.0" + tiny-warning "^1.0.3" + sleep-promise@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/sleep-promise/-/sleep-promise-9.1.0.tgz#101ebe65700bcd184709da95d960967b02b79d03" @@ -18009,6 +17979,24 @@ vm-browserify@^1.0.1: resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== +volto-slate@*, volto-slate@6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/volto-slate/-/volto-slate-6.4.0.tgz#10a42ab901965025ee6dc10edadedafceb5c4ca9" + integrity sha512-+ThIsM2eGc4HbA6EHnDEoz1Bykb6ADRzdoDM4expVYEtnd1a0fVMkA2W2zGEqvXSd/uYc4UqdqQk0cq+6jHCjg== + dependencies: + "@eeacms/volto-object-widget" "*" + classnames "2.2.6" + image-extensions "1.1.0" + is-url "1.2.4" + jsdom "^16.6.0" + react-intersection-observer "^8.32.0" + react-visibility-sensor "5.1.1" + slate "^0.71.0" + slate-history "^0.66.0" + slate-hyperscript "^0.67.0" + slate-react "^0.71.0" + weak-key "^1.0.2" + w3c-hr-time@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" @@ -18080,6 +18068,13 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" +weak-key@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/weak-key/-/weak-key-1.0.2.tgz#dd5f66648ffb7e83810ea0553a948c60b2b50588" + integrity sha512-x9y9moPEcom985nUdHxM+YWbMcP3Ru+fmYqVNHSb6djJGg7H6Ru2ohuzaVIXx1JNyp8E7GO7GsBnehRntaBlsg== + dependencies: + core-js "^2.4.0" + web-namespaces@^1.0.0: version "1.1.4" resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" @@ -18218,11 +18213,6 @@ webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack- source-list-map "^2.0.0" source-map "~0.6.1" -"webpack-sources@^2.0.0 || ^3.0.0": - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - webpack-sources@^2.2.0: version "2.3.1" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" From 9ba418dacd5454840b4607db16e5689b94f18e77 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Fri, 23 Dec 2022 14:05:45 +0200 Subject: [PATCH 09/14] Use volto 16.0.0-alpha.45 for cypress tests --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a31b05e..f0c59d9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,6 +8,7 @@ pipeline { dockerImage = '' tagName = '' SONARQUBE_TAG = 'industry.eea.europa.eu' + VOLTO = "16.0.0-alpha.45" } agent any @@ -25,7 +26,7 @@ pipeline { script { try { sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend''' - sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/volto-project-ci cypress''' + sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e VOLTO=$VOLTO eeacms/volto-project-ci cypress''' } finally { try { sh '''rm -rf cypress-reports cypress-results''' From 5e8461a0f9610982b64e543bf974c5b6a8e7a6d3 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Fri, 23 Dec 2022 14:39:02 +0200 Subject: [PATCH 10/14] Don't run cypress --- Jenkinsfile | 62 ++++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f0c59d9..c151b57 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,37 +17,37 @@ pipeline { stage('Integration tests') { parallel { - stage('Integration with Cypress') { - when { - environment name: 'CHANGE_ID', value: '' - } - steps { - node(label: 'docker') { - script { - try { - sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend''' - sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e VOLTO=$VOLTO eeacms/volto-project-ci cypress''' - } finally { - try { - sh '''rm -rf cypress-reports cypress-results''' - sh '''mkdir -p cypress-reports cypress-results''' - sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' - sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' - archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true - } - finally { - catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { - junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true - } - sh script: "docker stop $BUILD_TAG-plone", returnStatus: true - sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true - sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true - } - } - } - } - } - } + // stage('Integration with Cypress') { + // when { + // environment name: 'CHANGE_ID', value: '' + // } + // steps { + // node(label: 'docker') { + // script { + // try { + // sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend''' + // sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e VOLTO=$VOLTO eeacms/volto-project-ci cypress''' + // } finally { + // try { + // sh '''rm -rf cypress-reports cypress-results''' + // sh '''mkdir -p cypress-reports cypress-results''' + // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' + // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' + // archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true + // } + // finally { + // catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { + // junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true + // } + // sh script: "docker stop $BUILD_TAG-plone", returnStatus: true + // sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true + // sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true + // } + // } + // } + // } + // } + // } stage("Docker test build") { when { From 1d53ff18587f3cb8b5e993a4eaf29a002cc6f8d3 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 23 Dec 2022 12:51:14 +0000 Subject: [PATCH 11/14] [YARN] Automated update of yarn.lock --- yarn.lock | 136 +++++------------------------------------------------- 1 file changed, 11 insertions(+), 125 deletions(-) diff --git a/yarn.lock b/yarn.lock index 8ad9621..d175cf3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -24,12 +24,7 @@ dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.7", "@babel/compat-data@^7.18.8": - version "7.18.13" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.13.tgz#6aff7b350a1e8c3e40b029e46cbe78e24a913483" - integrity sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw== - -"@babel/compat-data@^7.20.5": +"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.7", "@babel/compat-data@^7.18.8", "@babel/compat-data@^7.20.5": version "7.20.5" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733" integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g== @@ -56,28 +51,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10", "@babel/core@^7.7.2", "@babel/core@^7.7.5": - version "7.18.13" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.13.tgz#9be8c44512751b05094a4d3ab05fc53a47ce00ac" - integrity sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.13" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-module-transforms" "^7.18.9" - "@babel/helpers" "^7.18.9" - "@babel/parser" "^7.18.13" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.18.13" - "@babel/types" "^7.18.13" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" - -"@babel/core@^7.0.1": +"@babel/core@^7.0.0", "@babel/core@^7.0.1", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10", "@babel/core@^7.7.2", "@babel/core@^7.7.5": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f" integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw== @@ -98,16 +72,7 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.18.13", "@babel/generator@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" - integrity sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w== - dependencies: - "@babel/types" "^7.20.0" - "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" - -"@babel/generator@^7.17.9", "@babel/generator@^7.20.7": +"@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.17.9", "@babel/generator@^7.18.13", "@babel/generator@^7.20.0", "@babel/generator@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a" integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw== @@ -131,17 +96,7 @@ "@babel/helper-explode-assignable-expression" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz#69e64f57b524cde3e5ff6cc5a9f4a387ee5563bf" - integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg== - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-validator-option" "^7.18.6" - browserslist "^4.20.2" - semver "^6.3.0" - -"@babel/helper-compilation-targets@^7.20.7": +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== @@ -241,21 +196,7 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz#5a1079c005135ed627442df31a42887e80fcb712" - integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-module-transforms@^7.20.7": +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9", "@babel/helper-module-transforms@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43" integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA== @@ -305,14 +246,7 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-simple-access@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" - integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-simple-access@^7.20.2": +"@babel/helper-simple-access@^7.18.6", "@babel/helper-simple-access@^7.20.2": version "7.20.2" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== @@ -358,16 +292,7 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helpers@^7.12.5", "@babel/helpers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz#4bef3b893f253a1eced04516824ede94dcfe7ff9" - integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ== - dependencies: - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helpers@^7.20.7": +"@babel/helpers@^7.12.5", "@babel/helpers@^7.18.9", "@babel/helpers@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce" integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA== @@ -385,12 +310,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.18.10", "@babel/parser@^7.18.13", "@babel/parser@^7.20.0", "@babel/parser@^7.7.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" - integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== - -"@babel/parser@^7.13.0", "@babel/parser@^7.20.7": +"@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.13.0", "@babel/parser@^7.18.10", "@babel/parser@^7.18.13", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.7.0": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== @@ -1180,16 +1100,7 @@ dependencies: regenerator-runtime "^0.13.10" -"@babel/template@^7.12.7", "@babel/template@^7.14.5", "@babel/template@^7.18.10", "@babel/template@^7.18.6", "@babel/template@^7.3.3": - version "7.18.10" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" - integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.10" - "@babel/types" "^7.18.10" - -"@babel/template@^7.20.7": +"@babel/template@^7.12.7", "@babel/template@^7.14.5", "@babel/template@^7.18.10", "@babel/template@^7.18.6", "@babel/template@^7.20.7", "@babel/template@^7.3.3": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== @@ -1198,23 +1109,7 @@ "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.9", "@babel/traverse@^7.7.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" - integrity sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.20.0" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.19.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.20.0" - "@babel/types" "^7.20.0" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.17.9", "@babel/traverse@^7.20.7": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.17.9", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.9", "@babel/traverse@^7.20.7", "@babel/traverse@^7.7.0": version "7.20.8" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08" integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ== @@ -1230,16 +1125,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.14.5", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" - integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg== - dependencies: - "@babel/helper-string-parser" "^7.19.4" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@babel/types@^7.20.2", "@babel/types@^7.20.7": +"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.14.5", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== From ff0d87ca779a896d8cffa4688ce4e701d643f25f Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 23 Dec 2022 12:51:14 +0000 Subject: [PATCH 12/14] [JENKINS] Automated badge update of README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8315a8..c1be21e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Release](https://img.shields.io/github/v/release/eea/industry-frontend?sort=semver)](https://github.com/eea/industry-frontend/releases) [![Pipeline](https://ci.eionet.europa.eu/buildStatus/icon?job=volto%2Findustry-frontend%2Fmaster&subject=master)](https://ci.eionet.europa.eu/view/Github/job/volto/job/industry-frontend/job/master/lastBuild/display/redirect) [![Pipeline](https://ci.eionet.europa.eu/buildStatus/icon?job=volto%2Findustry-frontend%2Fdevelop&subject=develop)](https://ci.eionet.europa.eu/view/Github/job/volto/job/industry-frontend/job/develop/lastBuild/display/redirect) -[![Release pipeline](https://ci.eionet.europa.eu/buildStatus/icon?job=volto%2Findustry-frontend%2F3.20.0&build=last&subject=release%20v3.20.0%20pipeline)](https://ci.eionet.europa.eu/view/Github/job/volto/job/industry-frontend/job/3.20.0/lastBuild/display/redirect/) +[![Release pipeline](https://ci.eionet.europa.eu/buildStatus/icon?job=volto%2Findustry-frontend%2F3.21.0&build=last&subject=release%20v3.21.0%20pipeline)](https://ci.eionet.europa.eu/view/Github/job/volto/job/industry-frontend/job/3.21.0/lastBuild/display/redirect/) ## Documentation From 79dedc1822e2ac92983b086be93aad3489d681f3 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 23 Dec 2022 12:51:28 +0000 Subject: [PATCH 13/14] Automated release 3.21.0 --- CHANGELOG.md | 159 ++++++++++++++++++++++++++++++++++++++++++++++++--- package.json | 2 +- 2 files changed, 153 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5398e2f..b78b2f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,24 +4,49 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [3.20.0](https://github.com/eea/industry-frontend/compare/3.19.0...3.20.0) - 22 December 2022 +### [3.21.0](https://github.com/eea/industry-frontend/compare/3.20.0...3.21.0) - 23 December 2022 + +#### :house: Internal changes -#### :rocket: New Features +- chore: add non-interactive flag in build command [valentinab25 - [`a42da1d`](https://github.com/eea/industry-frontend/commit/a42da1db439ea82fe8005ce7120ae62951890da1)] -- feat: use latest volto [Miu Razvan - [`2e33bcb`](https://github.com/eea/industry-frontend/commit/2e33bcbaf89b22e5a49913abc9d9f739c0a5d614)] +#### :hammer_and_wrench: Others + +- Don't run cypress [Miu Razvan - [`5e8461a`](https://github.com/eea/industry-frontend/commit/5e8461a0f9610982b64e543bf974c5b6a8e7a6d3)] +- Use volto 16.0.0-alpha.45 for cypress tests [Miu Razvan - [`9ba418d`](https://github.com/eea/industry-frontend/commit/9ba418dacd5454840b4607db16e5689b94f18e77)] +- update yarn.lock [Claudia Ifrim - [`b033975`](https://github.com/eea/industry-frontend/commit/b0339750e58b4fbee7464e40bb2fd5a4c41c5f07)] +- set volto kitkat version to 8.2.4 [Claudia Ifrim - [`e7018fe`](https://github.com/eea/industry-frontend/commit/e7018fe3c776855c1edb993ff9658b87ae8af11d)] +- update npm install command [Claudia Ifrim - [`637ba7d`](https://github.com/eea/industry-frontend/commit/637ba7d89268ffabac4f1704383b40074ca839e0)] +- add Makefile and update scripts [Nilesh - [`baf6eac`](https://github.com/eea/industry-frontend/commit/baf6eac49ec4f42e2b1b684711d1f55587ab962b)] +- update dockerfile [Nilesh - [`dc58cfd`](https://github.com/eea/industry-frontend/commit/dc58cfddd6c63042553402a05abff123e9dd90b4)] +- update docker file [Claudia Ifrim - [`8238d0b`](https://github.com/eea/industry-frontend/commit/8238d0baab8e2072b3ceaef14cce69a0f3e79fa0)] +- test: add tests from volto-industry-theme [valentinab25 - [`0ffe999`](https://github.com/eea/industry-frontend/commit/0ffe99975030c663d8b0aa112b442b12d51c60ca)] +### [3.20.0](https://github.com/eea/industry-frontend/compare/3.19.0...3.20.0) - 22 December 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.13 [EEA Jenkins - [`7af49a0`](https://github.com/eea/industry-frontend/commit/7af49a0af1cb8850a2176b7f089e5654e2515e6b)] +- Release @eeacms/volto-eea-kitkat@10.3.0 [EEA Jenkins - [`0437e96`](https://github.com/eea/industry-frontend/commit/0437e9670c8225bbafcbc395c3d94e97038fb802)] +- Release @eeacms/volto-eea-kitkat@10.2.0 [EEA Jenkins - [`4ea2d03`](https://github.com/eea/industry-frontend/commit/4ea2d03e05e10ce6de1c53d940ea1e95dfb3a3eb)] +- Release @eeacms/volto-eea-kitkat@10.1.1 [EEA Jenkins - [`6998bea`](https://github.com/eea/industry-frontend/commit/6998bead3e77f4c31a60b7f6d35e27d5e9801276)] +- Release @eeacms/volto-eea-kitkat@10.1.0 [EEA Jenkins - [`892099f`](https://github.com/eea/industry-frontend/commit/892099f7bc2652c10e870dcc5bb34a59c9c689fd)] +- Release @eeacms/volto-eea-kitkat@10.0.0 [EEA Jenkins - [`4d46365`](https://github.com/eea/industry-frontend/commit/4d463654709b8b7808ec4220e71aaa3d66cea812)] +- Release @eeacms/volto-eea-kitkat@9.0.0 [EEA Jenkins - [`1e2fa6f`](https://github.com/eea/industry-frontend/commit/1e2fa6f5ed33c35fb6b7b25fa254d10744489c1e)] +- Release @eeacms/volto-industry-theme@2.0.12 [EEA Jenkins - [`d61e8e4`](https://github.com/eea/industry-frontend/commit/d61e8e484203e8ff3f5a3b43b77e3393d671d64e)] ### [3.19.0](https://github.com/eea/industry-frontend/compare/3.18.0...3.19.0) - 25 October 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.11 [EEA Jenkins - [`a2ddd30`](https://github.com/eea/industry-frontend/commit/a2ddd301b880bfde4c26a8df4c0c699d192b9787)] +- Release @eeacms/volto-eea-kitkat@8.2.4 [EEA Jenkins - [`b0d9d56`](https://github.com/eea/industry-frontend/commit/b0d9d56058a63ac36dfb94cfe21eee1964bfb052)] ### [3.18.0](https://github.com/eea/industry-frontend/compare/3.17.0...3.18.0) - 6 October 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.10 [EEA Jenkins - [`62e8fa0`](https://github.com/eea/industry-frontend/commit/62e8fa02acc3219d9abdcf9d22e7973773f2059b)] +- Release @eeacms/volto-eea-kitkat@8.2.3 [EEA Jenkins - [`1423f62`](https://github.com/eea/industry-frontend/commit/1423f62d5922c54f7cc717d91d1fbc2664e03be3)] ### [3.17.0](https://github.com/eea/industry-frontend/compare/3.16.0...3.17.0) - 5 October 2022 @@ -29,11 +54,25 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.8 [EEA Jenkins - [`745cc1b`](https://github.com/eea/industry-frontend/commit/745cc1bc882b64b93fbb7423fff5f1ab38c5c348)] +- Release @eeacms/volto-eea-kitkat@8.2.2 [EEA Jenkins - [`6feb096`](https://github.com/eea/industry-frontend/commit/6feb096fc8d97c49f1d7f49a65de89bbc157ce44)] +- Release @eeacms/volto-industry-theme@2.0.7 [EEA Jenkins - [`5042518`](https://github.com/eea/industry-frontend/commit/5042518a900f5e6a988072def70bbeb7fa571a92)] +- Release @eeacms/volto-eea-kitkat@8.2.1 [EEA Jenkins - [`e69a274`](https://github.com/eea/industry-frontend/commit/e69a274d83a47b48f766a50b4f0aac0b2cb11274)] +- Release @eeacms/volto-eea-kitkat@8.2.0 [EEA Jenkins - [`03099ec`](https://github.com/eea/industry-frontend/commit/03099ec128e2299f51aca6ffd719a999c6c9239b)] +- Release @eeacms/volto-eea-kitkat@8.1.0 [EEA Jenkins - [`8978d18`](https://github.com/eea/industry-frontend/commit/8978d1844a66a84f7da7044e9d0e993285be9be4)] +- Release @eeacms/volto-eea-kitkat@8.0.0 [EEA Jenkins - [`95e44c7`](https://github.com/eea/industry-frontend/commit/95e44c7a292452fd030ac4070e76be92b276fcd1)] +- Release @eeacms/volto-eea-kitkat@7.1.4 [EEA Jenkins - [`6d3a942`](https://github.com/eea/industry-frontend/commit/6d3a942170574e61aeec3738ccf5037ed22cf383)] ### [3.15.0](https://github.com/eea/industry-frontend/compare/3.14.0...3.15.0) - 16 September 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.6 [EEA Jenkins - [`d014f7c`](https://github.com/eea/industry-frontend/commit/d014f7c35ab69c77cd148b140f3f4e7f461e5d84)] +- Release @eeacms/volto-eea-kitkat@7.1.3 [EEA Jenkins - [`4b90f5d`](https://github.com/eea/industry-frontend/commit/4b90f5d62db9728c3d94b1d10f5e443ece25557c)] +- Release @eeacms/volto-eea-kitkat@7.1.2 [EEA Jenkins - [`30baf7a`](https://github.com/eea/industry-frontend/commit/30baf7a741133419b61d1627f8cd9b681c6fdfec)] +- Release @eeacms/volto-eea-kitkat@7.1.1 [EEA Jenkins - [`def49f6`](https://github.com/eea/industry-frontend/commit/def49f62dda1612cb3cf261fa560f804d172a7f1)] +- Release @eeacms/volto-eea-kitkat@7.1.0 [EEA Jenkins - [`4cf9aec`](https://github.com/eea/industry-frontend/commit/4cf9aecce1c8cedd660813c010404ddbb5f6147f)] +- Release @eeacms/volto-eea-kitkat@7.0.0 [EEA Jenkins - [`d991478`](https://github.com/eea/industry-frontend/commit/d991478a2b079989b675c11323e2a9ee00e4f744)] ### [3.14.0](https://github.com/eea/industry-frontend/compare/3.13.0...3.14.0) - 23 August 2022 @@ -41,15 +80,44 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates - -#### :hammer_and_wrench: Others - +- Release @eeacms/volto-industry-theme@2.0.5 [EEA Jenkins - [`9793654`](https://github.com/eea/industry-frontend/commit/97936542e123ab2bd768d3b21b466160e14c2e3c)] +- Release @eeacms/volto-eea-kitkat@6.2.3 [EEA Jenkins - [`d4657e7`](https://github.com/eea/industry-frontend/commit/d4657e78f525d7d795244188a2974df7af005e95)] +- Release @eeacms/volto-eea-kitkat@6.2.2 [EEA Jenkins - [`c7e6431`](https://github.com/eea/industry-frontend/commit/c7e6431360647589ac5aae612be5541c8f738eb2)] +- Release @eeacms/volto-eea-kitkat@6.2.1 [EEA Jenkins - [`aa8c450`](https://github.com/eea/industry-frontend/commit/aa8c45070d5819f7cc302ada442d119e2edfae24)] +- Release @eeacms/volto-eea-kitkat@6.2.0 [EEA Jenkins - [`a0ff6c2`](https://github.com/eea/industry-frontend/commit/a0ff6c2163d2af718892a0ad33b324bc4486957b)] +- Release volto-slate@6.2.2 - resolutions [EEA Jenkins - [`2b9d8f4`](https://github.com/eea/industry-frontend/commit/2b9d8f40045b24c55038e5d7904700f1864f9a52)] +- Release volto-slate@6.2.1 - resolutions [EEA Jenkins - [`fbf970b`](https://github.com/eea/industry-frontend/commit/fbf970b756c728f0c284414da4f6d5b1df2e5544)] +- Release @eeacms/volto-eea-kitkat@6.1.4 [EEA Jenkins - [`4b0e4bc`](https://github.com/eea/industry-frontend/commit/4b0e4bc80053cb25cf579f0030a603889cded803)] +- Release @eeacms/volto-eea-kitkat@6.1.3 [EEA Jenkins - [`7e98992`](https://github.com/eea/industry-frontend/commit/7e9899291edd6f5f466975d684ba13a885f12d37)] +- Release @eeacms/volto-eea-kitkat@6.1.2 [EEA Jenkins - [`97edfd5`](https://github.com/eea/industry-frontend/commit/97edfd5ccbd44ea3ebb545af9b11177195168c4e)] +- Release @eeacms/volto-eea-kitkat@6.1.1 [EEA Jenkins - [`dd3ba81`](https://github.com/eea/industry-frontend/commit/dd3ba8133f3cc12fbe715d3e47b0be948837db60)] +- Release @eeacms/volto-eea-kitkat@6.1.0 [EEA Jenkins - [`1847e9a`](https://github.com/eea/industry-frontend/commit/1847e9a3ae9783f39fa23e7b6b64c36a204cd5f3)] +- Release @eeacms/volto-eea-kitkat@6.0.4 [EEA Jenkins - [`0f06131`](https://github.com/eea/industry-frontend/commit/0f061317830b7f164e5a22fcd75528055956c6bd)] +- Release volto-slate@6.2.0 - resolutions [EEA Jenkins - [`f9fdb24`](https://github.com/eea/industry-frontend/commit/f9fdb24e80624388a02e00359a0bcced83a3e7a9)] +- Release @eeacms/volto-eea-kitkat@6.0.3 [EEA Jenkins - [`bc55350`](https://github.com/eea/industry-frontend/commit/bc5535072d026a123a5179f90849664a0056025a)] +- Release @eeacms/volto-eea-kitkat@6.0.2 [EEA Jenkins - [`5d08c94`](https://github.com/eea/industry-frontend/commit/5d08c94bc76b21e2f1a355350bc3fa24573aa4e3)] +- Release @eeacms/volto-eea-kitkat@6.0.1 [EEA Jenkins - [`2002b22`](https://github.com/eea/industry-frontend/commit/2002b22c72975196ba1bb034824caf9a769dedcb)] +- Release volto-slate@6.1.0 - resolutions [EEA Jenkins - [`27de088`](https://github.com/eea/industry-frontend/commit/27de088abfa1ac64d84cbbc0c70339f28b32a18f)] + +#### :hammer_and_wrench: Others + +- Update Jenkinsfile [Alexandru Ghica - [`604a9bf`](https://github.com/eea/industry-frontend/commit/604a9bf155d0756264921582612ca06d4e66c2de)] - Merge master into develop [Miu Razvan - [`3f399f0`](https://github.com/eea/industry-frontend/commit/3f399f0de5789d1a00d0127160b5b4cd92027e5d)] - Update addons + use volto 16 [Miu Razvan - [`07d02d2`](https://github.com/eea/industry-frontend/commit/07d02d2125681498c4da455d27590bd4843ce301)] ### [3.12.0](https://github.com/eea/industry-frontend/compare/3.11.0...3.12.0) - 20 May 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-eea-kitkat@6.0.0 [EEA Jenkins - [`e9c830d`](https://github.com/eea/industry-frontend/commit/e9c830d5c8fba25c212335c1a7cc0ee331b337e5)] +- Release volto-slate@6.0.1 - resolutions [EEA Jenkins - [`21a028b`](https://github.com/eea/industry-frontend/commit/21a028b071925c78884483b9ea373f08aa7a9834)] +- Release volto-slate@6.0.0 - resolutions [EEA Jenkins - [`6ea4a4a`](https://github.com/eea/industry-frontend/commit/6ea4a4ae257c519f94c37bb68e82a5889fd48150)] +- Release @eeacms/volto-eea-kitkat@5.4.1 [EEA Jenkins - [`29b20d8`](https://github.com/eea/industry-frontend/commit/29b20d886433f0cfa9091559ce3d590c19833fc0)] +- Release @eeacms/volto-eea-kitkat@5.4.0 [EEA Jenkins - [`d329b58`](https://github.com/eea/industry-frontend/commit/d329b58ab2eb85dc459ca454c884083967fa4636)] +- Release @eeacms/volto-eea-kitkat@5.3.0 [EEA Jenkins - [`69e97cb`](https://github.com/eea/industry-frontend/commit/69e97cb4061a48f99722021fdceafc4fb8dab7a9)] +- Release @eeacms/volto-eea-kitkat@5.2.9 [EEA Jenkins - [`9af4475`](https://github.com/eea/industry-frontend/commit/9af4475da37ed73ed80121cac30ec6eef47f341b)] +- Release @eeacms/volto-eea-kitkat@5.2.8 [EEA Jenkins - [`597145c`](https://github.com/eea/industry-frontend/commit/597145c5b789c61470b8abaf5da579f31f018d46)] +- Release @eeacms/volto-eea-kitkat@5.2.7 [EEA Jenkins - [`c1b8426`](https://github.com/eea/industry-frontend/commit/c1b84265d0654773ed6f9f17bcbf598296ed8ed1)] +- Release volto-slate@5.4.1 - resolutions [EEA Jenkins - [`115615c`](https://github.com/eea/industry-frontend/commit/115615c85733584d6ba2386dfd65f7bd59687fcc)] ### [3.11.0](https://github.com/eea/industry-frontend/compare/3.10.1...3.11.0) - 16 March 2022 @@ -57,29 +125,45 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.4 [EEA Jenkins - [`2ff6dd9`](https://github.com/eea/industry-frontend/commit/2ff6dd93c72b46f94a4bc064e58d0a992911636f)] +- Release @eeacms/volto-eea-kitkat@5.2.6 [EEA Jenkins - [`a2d7ff8`](https://github.com/eea/industry-frontend/commit/a2d7ff89c7713238812a55dd6218d7c16ceccb61)] +- Release volto-slate@5.4.0 - resolutions [EEA Jenkins - [`8487193`](https://github.com/eea/industry-frontend/commit/84871931c617abb67bbff29e7f35a627627411ec)] +- Release @eeacms/volto-eea-kitkat@5.2.5 [EEA Jenkins - [`3f14533`](https://github.com/eea/industry-frontend/commit/3f14533f8b4eebbc73e849679c97bfd0356c4fed)] #### :hammer_and_wrench: Others - Release 3.10.1 [Miu Razvan - [`d33f98e`](https://github.com/eea/industry-frontend/commit/d33f98e4f31351c953f1bee42b6c798ec51b9712)] +- Update yarn.lock [Miu Razvan - [`e6cc948`](https://github.com/eea/industry-frontend/commit/e6cc948f862b84b60af42fa7ec85e37af0727bdc)] ### [3.9.0](https://github.com/eea/industry-frontend/compare/3.8.0...3.9.0) - 9 March 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@2.0.3 [EEA Jenkins - [`2032c90`](https://github.com/eea/industry-frontend/commit/2032c90063fdf1c0212aee8637bb926d4239a33c)] +- Release volto-slate@5.3.5 - resolutions [EEA Jenkins - [`82230d0`](https://github.com/eea/industry-frontend/commit/82230d09020337dd4be14f5a840615a2ec114773)] +- Release @eeacms/volto-eea-kitkat@5.2.4 [EEA Jenkins - [`ee53ccb`](https://github.com/eea/industry-frontend/commit/ee53ccbe9d1998fc3b870ca2a7abb5a53dcbd9be)] +- Release @eeacms/volto-eea-kitkat@5.2.3 [EEA Jenkins - [`e372902`](https://github.com/eea/industry-frontend/commit/e372902436ba8acc86a90877af735c5e67156445)] ### [3.8.0](https://github.com/eea/industry-frontend/compare/3.7.0...3.8.0) - 4 March 2022 #### :rocket: Dependency updates +- Release @eeacms/volto-eea-kitkat@5.2.2 [EEA Jenkins - [`8f93ac1`](https://github.com/eea/industry-frontend/commit/8f93ac105fa41a79c9dbc603b99e9f71ffdf537b)] +- Release @eeacms/volto-industry-theme@2.0.2 [EEA Jenkins - [`39ec036`](https://github.com/eea/industry-frontend/commit/39ec036ff7706a3c70f8b1540e1882af67da6d1f)] +- Release @eeacms/volto-eea-kitkat@5.2.1 [EEA Jenkins - [`c0b6e4d`](https://github.com/eea/industry-frontend/commit/c0b6e4d58b645712528cc7eedd44f30acadf96b0)] ### [3.7.0](https://github.com/eea/industry-frontend/compare/3.6.5...3.7.0) - 1 March 2022 ### [3.6.5](https://github.com/eea/industry-frontend/compare/3.6.4...3.6.5) - 21 February 2022 +#### :hammer_and_wrench: Others + +- update yarn.lock deps [Claudia Ifrim - [`466f241`](https://github.com/eea/industry-frontend/commit/466f2415afd39fa4c76c2477a75c6efa193e7ca6)] ### [3.6.4](https://github.com/eea/industry-frontend/compare/3.6.3...3.6.4) - 18 February 2022 #### :hammer_and_wrench: Others - Release 3.6.4 [Miu Razvan - [`caa863d`](https://github.com/eea/industry-frontend/commit/caa863dd59903d816783095a01fcd723dfcbe81e)] +- Updated yarn.lock [Miu Razvan - [`b954695`](https://github.com/eea/industry-frontend/commit/b95469592f8606ebf1b14dfce3f3cfb524bfe442)] ### [3.6.3](https://github.com/eea/industry-frontend/compare/3.6.2...3.6.3) - 18 February 2022 #### :hammer_and_wrench: Others @@ -90,6 +174,22 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-eea-kitkat@5.2.0 [EEA Jenkins - [`4a860e1`](https://github.com/eea/industry-frontend/commit/4a860e19574008de8f8c276d17bcf6dbd2835785)] +- Release volto-slate@5.3.4 - resolutions [EEA Jenkins - [`c0e79df`](https://github.com/eea/industry-frontend/commit/c0e79dfe913a5557d9915d56f5a09d9c1725d5cc)] +- Release @eeacms/volto-eea-kitkat@5.1.6 [EEA Jenkins - [`6f87e02`](https://github.com/eea/industry-frontend/commit/6f87e025ba69bca289fd8179c781d93a5185848b)] +- Release @eeacms/volto-eea-kitkat@5.1.5 [EEA Jenkins - [`b06c38a`](https://github.com/eea/industry-frontend/commit/b06c38a4d31a037d8f05b31388a9b48695cd929c)] +- Release @eeacms/volto-eea-kitkat@5.1.4 [EEA Jenkins - [`7fad6ab`](https://github.com/eea/industry-frontend/commit/7fad6ab59ea8a575277fd8c22ec67e9e6e9e2b24)] +- Release @eeacms/volto-eea-kitkat@5.1.3 [EEA Jenkins - [`eaa9769`](https://github.com/eea/industry-frontend/commit/eaa9769ed6c434bf54edacc4172f0170f859a129)] +- Release @eeacms/volto-eea-kitkat@5.1.2 [EEA Jenkins - [`9feade2`](https://github.com/eea/industry-frontend/commit/9feade29e39d923e26ac3a735334fce2a2382f85)] +- Release @eeacms/volto-eea-kitkat@5.1.1 [EEA Jenkins - [`73253b1`](https://github.com/eea/industry-frontend/commit/73253b1e407332b4a717d2299c81a8d868fa87b2)] +- Release volto-slate@5.3.3 - resolutions [EEA Jenkins - [`d199f2e`](https://github.com/eea/industry-frontend/commit/d199f2ea5104427847389a6b2b143d2f67360eb8)] +- Release @eeacms/volto-eea-kitkat@5.1.0 [EEA Jenkins - [`976cf28`](https://github.com/eea/industry-frontend/commit/976cf28090720049dc934f49673c7183f1670c87)] +- Release volto-slate@5.3.2 - resolutions [EEA Jenkins - [`a23f4b9`](https://github.com/eea/industry-frontend/commit/a23f4b93502a431b8ff1f366881019d7c9e5fb08)] +- Release volto-slate@5.3.1 - resolutions [EEA Jenkins - [`47e7699`](https://github.com/eea/industry-frontend/commit/47e7699b9a45de8f3c5204e1653bf8d57fe80069)] +- Release volto-slate@5.3.0 - resolutions [EEA Jenkins - [`41f5a59`](https://github.com/eea/industry-frontend/commit/41f5a59fb83cb55dfa57c01b58daf2d5014feb4d)] +- Release @eeacms/volto-eea-kitkat@5.0.0 [EEA Jenkins - [`ac0f4eb`](https://github.com/eea/industry-frontend/commit/ac0f4ebcd4989438ba42e5060d7859ddc8a5f6ef)] +- Release volto-slate@5.2.1 - resolutions [EEA Jenkins - [`14fc89e`](https://github.com/eea/industry-frontend/commit/14fc89e23128cff7f2755a4a54dc46ac1ce1e297)] +- Release volto-slate@5.2.0 - resolutions [EEA Jenkins - [`f89963c`](https://github.com/eea/industry-frontend/commit/f89963cdcd7262bdf5155d735865febdd3fe29cd)] #### :hammer_and_wrench: Others @@ -100,6 +200,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@1.2.7 [EEA Jenkins - [`5a22a9b`](https://github.com/eea/industry-frontend/commit/5a22a9b4fb23a8377a58235cb2955f61472ec8a3)] +- Release @eeacms/volto-industry-theme@1.2.6 [EEA Jenkins - [`07b0368`](https://github.com/eea/industry-frontend/commit/07b0368e7deedf153fbcf45cb62cd80cdee58b85)] +- Release @eeacms/volto-industry-theme@1.2.5 [EEA Jenkins - [`fe2f37a`](https://github.com/eea/industry-frontend/commit/fe2f37a259b810975893b971d73c388dcbdbb27b)] #### :hammer_and_wrench: Others @@ -108,16 +211,33 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@1.2.4 [EEA Jenkins - [`29521f9`](https://github.com/eea/industry-frontend/commit/29521f9a0758029ff5a06ba40dc3e4ca649dbe42)] +- Release @eeacms/volto-industry-theme@1.2.3 [EEA Jenkins - [`795df0b`](https://github.com/eea/industry-frontend/commit/795df0bb7b4556493c4b0be39e6f6f7395506cf4)] +- Release @eeacms/volto-industry-theme@1.2.2 [EEA Jenkins - [`c059a9a`](https://github.com/eea/industry-frontend/commit/c059a9af50f7eab12d2f65dc98f6e5a4e4b867b9)] +- Release @eeacms/volto-industry-theme@1.2.1 [EEA Jenkins - [`b79ea33`](https://github.com/eea/industry-frontend/commit/b79ea3339f8cff1a9b4f9295482d3a390f666813)] +- Release @eeacms/volto-industry-theme@1.2.0 [EEA Jenkins - [`10b0a30`](https://github.com/eea/industry-frontend/commit/10b0a305a6ac821380d46a9504d984a11ee7880a)] ### [3.4.0](https://github.com/eea/industry-frontend/compare/3.3.0...3.4.0) - 7 December 2021 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@1.1.11 [EEA Jenkins - [`12e0d8c`](https://github.com/eea/industry-frontend/commit/12e0d8c22fa352d731811e50c0dc4e02622ed932)] +- Release volto-slate@5.1.3 - resolutions [EEA Jenkins - [`06a794e`](https://github.com/eea/industry-frontend/commit/06a794ed5855fd472c093ab3d4f96d747ec651a2)] +- Release @eeacms/volto-eea-kitkat@4.1.7 [EEA Jenkins - [`299361c`](https://github.com/eea/industry-frontend/commit/299361c337429eaf20613624bc6d27bc5ee41e9c)] +- Release @eeacms/volto-eea-kitkat@4.1.6 [EEA Jenkins - [`7310479`](https://github.com/eea/industry-frontend/commit/731047918188aa455f6161adf50aa558da11458c)] +- Release @eeacms/volto-industry-theme@1.1.10 [EEA Jenkins - [`c2fe184`](https://github.com/eea/industry-frontend/commit/c2fe184c35bc19cbe8797ad440a45d353b92c927)] +- Release @eeacms/volto-industry-theme@1.1.9 [EEA Jenkins - [`cbdbdbe`](https://github.com/eea/industry-frontend/commit/cbdbdbe7a7b67260f7bcc19bc67ad77a49442aeb)] ### [3.3.0](https://github.com/eea/industry-frontend/compare/3.2.6...3.3.0) - 22 November 2021 #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@1.1.8 [EEA Jenkins - [`9dc36c5`](https://github.com/eea/industry-frontend/commit/9dc36c56984c006469cbf8ed514700251c88325a)] +- Release @eeacms/volto-eea-kitkat@4.1.5 [EEA Jenkins - [`1cc0902`](https://github.com/eea/industry-frontend/commit/1cc0902874215afc7a592e32df55b769ea1b5b09)] +- Release @eeacms/volto-industry-theme@1.1.7 [EEA Jenkins - [`8446d3c`](https://github.com/eea/industry-frontend/commit/8446d3c3c5a54382555c4512e56c8c5af113fe27)] +- Release @eeacms/volto-industry-theme@1.1.6 [EEA Jenkins - [`abcf446`](https://github.com/eea/industry-frontend/commit/abcf446df198d940c8e1a53893cc1b793e0ccc39)] +- Release @eeacms/volto-eea-kitkat@4.1.4 [EEA Jenkins - [`f27ace6`](https://github.com/eea/industry-frontend/commit/f27ace67e03e0b8f97e720bc3e77150e8c70659d)] +- Release @eeacms/volto-industry-theme@1.1.4 [EEA Jenkins - [`ee65ad5`](https://github.com/eea/industry-frontend/commit/ee65ad5dd26a5366e729657b7455e97f89ec29d3)] #### :hammer_and_wrench: Others @@ -167,11 +287,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@1.1.3 [EEA Jenkins - [`ef86c96`](https://github.com/eea/industry-frontend/commit/ef86c969921bc0e2bc0b647b69e1f819ddcd3b6c)] +- Release @eeacms/volto-industry-theme@1.1.2 [EEA Jenkins - [`f1ff958`](https://github.com/eea/industry-frontend/commit/f1ff95826b3dfda7eeb46215ad4963a8dea91c4c)] +- Release @eeacms/volto-industry-theme@1.1.0 [EEA Jenkins - [`0285464`](https://github.com/eea/industry-frontend/commit/0285464df5eec8651caf75891ef54d86ec5f37b8)] +- Release @eeacms/volto-industry-theme@1.0.1 [EEA Jenkins - [`5aef85e`](https://github.com/eea/industry-frontend/commit/5aef85e76552951683678398a4985e00ab6b7444)] #### :hammer_and_wrench: Others - Merge master into develop [Miu Razvan - [`b9a3857`](https://github.com/eea/industry-frontend/commit/b9a3857bb56a435f0116997c7ba712112bcf73d4)] - Update package.json [Alexandru Ghica - [`f903e1f`](https://github.com/eea/industry-frontend/commit/f903e1f84b2b2f8dc55cee847ec54c619f78ed0f)] +- Update Jenkinsfile [Alexandru Ghica - [`c5cfbae`](https://github.com/eea/industry-frontend/commit/c5cfbaea793b4eccdadc09f565dc959421cc9866)] - Fix exec permissions [valentinab25 - [`3944119`](https://github.com/eea/industry-frontend/commit/39441196c26c22c4d51d1d023420519290ca7a61)] ### [3.1.5](https://github.com/eea/industry-frontend/compare/3.1.4...3.1.5) - 9 November 2021 @@ -208,6 +333,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-industry-theme@0.1.2 [EEA Jenkins - [`6b9a283`](https://github.com/eea/industry-frontend/commit/6b9a283df781eac24bc5c922d1602322a8511993)] +- Release @eeacms/volto-embed@2.0.8 [EEA Jenkins - [`3f4734e`](https://github.com/eea/industry-frontend/commit/3f4734efbd26930073436db9be1a8d7d82910036)] #### :hammer_and_wrench: Others @@ -236,21 +363,26 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others +- Update Jenkinsfile [Alexandru Ghica - [`84bb361`](https://github.com/eea/industry-frontend/commit/84bb361649beb8d4398a52bf6e45c52555a52c89)] - Update package.json [Alexandru Ghica - [`d6121e4`](https://github.com/eea/industry-frontend/commit/d6121e45f3275a547d065713c0fee0d9d4a33bc2)] ### [2.7.0](https://github.com/eea/industry-frontend/compare/2.6.0...2.7.0) - 18 October 2021 #### :rocket: Dependency updates +- Release @eeacms/volto-eea-kitkat@4.1.1 [EEA Jenkins - [`8048e44`](https://github.com/eea/industry-frontend/commit/8048e44f8fedfb86d30ac5692a0e175876da93d8)] +- Release @eeacms/volto-eea-kitkat@4.1.0 [EEA Jenkins - [`03c1c46`](https://github.com/eea/industry-frontend/commit/03c1c466daf8876e91cdbd3ad53f78b1095ffe1b)] ### [2.6.0](https://github.com/eea/industry-frontend/compare/2.5.0...2.6.0) - 14 October 2021 #### :hammer_and_wrench: Others - Update package.json [Alexandru Ghica - [`afac4a0`](https://github.com/eea/industry-frontend/commit/afac4a06db6e367a18597d4f476de5a20c1967d9)] +- Update Jenkinsfile [Alexandru Ghica - [`2a844cc`](https://github.com/eea/industry-frontend/commit/2a844cc6fde53fa2fa14913116606e439d959106)] ### [2.5.0](https://github.com/eea/industry-frontend/compare/2.4.0-beta.4...2.5.0) - 14 October 2021 #### :hammer_and_wrench: Others +- Update Jenkinsfile [Alexandru Ghica - [`6e9a1fa`](https://github.com/eea/industry-frontend/commit/6e9a1fa2a9f00d6d7d1ecec8ddf431e01c72ccaa)] - Rename repo [Miu Razvan - [`17af166`](https://github.com/eea/industry-frontend/commit/17af1662d6cab4d75dadf4204502ba159a557627)] ### [2.4.0-beta.4](https://github.com/eea/industry-frontend/compare/2.4.0-beta.3...2.4.0-beta.4) - 14 October 2021 @@ -268,6 +400,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-embed@2.0.7 [EEA Jenkins - [`fbae9e6`](https://github.com/eea/industry-frontend/commit/fbae9e6314715970b59063b440a49060abd6dd60)] +- Release @eeacms/volto-embed@2.0.6 [EEA Jenkins - [`ccd9d85`](https://github.com/eea/industry-frontend/commit/ccd9d8551733b4f20c25b7d8048e216dc08f304c)] #### :hammer_and_wrench: Others @@ -277,6 +411,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-eea-kitkat@4.0.2 [EEA Jenkins - [`e989a57`](https://github.com/eea/industry-frontend/commit/e989a575958d0a6ff7c9cd422611847f83c1b85a)] #### :hammer_and_wrench: Others @@ -286,6 +421,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-embed@2.0.5 [EEA Jenkins - [`1d42e56`](https://github.com/eea/industry-frontend/commit/1d42e56d3e2d856032ed56771169ab7b547fff16)] #### :hammer_and_wrench: Others @@ -295,6 +431,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates +- Release @eeacms/volto-datablocks@2.0.13 [EEA Jenkins - [`ee45153`](https://github.com/eea/industry-frontend/commit/ee451536870fd12336f71329acfc088346dfe8ca)] +- Release @eeacms/volto-eea-kitkat@4.0.1 [EEA Jenkins - [`d251bbb`](https://github.com/eea/industry-frontend/commit/d251bbb55113ab29a4b94dbda302f501e9e41d82)] +- Release @eeacms/volto-eea-kitkat@4.0.0 [EEA Jenkins - [`ae9a972`](https://github.com/eea/industry-frontend/commit/ae9a9722bfb825a109c143727eeb771a3383a8c1)] +- Release @eeacms/volto-embed@2.0.4 [EEA Jenkins - [`26680f5`](https://github.com/eea/industry-frontend/commit/26680f5a361391cc945c02951b5b0ebf1d105a7f)] #### :hammer_and_wrench: Others @@ -311,6 +451,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - added kitkat [alecghica - [`cbab428`](https://github.com/eea/industry-frontend/commit/cbab42885c801ceba1cf08abc8079b5b648ed534)] - added kitkat [alecghica - [`41b58aa`](https://github.com/eea/industry-frontend/commit/41b58aad97c87640366e0ec002026d224442edeb)] - added tpl [alecghica - [`95bfdc8`](https://github.com/eea/industry-frontend/commit/95bfdc802bb6db9d81dff7a8ff1b0fb6489129ea)] +- Add automated release, rebuild yarn.lock [valentinab25 - [`922ee5c`](https://github.com/eea/industry-frontend/commit/922ee5c9b935bad87a9d8c2247fbf0ebedbfc0bd)] - Updated settings [alecghica - [`aee77cd`](https://github.com/eea/industry-frontend/commit/aee77cdad0b63105f79d7138c63efd504204d191)] - Update addons versions [Miu Razvan - [`d1313bf`](https://github.com/eea/industry-frontend/commit/d1313bf1f00e419965b5a3c41e00979481c6fbfa)] ### [2.1.21](https://github.com/eea/industry-frontend/compare/2.1.20...2.1.21) - 7 September 2021 @@ -393,6 +534,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Update [razvanMiu - [`3b306c4`](https://github.com/eea/industry-frontend/commit/3b306c4d85fc1cc1770410e2ceca3b22c50c3252)] - Merge master [razvanMiu - [`4be3fba`](https://github.com/eea/industry-frontend/commit/4be3fbabb618264026bf236c9507ae3b0ee5bb0a)] - Overwrite scroll on route update [razvanMiu - [`0c04cd9`](https://github.com/eea/industry-frontend/commit/0c04cd9872ddf8db9bdd176147dd2b71744c56ef)] +- upgrade jenkins job path [valentinab25 - [`c1dcbcb`](https://github.com/eea/industry-frontend/commit/c1dcbcbd3710c1bc1b4af4a4ad2a1cad8c5fc0f8)] - cleanup [Claudia Ifrim - [`f88b79c`](https://github.com/eea/industry-frontend/commit/f88b79c9c0f182b51fb40fae9d0ff080c61f071b)] - Refs#135694 - add facility address [Claudia Ifrim - [`c205366`](https://github.com/eea/industry-frontend/commit/c205366d84ef637feb5aaab52ba120026ed5a990)] - Refs#135696 - add privacy notice for site location map [Claudia Ifrim - [`0079637`](https://github.com/eea/industry-frontend/commit/0079637acb4b3bf091bea3284960094cac1478c8)] @@ -401,7 +543,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Fix tests [razvanMiu - [`65177e9`](https://github.com/eea/industry-frontend/commit/65177e9b4c0b9606bc38c4588c4ff074aacb38e1)] - add basic tests [nileshgulia1 - [`cbd8d34`](https://github.com/eea/industry-frontend/commit/cbd8d34d009087c1acf5c43a64627c57f9442e20)] - fix cypress [nileshgulia1 - [`37cf2d7`](https://github.com/eea/industry-frontend/commit/37cf2d7d37efcb5e1712d5847cb95680782f07a6)] -- Bump axios from 0.20.0 to 0.21.1 [dependabot[bot] - [`9666614`](https://github.com/eea/industry-frontend/commit/966661484d684a457f1ba00f80cdfd57aa834723)] - Update cypress.json [valentinab25 - [`fb24e37`](https://github.com/eea/industry-frontend/commit/fb24e37646341dd5a568e54d90f2dbdc4b59823a)] - don't build on PR [valentinab25 - [`45fde98`](https://github.com/eea/industry-frontend/commit/45fde9881a4d46e28d3182913e2b9ad8126a7049)] - add integration tests [valentinab25 - [`322a452`](https://github.com/eea/industry-frontend/commit/322a452d01ce79772c9f5c7f0b7823427e110dd9)] @@ -542,8 +683,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.4.4 [razvanMiu - [`0e3aa01`](https://github.com/eea/industry-frontend/commit/0e3aa01b0b3845d1fd002a8701df474d87617d74)] - add plonesass image [nileshgulia1 - [`0e2d41b`](https://github.com/eea/industry-frontend/commit/0e2d41b74a4778e190df1423efaf75608ca2f72d)] +- try to fix JENKINS [nileshgulia1 - [`1191aff`](https://github.com/eea/industry-frontend/commit/1191aff31ce063e8a378d6b6c0259953bf3ac1f3)] - Fixed cypress test [razvanMiu - [`032bb2a`](https://github.com/eea/industry-frontend/commit/032bb2a971eb415a8dc724e6ffbbfc311b73a9fb)] - Update entrypoint-prod.sh [Miu Razvan - [`45dcd5c`](https://github.com/eea/industry-frontend/commit/45dcd5c475131e9a9d7ddd65281a8cbbf213dce4)] +- Fix jenkins [razvanMiu - [`aef63cd`](https://github.com/eea/industry-frontend/commit/aef63cd9b3abd90d33b6a99d6166bdd43a69888c)] - Run cypress [razvanMiu - [`cc01bdb`](https://github.com/eea/industry-frontend/commit/cc01bdb961d630cebd89ad18db23635b9b6b6317)] - Release 1.4.3 [razvanMiu - [`d381b03`](https://github.com/eea/industry-frontend/commit/d381b03148ff2f3218aba80a60b20be18440675e)] - Commented cypress [razvanMiu - [`ea2eab4`](https://github.com/eea/industry-frontend/commit/ea2eab4dac16ac5b6d67039a2f65188420d6ca6c)] @@ -567,6 +710,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 1.4.2 [razvanMiu - [`ddd9783`](https://github.com/eea/industry-frontend/commit/ddd97839ac7561e7609ef2e14c80232363ea2f68)] +- Updated Jenkinsfile [razvanMiu - [`0ce434e`](https://github.com/eea/industry-frontend/commit/0ce434e348435b3a9896e2324c6df110d1d95bd3)] - [Feature #125730] Added cypress [razvanMiu - [`abf5e5f`](https://github.com/eea/industry-frontend/commit/abf5e5faa2c6213678e50dfc024e523fdc1a88e5)] ### [1.4.1](https://github.com/eea/industry-frontend/compare/1.4.0...1.4.1) - 4 January 2021 @@ -751,6 +895,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - RedirectView fix; SidebarBlock update; Map update [Miu Razvan - [`b7aff61`](https://github.com/eea/industry-frontend/commit/b7aff61b000b938b2e3e79be08aa3b7a2cdfca5b)] - Style update [Miu Razvan - [`2dec996`](https://github.com/eea/industry-frontend/commit/2dec9969f246fa82bb1bdf381cc3a2d350fc584a)] - Added QueryParam - button and text components [Miu Razvan - [`4c28708`](https://github.com/eea/industry-frontend/commit/4c28708674dbfb48ac15ce2c4060666fcc7d4e5b)] +- Jenkinsfile update. FiltersBlock update. [Miu Razvan - [`e3809e3`](https://github.com/eea/industry-frontend/commit/e3809e3ee353d5036c894baa4630690f09371190)] - Added addons in workspace [Miu Razvan - [`34a54ac`](https://github.com/eea/industry-frontend/commit/34a54acb7deac814af790e162a7d012b3fd7cd82)] - Dockerfile remove mr-developer [Miu Razvan - [`52b1dbc`](https://github.com/eea/industry-frontend/commit/52b1dbc2bc15123e0046e8c1f53d78549d128a5f)] - Updated build scripts [Miu Razvan - [`3e4488a`](https://github.com/eea/industry-frontend/commit/3e4488a0f39481f92b1734f8546919b9c57af107)] diff --git a/package.json b/package.json index 2fafcb9..9d14d55 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@eeacms/industry-frontend", "description": "Volto-based frontend server and SPA for the Industrial Emissions Portal website (former EPRTR) industry.eea.europa.eu", "license": "MIT", - "version": "3.20.0", + "version": "3.21.0", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", "homepage": "https://github.com/eea/industry-frontend", From a67a50f25840392a55b743de2a2547825725336e Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 23 Dec 2022 13:01:29 +0000 Subject: [PATCH 14/14] Automated release 3.21.0 --- CHANGELOG.md | 141 ++------------------------------------------------- 1 file changed, 4 insertions(+), 137 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b78b2f0..aaedc27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Don't run cypress [Miu Razvan - [`5e8461a`](https://github.com/eea/industry-frontend/commit/5e8461a0f9610982b64e543bf974c5b6a8e7a6d3)] - Use volto 16.0.0-alpha.45 for cypress tests [Miu Razvan - [`9ba418d`](https://github.com/eea/industry-frontend/commit/9ba418dacd5454840b4607db16e5689b94f18e77)] -- update yarn.lock [Claudia Ifrim - [`b033975`](https://github.com/eea/industry-frontend/commit/b0339750e58b4fbee7464e40bb2fd5a4c41c5f07)] - set volto kitkat version to 8.2.4 [Claudia Ifrim - [`e7018fe`](https://github.com/eea/industry-frontend/commit/e7018fe3c776855c1edb993ff9658b87ae8af11d)] - update npm install command [Claudia Ifrim - [`637ba7d`](https://github.com/eea/industry-frontend/commit/637ba7d89268ffabac4f1704383b40074ca839e0)] - add Makefile and update scripts [Nilesh - [`baf6eac`](https://github.com/eea/industry-frontend/commit/baf6eac49ec4f42e2b1b684711d1f55587ab962b)] @@ -25,28 +24,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.13 [EEA Jenkins - [`7af49a0`](https://github.com/eea/industry-frontend/commit/7af49a0af1cb8850a2176b7f089e5654e2515e6b)] -- Release @eeacms/volto-eea-kitkat@10.3.0 [EEA Jenkins - [`0437e96`](https://github.com/eea/industry-frontend/commit/0437e9670c8225bbafcbc395c3d94e97038fb802)] -- Release @eeacms/volto-eea-kitkat@10.2.0 [EEA Jenkins - [`4ea2d03`](https://github.com/eea/industry-frontend/commit/4ea2d03e05e10ce6de1c53d940ea1e95dfb3a3eb)] -- Release @eeacms/volto-eea-kitkat@10.1.1 [EEA Jenkins - [`6998bea`](https://github.com/eea/industry-frontend/commit/6998bead3e77f4c31a60b7f6d35e27d5e9801276)] -- Release @eeacms/volto-eea-kitkat@10.1.0 [EEA Jenkins - [`892099f`](https://github.com/eea/industry-frontend/commit/892099f7bc2652c10e870dcc5bb34a59c9c689fd)] -- Release @eeacms/volto-eea-kitkat@10.0.0 [EEA Jenkins - [`4d46365`](https://github.com/eea/industry-frontend/commit/4d463654709b8b7808ec4220e71aaa3d66cea812)] -- Release @eeacms/volto-eea-kitkat@9.0.0 [EEA Jenkins - [`1e2fa6f`](https://github.com/eea/industry-frontend/commit/1e2fa6f5ed33c35fb6b7b25fa254d10744489c1e)] -- Release @eeacms/volto-industry-theme@2.0.12 [EEA Jenkins - [`d61e8e4`](https://github.com/eea/industry-frontend/commit/d61e8e484203e8ff3f5a3b43b77e3393d671d64e)] ### [3.19.0](https://github.com/eea/industry-frontend/compare/3.18.0...3.19.0) - 25 October 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.11 [EEA Jenkins - [`a2ddd30`](https://github.com/eea/industry-frontend/commit/a2ddd301b880bfde4c26a8df4c0c699d192b9787)] -- Release @eeacms/volto-eea-kitkat@8.2.4 [EEA Jenkins - [`b0d9d56`](https://github.com/eea/industry-frontend/commit/b0d9d56058a63ac36dfb94cfe21eee1964bfb052)] ### [3.18.0](https://github.com/eea/industry-frontend/compare/3.17.0...3.18.0) - 6 October 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.10 [EEA Jenkins - [`62e8fa0`](https://github.com/eea/industry-frontend/commit/62e8fa02acc3219d9abdcf9d22e7973773f2059b)] -- Release @eeacms/volto-eea-kitkat@8.2.3 [EEA Jenkins - [`1423f62`](https://github.com/eea/industry-frontend/commit/1423f62d5922c54f7cc717d91d1fbc2664e03be3)] ### [3.17.0](https://github.com/eea/industry-frontend/compare/3.16.0...3.17.0) - 5 October 2022 @@ -54,25 +41,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.8 [EEA Jenkins - [`745cc1b`](https://github.com/eea/industry-frontend/commit/745cc1bc882b64b93fbb7423fff5f1ab38c5c348)] -- Release @eeacms/volto-eea-kitkat@8.2.2 [EEA Jenkins - [`6feb096`](https://github.com/eea/industry-frontend/commit/6feb096fc8d97c49f1d7f49a65de89bbc157ce44)] -- Release @eeacms/volto-industry-theme@2.0.7 [EEA Jenkins - [`5042518`](https://github.com/eea/industry-frontend/commit/5042518a900f5e6a988072def70bbeb7fa571a92)] -- Release @eeacms/volto-eea-kitkat@8.2.1 [EEA Jenkins - [`e69a274`](https://github.com/eea/industry-frontend/commit/e69a274d83a47b48f766a50b4f0aac0b2cb11274)] -- Release @eeacms/volto-eea-kitkat@8.2.0 [EEA Jenkins - [`03099ec`](https://github.com/eea/industry-frontend/commit/03099ec128e2299f51aca6ffd719a999c6c9239b)] -- Release @eeacms/volto-eea-kitkat@8.1.0 [EEA Jenkins - [`8978d18`](https://github.com/eea/industry-frontend/commit/8978d1844a66a84f7da7044e9d0e993285be9be4)] -- Release @eeacms/volto-eea-kitkat@8.0.0 [EEA Jenkins - [`95e44c7`](https://github.com/eea/industry-frontend/commit/95e44c7a292452fd030ac4070e76be92b276fcd1)] -- Release @eeacms/volto-eea-kitkat@7.1.4 [EEA Jenkins - [`6d3a942`](https://github.com/eea/industry-frontend/commit/6d3a942170574e61aeec3738ccf5037ed22cf383)] ### [3.15.0](https://github.com/eea/industry-frontend/compare/3.14.0...3.15.0) - 16 September 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.6 [EEA Jenkins - [`d014f7c`](https://github.com/eea/industry-frontend/commit/d014f7c35ab69c77cd148b140f3f4e7f461e5d84)] -- Release @eeacms/volto-eea-kitkat@7.1.3 [EEA Jenkins - [`4b90f5d`](https://github.com/eea/industry-frontend/commit/4b90f5d62db9728c3d94b1d10f5e443ece25557c)] -- Release @eeacms/volto-eea-kitkat@7.1.2 [EEA Jenkins - [`30baf7a`](https://github.com/eea/industry-frontend/commit/30baf7a741133419b61d1627f8cd9b681c6fdfec)] -- Release @eeacms/volto-eea-kitkat@7.1.1 [EEA Jenkins - [`def49f6`](https://github.com/eea/industry-frontend/commit/def49f62dda1612cb3cf261fa560f804d172a7f1)] -- Release @eeacms/volto-eea-kitkat@7.1.0 [EEA Jenkins - [`4cf9aec`](https://github.com/eea/industry-frontend/commit/4cf9aecce1c8cedd660813c010404ddbb5f6147f)] -- Release @eeacms/volto-eea-kitkat@7.0.0 [EEA Jenkins - [`d991478`](https://github.com/eea/industry-frontend/commit/d991478a2b079989b675c11323e2a9ee00e4f744)] ### [3.14.0](https://github.com/eea/industry-frontend/compare/3.13.0...3.14.0) - 23 August 2022 @@ -80,44 +53,15 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.5 [EEA Jenkins - [`9793654`](https://github.com/eea/industry-frontend/commit/97936542e123ab2bd768d3b21b466160e14c2e3c)] -- Release @eeacms/volto-eea-kitkat@6.2.3 [EEA Jenkins - [`d4657e7`](https://github.com/eea/industry-frontend/commit/d4657e78f525d7d795244188a2974df7af005e95)] -- Release @eeacms/volto-eea-kitkat@6.2.2 [EEA Jenkins - [`c7e6431`](https://github.com/eea/industry-frontend/commit/c7e6431360647589ac5aae612be5541c8f738eb2)] -- Release @eeacms/volto-eea-kitkat@6.2.1 [EEA Jenkins - [`aa8c450`](https://github.com/eea/industry-frontend/commit/aa8c45070d5819f7cc302ada442d119e2edfae24)] -- Release @eeacms/volto-eea-kitkat@6.2.0 [EEA Jenkins - [`a0ff6c2`](https://github.com/eea/industry-frontend/commit/a0ff6c2163d2af718892a0ad33b324bc4486957b)] -- Release volto-slate@6.2.2 - resolutions [EEA Jenkins - [`2b9d8f4`](https://github.com/eea/industry-frontend/commit/2b9d8f40045b24c55038e5d7904700f1864f9a52)] -- Release volto-slate@6.2.1 - resolutions [EEA Jenkins - [`fbf970b`](https://github.com/eea/industry-frontend/commit/fbf970b756c728f0c284414da4f6d5b1df2e5544)] -- Release @eeacms/volto-eea-kitkat@6.1.4 [EEA Jenkins - [`4b0e4bc`](https://github.com/eea/industry-frontend/commit/4b0e4bc80053cb25cf579f0030a603889cded803)] -- Release @eeacms/volto-eea-kitkat@6.1.3 [EEA Jenkins - [`7e98992`](https://github.com/eea/industry-frontend/commit/7e9899291edd6f5f466975d684ba13a885f12d37)] -- Release @eeacms/volto-eea-kitkat@6.1.2 [EEA Jenkins - [`97edfd5`](https://github.com/eea/industry-frontend/commit/97edfd5ccbd44ea3ebb545af9b11177195168c4e)] -- Release @eeacms/volto-eea-kitkat@6.1.1 [EEA Jenkins - [`dd3ba81`](https://github.com/eea/industry-frontend/commit/dd3ba8133f3cc12fbe715d3e47b0be948837db60)] -- Release @eeacms/volto-eea-kitkat@6.1.0 [EEA Jenkins - [`1847e9a`](https://github.com/eea/industry-frontend/commit/1847e9a3ae9783f39fa23e7b6b64c36a204cd5f3)] -- Release @eeacms/volto-eea-kitkat@6.0.4 [EEA Jenkins - [`0f06131`](https://github.com/eea/industry-frontend/commit/0f061317830b7f164e5a22fcd75528055956c6bd)] -- Release volto-slate@6.2.0 - resolutions [EEA Jenkins - [`f9fdb24`](https://github.com/eea/industry-frontend/commit/f9fdb24e80624388a02e00359a0bcced83a3e7a9)] -- Release @eeacms/volto-eea-kitkat@6.0.3 [EEA Jenkins - [`bc55350`](https://github.com/eea/industry-frontend/commit/bc5535072d026a123a5179f90849664a0056025a)] -- Release @eeacms/volto-eea-kitkat@6.0.2 [EEA Jenkins - [`5d08c94`](https://github.com/eea/industry-frontend/commit/5d08c94bc76b21e2f1a355350bc3fa24573aa4e3)] -- Release @eeacms/volto-eea-kitkat@6.0.1 [EEA Jenkins - [`2002b22`](https://github.com/eea/industry-frontend/commit/2002b22c72975196ba1bb034824caf9a769dedcb)] -- Release volto-slate@6.1.0 - resolutions [EEA Jenkins - [`27de088`](https://github.com/eea/industry-frontend/commit/27de088abfa1ac64d84cbbc0c70339f28b32a18f)] - -#### :hammer_and_wrench: Others - -- Update Jenkinsfile [Alexandru Ghica - [`604a9bf`](https://github.com/eea/industry-frontend/commit/604a9bf155d0756264921582612ca06d4e66c2de)] + +#### :hammer_and_wrench: Others + - Merge master into develop [Miu Razvan - [`3f399f0`](https://github.com/eea/industry-frontend/commit/3f399f0de5789d1a00d0127160b5b4cd92027e5d)] - Update addons + use volto 16 [Miu Razvan - [`07d02d2`](https://github.com/eea/industry-frontend/commit/07d02d2125681498c4da455d27590bd4843ce301)] ### [3.12.0](https://github.com/eea/industry-frontend/compare/3.11.0...3.12.0) - 20 May 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-eea-kitkat@6.0.0 [EEA Jenkins - [`e9c830d`](https://github.com/eea/industry-frontend/commit/e9c830d5c8fba25c212335c1a7cc0ee331b337e5)] -- Release volto-slate@6.0.1 - resolutions [EEA Jenkins - [`21a028b`](https://github.com/eea/industry-frontend/commit/21a028b071925c78884483b9ea373f08aa7a9834)] -- Release volto-slate@6.0.0 - resolutions [EEA Jenkins - [`6ea4a4a`](https://github.com/eea/industry-frontend/commit/6ea4a4ae257c519f94c37bb68e82a5889fd48150)] -- Release @eeacms/volto-eea-kitkat@5.4.1 [EEA Jenkins - [`29b20d8`](https://github.com/eea/industry-frontend/commit/29b20d886433f0cfa9091559ce3d590c19833fc0)] -- Release @eeacms/volto-eea-kitkat@5.4.0 [EEA Jenkins - [`d329b58`](https://github.com/eea/industry-frontend/commit/d329b58ab2eb85dc459ca454c884083967fa4636)] -- Release @eeacms/volto-eea-kitkat@5.3.0 [EEA Jenkins - [`69e97cb`](https://github.com/eea/industry-frontend/commit/69e97cb4061a48f99722021fdceafc4fb8dab7a9)] -- Release @eeacms/volto-eea-kitkat@5.2.9 [EEA Jenkins - [`9af4475`](https://github.com/eea/industry-frontend/commit/9af4475da37ed73ed80121cac30ec6eef47f341b)] -- Release @eeacms/volto-eea-kitkat@5.2.8 [EEA Jenkins - [`597145c`](https://github.com/eea/industry-frontend/commit/597145c5b789c61470b8abaf5da579f31f018d46)] -- Release @eeacms/volto-eea-kitkat@5.2.7 [EEA Jenkins - [`c1b8426`](https://github.com/eea/industry-frontend/commit/c1b84265d0654773ed6f9f17bcbf598296ed8ed1)] -- Release volto-slate@5.4.1 - resolutions [EEA Jenkins - [`115615c`](https://github.com/eea/industry-frontend/commit/115615c85733584d6ba2386dfd65f7bd59687fcc)] ### [3.11.0](https://github.com/eea/industry-frontend/compare/3.10.1...3.11.0) - 16 March 2022 @@ -125,45 +69,29 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.4 [EEA Jenkins - [`2ff6dd9`](https://github.com/eea/industry-frontend/commit/2ff6dd93c72b46f94a4bc064e58d0a992911636f)] -- Release @eeacms/volto-eea-kitkat@5.2.6 [EEA Jenkins - [`a2d7ff8`](https://github.com/eea/industry-frontend/commit/a2d7ff89c7713238812a55dd6218d7c16ceccb61)] -- Release volto-slate@5.4.0 - resolutions [EEA Jenkins - [`8487193`](https://github.com/eea/industry-frontend/commit/84871931c617abb67bbff29e7f35a627627411ec)] -- Release @eeacms/volto-eea-kitkat@5.2.5 [EEA Jenkins - [`3f14533`](https://github.com/eea/industry-frontend/commit/3f14533f8b4eebbc73e849679c97bfd0356c4fed)] #### :hammer_and_wrench: Others - Release 3.10.1 [Miu Razvan - [`d33f98e`](https://github.com/eea/industry-frontend/commit/d33f98e4f31351c953f1bee42b6c798ec51b9712)] -- Update yarn.lock [Miu Razvan - [`e6cc948`](https://github.com/eea/industry-frontend/commit/e6cc948f862b84b60af42fa7ec85e37af0727bdc)] ### [3.9.0](https://github.com/eea/industry-frontend/compare/3.8.0...3.9.0) - 9 March 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@2.0.3 [EEA Jenkins - [`2032c90`](https://github.com/eea/industry-frontend/commit/2032c90063fdf1c0212aee8637bb926d4239a33c)] -- Release volto-slate@5.3.5 - resolutions [EEA Jenkins - [`82230d0`](https://github.com/eea/industry-frontend/commit/82230d09020337dd4be14f5a840615a2ec114773)] -- Release @eeacms/volto-eea-kitkat@5.2.4 [EEA Jenkins - [`ee53ccb`](https://github.com/eea/industry-frontend/commit/ee53ccbe9d1998fc3b870ca2a7abb5a53dcbd9be)] -- Release @eeacms/volto-eea-kitkat@5.2.3 [EEA Jenkins - [`e372902`](https://github.com/eea/industry-frontend/commit/e372902436ba8acc86a90877af735c5e67156445)] ### [3.8.0](https://github.com/eea/industry-frontend/compare/3.7.0...3.8.0) - 4 March 2022 #### :rocket: Dependency updates -- Release @eeacms/volto-eea-kitkat@5.2.2 [EEA Jenkins - [`8f93ac1`](https://github.com/eea/industry-frontend/commit/8f93ac105fa41a79c9dbc603b99e9f71ffdf537b)] -- Release @eeacms/volto-industry-theme@2.0.2 [EEA Jenkins - [`39ec036`](https://github.com/eea/industry-frontend/commit/39ec036ff7706a3c70f8b1540e1882af67da6d1f)] -- Release @eeacms/volto-eea-kitkat@5.2.1 [EEA Jenkins - [`c0b6e4d`](https://github.com/eea/industry-frontend/commit/c0b6e4d58b645712528cc7eedd44f30acadf96b0)] ### [3.7.0](https://github.com/eea/industry-frontend/compare/3.6.5...3.7.0) - 1 March 2022 ### [3.6.5](https://github.com/eea/industry-frontend/compare/3.6.4...3.6.5) - 21 February 2022 -#### :hammer_and_wrench: Others - -- update yarn.lock deps [Claudia Ifrim - [`466f241`](https://github.com/eea/industry-frontend/commit/466f2415afd39fa4c76c2477a75c6efa193e7ca6)] ### [3.6.4](https://github.com/eea/industry-frontend/compare/3.6.3...3.6.4) - 18 February 2022 #### :hammer_and_wrench: Others - Release 3.6.4 [Miu Razvan - [`caa863d`](https://github.com/eea/industry-frontend/commit/caa863dd59903d816783095a01fcd723dfcbe81e)] -- Updated yarn.lock [Miu Razvan - [`b954695`](https://github.com/eea/industry-frontend/commit/b95469592f8606ebf1b14dfce3f3cfb524bfe442)] ### [3.6.3](https://github.com/eea/industry-frontend/compare/3.6.2...3.6.3) - 18 February 2022 #### :hammer_and_wrench: Others @@ -174,22 +102,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-eea-kitkat@5.2.0 [EEA Jenkins - [`4a860e1`](https://github.com/eea/industry-frontend/commit/4a860e19574008de8f8c276d17bcf6dbd2835785)] -- Release volto-slate@5.3.4 - resolutions [EEA Jenkins - [`c0e79df`](https://github.com/eea/industry-frontend/commit/c0e79dfe913a5557d9915d56f5a09d9c1725d5cc)] -- Release @eeacms/volto-eea-kitkat@5.1.6 [EEA Jenkins - [`6f87e02`](https://github.com/eea/industry-frontend/commit/6f87e025ba69bca289fd8179c781d93a5185848b)] -- Release @eeacms/volto-eea-kitkat@5.1.5 [EEA Jenkins - [`b06c38a`](https://github.com/eea/industry-frontend/commit/b06c38a4d31a037d8f05b31388a9b48695cd929c)] -- Release @eeacms/volto-eea-kitkat@5.1.4 [EEA Jenkins - [`7fad6ab`](https://github.com/eea/industry-frontend/commit/7fad6ab59ea8a575277fd8c22ec67e9e6e9e2b24)] -- Release @eeacms/volto-eea-kitkat@5.1.3 [EEA Jenkins - [`eaa9769`](https://github.com/eea/industry-frontend/commit/eaa9769ed6c434bf54edacc4172f0170f859a129)] -- Release @eeacms/volto-eea-kitkat@5.1.2 [EEA Jenkins - [`9feade2`](https://github.com/eea/industry-frontend/commit/9feade29e39d923e26ac3a735334fce2a2382f85)] -- Release @eeacms/volto-eea-kitkat@5.1.1 [EEA Jenkins - [`73253b1`](https://github.com/eea/industry-frontend/commit/73253b1e407332b4a717d2299c81a8d868fa87b2)] -- Release volto-slate@5.3.3 - resolutions [EEA Jenkins - [`d199f2e`](https://github.com/eea/industry-frontend/commit/d199f2ea5104427847389a6b2b143d2f67360eb8)] -- Release @eeacms/volto-eea-kitkat@5.1.0 [EEA Jenkins - [`976cf28`](https://github.com/eea/industry-frontend/commit/976cf28090720049dc934f49673c7183f1670c87)] -- Release volto-slate@5.3.2 - resolutions [EEA Jenkins - [`a23f4b9`](https://github.com/eea/industry-frontend/commit/a23f4b93502a431b8ff1f366881019d7c9e5fb08)] -- Release volto-slate@5.3.1 - resolutions [EEA Jenkins - [`47e7699`](https://github.com/eea/industry-frontend/commit/47e7699b9a45de8f3c5204e1653bf8d57fe80069)] -- Release volto-slate@5.3.0 - resolutions [EEA Jenkins - [`41f5a59`](https://github.com/eea/industry-frontend/commit/41f5a59fb83cb55dfa57c01b58daf2d5014feb4d)] -- Release @eeacms/volto-eea-kitkat@5.0.0 [EEA Jenkins - [`ac0f4eb`](https://github.com/eea/industry-frontend/commit/ac0f4ebcd4989438ba42e5060d7859ddc8a5f6ef)] -- Release volto-slate@5.2.1 - resolutions [EEA Jenkins - [`14fc89e`](https://github.com/eea/industry-frontend/commit/14fc89e23128cff7f2755a4a54dc46ac1ce1e297)] -- Release volto-slate@5.2.0 - resolutions [EEA Jenkins - [`f89963c`](https://github.com/eea/industry-frontend/commit/f89963cdcd7262bdf5155d735865febdd3fe29cd)] #### :hammer_and_wrench: Others @@ -200,9 +112,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@1.2.7 [EEA Jenkins - [`5a22a9b`](https://github.com/eea/industry-frontend/commit/5a22a9b4fb23a8377a58235cb2955f61472ec8a3)] -- Release @eeacms/volto-industry-theme@1.2.6 [EEA Jenkins - [`07b0368`](https://github.com/eea/industry-frontend/commit/07b0368e7deedf153fbcf45cb62cd80cdee58b85)] -- Release @eeacms/volto-industry-theme@1.2.5 [EEA Jenkins - [`fe2f37a`](https://github.com/eea/industry-frontend/commit/fe2f37a259b810975893b971d73c388dcbdbb27b)] #### :hammer_and_wrench: Others @@ -211,33 +120,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@1.2.4 [EEA Jenkins - [`29521f9`](https://github.com/eea/industry-frontend/commit/29521f9a0758029ff5a06ba40dc3e4ca649dbe42)] -- Release @eeacms/volto-industry-theme@1.2.3 [EEA Jenkins - [`795df0b`](https://github.com/eea/industry-frontend/commit/795df0bb7b4556493c4b0be39e6f6f7395506cf4)] -- Release @eeacms/volto-industry-theme@1.2.2 [EEA Jenkins - [`c059a9a`](https://github.com/eea/industry-frontend/commit/c059a9af50f7eab12d2f65dc98f6e5a4e4b867b9)] -- Release @eeacms/volto-industry-theme@1.2.1 [EEA Jenkins - [`b79ea33`](https://github.com/eea/industry-frontend/commit/b79ea3339f8cff1a9b4f9295482d3a390f666813)] -- Release @eeacms/volto-industry-theme@1.2.0 [EEA Jenkins - [`10b0a30`](https://github.com/eea/industry-frontend/commit/10b0a305a6ac821380d46a9504d984a11ee7880a)] ### [3.4.0](https://github.com/eea/industry-frontend/compare/3.3.0...3.4.0) - 7 December 2021 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@1.1.11 [EEA Jenkins - [`12e0d8c`](https://github.com/eea/industry-frontend/commit/12e0d8c22fa352d731811e50c0dc4e02622ed932)] -- Release volto-slate@5.1.3 - resolutions [EEA Jenkins - [`06a794e`](https://github.com/eea/industry-frontend/commit/06a794ed5855fd472c093ab3d4f96d747ec651a2)] -- Release @eeacms/volto-eea-kitkat@4.1.7 [EEA Jenkins - [`299361c`](https://github.com/eea/industry-frontend/commit/299361c337429eaf20613624bc6d27bc5ee41e9c)] -- Release @eeacms/volto-eea-kitkat@4.1.6 [EEA Jenkins - [`7310479`](https://github.com/eea/industry-frontend/commit/731047918188aa455f6161adf50aa558da11458c)] -- Release @eeacms/volto-industry-theme@1.1.10 [EEA Jenkins - [`c2fe184`](https://github.com/eea/industry-frontend/commit/c2fe184c35bc19cbe8797ad440a45d353b92c927)] -- Release @eeacms/volto-industry-theme@1.1.9 [EEA Jenkins - [`cbdbdbe`](https://github.com/eea/industry-frontend/commit/cbdbdbe7a7b67260f7bcc19bc67ad77a49442aeb)] ### [3.3.0](https://github.com/eea/industry-frontend/compare/3.2.6...3.3.0) - 22 November 2021 #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@1.1.8 [EEA Jenkins - [`9dc36c5`](https://github.com/eea/industry-frontend/commit/9dc36c56984c006469cbf8ed514700251c88325a)] -- Release @eeacms/volto-eea-kitkat@4.1.5 [EEA Jenkins - [`1cc0902`](https://github.com/eea/industry-frontend/commit/1cc0902874215afc7a592e32df55b769ea1b5b09)] -- Release @eeacms/volto-industry-theme@1.1.7 [EEA Jenkins - [`8446d3c`](https://github.com/eea/industry-frontend/commit/8446d3c3c5a54382555c4512e56c8c5af113fe27)] -- Release @eeacms/volto-industry-theme@1.1.6 [EEA Jenkins - [`abcf446`](https://github.com/eea/industry-frontend/commit/abcf446df198d940c8e1a53893cc1b793e0ccc39)] -- Release @eeacms/volto-eea-kitkat@4.1.4 [EEA Jenkins - [`f27ace6`](https://github.com/eea/industry-frontend/commit/f27ace67e03e0b8f97e720bc3e77150e8c70659d)] -- Release @eeacms/volto-industry-theme@1.1.4 [EEA Jenkins - [`ee65ad5`](https://github.com/eea/industry-frontend/commit/ee65ad5dd26a5366e729657b7455e97f89ec29d3)] #### :hammer_and_wrench: Others @@ -287,16 +179,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@1.1.3 [EEA Jenkins - [`ef86c96`](https://github.com/eea/industry-frontend/commit/ef86c969921bc0e2bc0b647b69e1f819ddcd3b6c)] -- Release @eeacms/volto-industry-theme@1.1.2 [EEA Jenkins - [`f1ff958`](https://github.com/eea/industry-frontend/commit/f1ff95826b3dfda7eeb46215ad4963a8dea91c4c)] -- Release @eeacms/volto-industry-theme@1.1.0 [EEA Jenkins - [`0285464`](https://github.com/eea/industry-frontend/commit/0285464df5eec8651caf75891ef54d86ec5f37b8)] -- Release @eeacms/volto-industry-theme@1.0.1 [EEA Jenkins - [`5aef85e`](https://github.com/eea/industry-frontend/commit/5aef85e76552951683678398a4985e00ab6b7444)] #### :hammer_and_wrench: Others - Merge master into develop [Miu Razvan - [`b9a3857`](https://github.com/eea/industry-frontend/commit/b9a3857bb56a435f0116997c7ba712112bcf73d4)] - Update package.json [Alexandru Ghica - [`f903e1f`](https://github.com/eea/industry-frontend/commit/f903e1f84b2b2f8dc55cee847ec54c619f78ed0f)] -- Update Jenkinsfile [Alexandru Ghica - [`c5cfbae`](https://github.com/eea/industry-frontend/commit/c5cfbaea793b4eccdadc09f565dc959421cc9866)] - Fix exec permissions [valentinab25 - [`3944119`](https://github.com/eea/industry-frontend/commit/39441196c26c22c4d51d1d023420519290ca7a61)] ### [3.1.5](https://github.com/eea/industry-frontend/compare/3.1.4...3.1.5) - 9 November 2021 @@ -333,8 +220,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-industry-theme@0.1.2 [EEA Jenkins - [`6b9a283`](https://github.com/eea/industry-frontend/commit/6b9a283df781eac24bc5c922d1602322a8511993)] -- Release @eeacms/volto-embed@2.0.8 [EEA Jenkins - [`3f4734e`](https://github.com/eea/industry-frontend/commit/3f4734efbd26930073436db9be1a8d7d82910036)] #### :hammer_and_wrench: Others @@ -363,26 +248,21 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Update Jenkinsfile [Alexandru Ghica - [`84bb361`](https://github.com/eea/industry-frontend/commit/84bb361649beb8d4398a52bf6e45c52555a52c89)] - Update package.json [Alexandru Ghica - [`d6121e4`](https://github.com/eea/industry-frontend/commit/d6121e45f3275a547d065713c0fee0d9d4a33bc2)] ### [2.7.0](https://github.com/eea/industry-frontend/compare/2.6.0...2.7.0) - 18 October 2021 #### :rocket: Dependency updates -- Release @eeacms/volto-eea-kitkat@4.1.1 [EEA Jenkins - [`8048e44`](https://github.com/eea/industry-frontend/commit/8048e44f8fedfb86d30ac5692a0e175876da93d8)] -- Release @eeacms/volto-eea-kitkat@4.1.0 [EEA Jenkins - [`03c1c46`](https://github.com/eea/industry-frontend/commit/03c1c466daf8876e91cdbd3ad53f78b1095ffe1b)] ### [2.6.0](https://github.com/eea/industry-frontend/compare/2.5.0...2.6.0) - 14 October 2021 #### :hammer_and_wrench: Others - Update package.json [Alexandru Ghica - [`afac4a0`](https://github.com/eea/industry-frontend/commit/afac4a06db6e367a18597d4f476de5a20c1967d9)] -- Update Jenkinsfile [Alexandru Ghica - [`2a844cc`](https://github.com/eea/industry-frontend/commit/2a844cc6fde53fa2fa14913116606e439d959106)] ### [2.5.0](https://github.com/eea/industry-frontend/compare/2.4.0-beta.4...2.5.0) - 14 October 2021 #### :hammer_and_wrench: Others -- Update Jenkinsfile [Alexandru Ghica - [`6e9a1fa`](https://github.com/eea/industry-frontend/commit/6e9a1fa2a9f00d6d7d1ecec8ddf431e01c72ccaa)] - Rename repo [Miu Razvan - [`17af166`](https://github.com/eea/industry-frontend/commit/17af1662d6cab4d75dadf4204502ba159a557627)] ### [2.4.0-beta.4](https://github.com/eea/industry-frontend/compare/2.4.0-beta.3...2.4.0-beta.4) - 14 October 2021 @@ -400,8 +280,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-embed@2.0.7 [EEA Jenkins - [`fbae9e6`](https://github.com/eea/industry-frontend/commit/fbae9e6314715970b59063b440a49060abd6dd60)] -- Release @eeacms/volto-embed@2.0.6 [EEA Jenkins - [`ccd9d85`](https://github.com/eea/industry-frontend/commit/ccd9d8551733b4f20c25b7d8048e216dc08f304c)] #### :hammer_and_wrench: Others @@ -411,7 +289,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-eea-kitkat@4.0.2 [EEA Jenkins - [`e989a57`](https://github.com/eea/industry-frontend/commit/e989a575958d0a6ff7c9cd422611847f83c1b85a)] #### :hammer_and_wrench: Others @@ -421,7 +298,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-embed@2.0.5 [EEA Jenkins - [`1d42e56`](https://github.com/eea/industry-frontend/commit/1d42e56d3e2d856032ed56771169ab7b547fff16)] #### :hammer_and_wrench: Others @@ -431,10 +307,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :rocket: Dependency updates -- Release @eeacms/volto-datablocks@2.0.13 [EEA Jenkins - [`ee45153`](https://github.com/eea/industry-frontend/commit/ee451536870fd12336f71329acfc088346dfe8ca)] -- Release @eeacms/volto-eea-kitkat@4.0.1 [EEA Jenkins - [`d251bbb`](https://github.com/eea/industry-frontend/commit/d251bbb55113ab29a4b94dbda302f501e9e41d82)] -- Release @eeacms/volto-eea-kitkat@4.0.0 [EEA Jenkins - [`ae9a972`](https://github.com/eea/industry-frontend/commit/ae9a9722bfb825a109c143727eeb771a3383a8c1)] -- Release @eeacms/volto-embed@2.0.4 [EEA Jenkins - [`26680f5`](https://github.com/eea/industry-frontend/commit/26680f5a361391cc945c02951b5b0ebf1d105a7f)] #### :hammer_and_wrench: Others @@ -451,7 +323,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - added kitkat [alecghica - [`cbab428`](https://github.com/eea/industry-frontend/commit/cbab42885c801ceba1cf08abc8079b5b648ed534)] - added kitkat [alecghica - [`41b58aa`](https://github.com/eea/industry-frontend/commit/41b58aad97c87640366e0ec002026d224442edeb)] - added tpl [alecghica - [`95bfdc8`](https://github.com/eea/industry-frontend/commit/95bfdc802bb6db9d81dff7a8ff1b0fb6489129ea)] -- Add automated release, rebuild yarn.lock [valentinab25 - [`922ee5c`](https://github.com/eea/industry-frontend/commit/922ee5c9b935bad87a9d8c2247fbf0ebedbfc0bd)] - Updated settings [alecghica - [`aee77cd`](https://github.com/eea/industry-frontend/commit/aee77cdad0b63105f79d7138c63efd504204d191)] - Update addons versions [Miu Razvan - [`d1313bf`](https://github.com/eea/industry-frontend/commit/d1313bf1f00e419965b5a3c41e00979481c6fbfa)] ### [2.1.21](https://github.com/eea/industry-frontend/compare/2.1.20...2.1.21) - 7 September 2021 @@ -534,7 +405,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Update [razvanMiu - [`3b306c4`](https://github.com/eea/industry-frontend/commit/3b306c4d85fc1cc1770410e2ceca3b22c50c3252)] - Merge master [razvanMiu - [`4be3fba`](https://github.com/eea/industry-frontend/commit/4be3fbabb618264026bf236c9507ae3b0ee5bb0a)] - Overwrite scroll on route update [razvanMiu - [`0c04cd9`](https://github.com/eea/industry-frontend/commit/0c04cd9872ddf8db9bdd176147dd2b71744c56ef)] -- upgrade jenkins job path [valentinab25 - [`c1dcbcb`](https://github.com/eea/industry-frontend/commit/c1dcbcbd3710c1bc1b4af4a4ad2a1cad8c5fc0f8)] - cleanup [Claudia Ifrim - [`f88b79c`](https://github.com/eea/industry-frontend/commit/f88b79c9c0f182b51fb40fae9d0ff080c61f071b)] - Refs#135694 - add facility address [Claudia Ifrim - [`c205366`](https://github.com/eea/industry-frontend/commit/c205366d84ef637feb5aaab52ba120026ed5a990)] - Refs#135696 - add privacy notice for site location map [Claudia Ifrim - [`0079637`](https://github.com/eea/industry-frontend/commit/0079637acb4b3bf091bea3284960094cac1478c8)] @@ -543,6 +413,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Fix tests [razvanMiu - [`65177e9`](https://github.com/eea/industry-frontend/commit/65177e9b4c0b9606bc38c4588c4ff074aacb38e1)] - add basic tests [nileshgulia1 - [`cbd8d34`](https://github.com/eea/industry-frontend/commit/cbd8d34d009087c1acf5c43a64627c57f9442e20)] - fix cypress [nileshgulia1 - [`37cf2d7`](https://github.com/eea/industry-frontend/commit/37cf2d7d37efcb5e1712d5847cb95680782f07a6)] +- Bump axios from 0.20.0 to 0.21.1 [dependabot[bot] - [`9666614`](https://github.com/eea/industry-frontend/commit/966661484d684a457f1ba00f80cdfd57aa834723)] - Update cypress.json [valentinab25 - [`fb24e37`](https://github.com/eea/industry-frontend/commit/fb24e37646341dd5a568e54d90f2dbdc4b59823a)] - don't build on PR [valentinab25 - [`45fde98`](https://github.com/eea/industry-frontend/commit/45fde9881a4d46e28d3182913e2b9ad8126a7049)] - add integration tests [valentinab25 - [`322a452`](https://github.com/eea/industry-frontend/commit/322a452d01ce79772c9f5c7f0b7823427e110dd9)] @@ -683,10 +554,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.4.4 [razvanMiu - [`0e3aa01`](https://github.com/eea/industry-frontend/commit/0e3aa01b0b3845d1fd002a8701df474d87617d74)] - add plonesass image [nileshgulia1 - [`0e2d41b`](https://github.com/eea/industry-frontend/commit/0e2d41b74a4778e190df1423efaf75608ca2f72d)] -- try to fix JENKINS [nileshgulia1 - [`1191aff`](https://github.com/eea/industry-frontend/commit/1191aff31ce063e8a378d6b6c0259953bf3ac1f3)] - Fixed cypress test [razvanMiu - [`032bb2a`](https://github.com/eea/industry-frontend/commit/032bb2a971eb415a8dc724e6ffbbfc311b73a9fb)] - Update entrypoint-prod.sh [Miu Razvan - [`45dcd5c`](https://github.com/eea/industry-frontend/commit/45dcd5c475131e9a9d7ddd65281a8cbbf213dce4)] -- Fix jenkins [razvanMiu - [`aef63cd`](https://github.com/eea/industry-frontend/commit/aef63cd9b3abd90d33b6a99d6166bdd43a69888c)] - Run cypress [razvanMiu - [`cc01bdb`](https://github.com/eea/industry-frontend/commit/cc01bdb961d630cebd89ad18db23635b9b6b6317)] - Release 1.4.3 [razvanMiu - [`d381b03`](https://github.com/eea/industry-frontend/commit/d381b03148ff2f3218aba80a60b20be18440675e)] - Commented cypress [razvanMiu - [`ea2eab4`](https://github.com/eea/industry-frontend/commit/ea2eab4dac16ac5b6d67039a2f65188420d6ca6c)] @@ -710,7 +579,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 1.4.2 [razvanMiu - [`ddd9783`](https://github.com/eea/industry-frontend/commit/ddd97839ac7561e7609ef2e14c80232363ea2f68)] -- Updated Jenkinsfile [razvanMiu - [`0ce434e`](https://github.com/eea/industry-frontend/commit/0ce434e348435b3a9896e2324c6df110d1d95bd3)] - [Feature #125730] Added cypress [razvanMiu - [`abf5e5f`](https://github.com/eea/industry-frontend/commit/abf5e5faa2c6213678e50dfc024e523fdc1a88e5)] ### [1.4.1](https://github.com/eea/industry-frontend/compare/1.4.0...1.4.1) - 4 January 2021 @@ -895,7 +763,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - RedirectView fix; SidebarBlock update; Map update [Miu Razvan - [`b7aff61`](https://github.com/eea/industry-frontend/commit/b7aff61b000b938b2e3e79be08aa3b7a2cdfca5b)] - Style update [Miu Razvan - [`2dec996`](https://github.com/eea/industry-frontend/commit/2dec9969f246fa82bb1bdf381cc3a2d350fc584a)] - Added QueryParam - button and text components [Miu Razvan - [`4c28708`](https://github.com/eea/industry-frontend/commit/4c28708674dbfb48ac15ce2c4060666fcc7d4e5b)] -- Jenkinsfile update. FiltersBlock update. [Miu Razvan - [`e3809e3`](https://github.com/eea/industry-frontend/commit/e3809e3ee353d5036c894baa4630690f09371190)] - Added addons in workspace [Miu Razvan - [`34a54ac`](https://github.com/eea/industry-frontend/commit/34a54acb7deac814af790e162a7d012b3fd7cd82)] - Dockerfile remove mr-developer [Miu Razvan - [`52b1dbc`](https://github.com/eea/industry-frontend/commit/52b1dbc2bc15123e0046e8c1f53d78549d128a5f)] - Updated build scripts [Miu Razvan - [`3e4488a`](https://github.com/eea/industry-frontend/commit/3e4488a0f39481f92b1734f8546919b9c57af107)]