diff --git a/CHANGELOG.md b/CHANGELOG.md index 74b161622..dc9146d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,28 @@ 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.9.0](https://github.com/Ocelot-Social-Community/Ocelot-Social/compare/3.8.2...3.9.0) + +- fix(webapp): optimize registration layout [`#8630`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8630) +- fix(webapp): fix group performance [`#8656`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8656) +- build(deps): bump @aws-sdk/client-s3 from 3.817.0 to 3.826.0 in /backend [`#8647`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8647) +- build(deps-dev): bump eslint-plugin-n in /backend [`#8646`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8646) +- build(deps-dev): bump eslint-plugin-jest in /backend [`#8648`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8648) +- build(deps-dev): bump eslint-import-resolver-typescript in /backend [`#8643`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8643) +- build(deps-dev): bump @types/node from 22.15.21 to 22.15.30 in /backend [`#8645`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8645) +- refactor(webapp): adapt webapp docker build stages to match e2e testing requirements [`#8651`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8651) +- build(deps): bump email-templates from 12.0.2 to 12.0.3 in /backend [`#8644`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8644) +- build(deps-dev): bump eslint-plugin-prettier in /webapp [`#8625`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8625) +- build(deps): bump peter-evans/repository-dispatch [`#8649`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8649) +- build(deps-dev): bump cypress from 14.4.0 to 14.4.1 in the cypress group [`#8650`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8650) +- feat(e2e): group create feature [`#8636`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8636) +- fix flaky tests [`#8638`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8638) + #### [3.8.2](https://github.com/Ocelot-Social-Community/Ocelot-Social/compare/3.8.1...3.8.2) +> 4 June 2025 + +- v3.8.2 [`#8637`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8637) - feat(webapp): location on registration [`#8608`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8608) - fix(webapp): group categories [`#8634`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8634) - build(deps): bump @aws-sdk/lib-storage in /backend [`#8615`](https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/8615) diff --git a/backend/package.json b/backend/package.json index 34bd99ebf..452dd9ea3 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "ocelot-social-backend", - "version": "3.8.2", + "version": "3.9.0", "description": "GraphQL Backend for ocelot.social", "repository": "https://github.com/Ocelot-Social-Community/Ocelot-Social", "author": "ocelot.social Community", diff --git a/deployment/helm/charts/ocelot-neo4j/Chart.yaml b/deployment/helm/charts/ocelot-neo4j/Chart.yaml index 3bb36ca4e..32c8cc9ba 100644 --- a/deployment/helm/charts/ocelot-neo4j/Chart.yaml +++ b/deployment/helm/charts/ocelot-neo4j/Chart.yaml @@ -21,4 +21,4 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.8.2" +appVersion: "3.9.0" diff --git a/deployment/helm/charts/ocelot-social/Chart.yaml b/deployment/helm/charts/ocelot-social/Chart.yaml index b37293fcb..a0ac8d93c 100644 --- a/deployment/helm/charts/ocelot-social/Chart.yaml +++ b/deployment/helm/charts/ocelot-social/Chart.yaml @@ -21,4 +21,4 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.8.2" +appVersion: "3.9.0" diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 8ade59470..482b74ac1 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocelot-social-frontend", - "version": "3.8.2", + "version": "3.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ocelot-social-frontend", - "version": "3.8.2", + "version": "3.9.0", "license": "Apache-2.0", "dependencies": { "@intlify/unplugin-vue-i18n": "^2.0.0", diff --git a/frontend/package.json b/frontend/package.json index 1cc48f58f..ec9d849f2 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "ocelot-social-frontend", - "version": "3.8.2", + "version": "3.9.0", "description": "ocelot.social new Frontend (in development and not fully implemented) by IT4C Boilerplate for frontends", "main": "build/index.js", "type": "module", diff --git a/package.json b/package.json index e0fa8c292..0f92b69fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocelot-social", - "version": "3.8.2", + "version": "3.9.0", "description": "Free and open source software program code available to run social networks.", "author": "ocelot.social Community", "license": "MIT", diff --git a/webapp/maintenance/source/package.json b/webapp/maintenance/source/package.json index 5af1e1b92..b1b507f0a 100644 --- a/webapp/maintenance/source/package.json +++ b/webapp/maintenance/source/package.json @@ -1,6 +1,6 @@ { "name": "@ocelot-social/maintenance", - "version": "3.8.2", + "version": "3.9.0", "description": "Maintenance page for ocelot.social", "repository": "https://github.com/Ocelot-Social-Community/Ocelot-Social", "author": "ocelot.social Community", diff --git a/webapp/package.json b/webapp/package.json index dfb9aec7e..43d6c7e9b 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,6 +1,6 @@ { "name": "ocelot-social-webapp", - "version": "3.8.2", + "version": "3.9.0", "description": "ocelot.social Frontend", "repository": "https://github.com/Ocelot-Social-Community/Ocelot-Social", "author": "ocelot.social Community",