0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-02-19 01:55:48 -05:00

release: 1.0.0

This commit is contained in:
Elias Schneider 2024-08-25 16:02:46 +02:00
parent 9c381a2ed6
commit b96878b6b1
No known key found for this signature in database
GPG key ID: 07E623B294202B6C
7 changed files with 23 additions and 10 deletions

View file

@ -1,3 +1,16 @@
## [1.0.0](https://github.com/stonith404/pingvin-share/compare/v0.29.0...v1.0.0) (2024-08-25)
### Features
* **ldap:** Adding support for LDAP authentication ([#554](https://github.com/stonith404/pingvin-share/issues/554)) ([4186a76](https://github.com/stonith404/pingvin-share/commit/4186a768b310855282bc4876d1f294700963b8f5))
### Bug Fixes
* get started button on home page not working when sign-up is disabled ([4924f76](https://github.com/stonith404/pingvin-share/commit/4924f763947c9a6b79ba0d85887f104ed9545c78))
* internal server error if user has no password when trying to sign in ([9c381a2](https://github.com/stonith404/pingvin-share/commit/9c381a2ed6b3b7dfd95d4278889b937ffb85e01b))
## [0.29.0](https://github.com/stonith404/pingvin-share/compare/v0.28.0...v0.29.0) (2024-07-30)

View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share-backend",
"version": "0.29.0",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pingvin-share-backend",
"version": "0.29.0",
"version": "1.0.0",
"dependencies": {
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.9",

View file

@ -1,6 +1,6 @@
{
"name": "pingvin-share-backend",
"version": "0.29.0",
"version": "1.0.0",
"scripts": {
"build": "nest build",
"dev": "cross-env NODE_ENV=development nest start --watch",

View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share-frontend",
"version": "0.29.0",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "pingvin-share-frontend",
"version": "0.29.0",
"version": "1.0.0",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",

View file

@ -1,6 +1,6 @@
{
"name": "pingvin-share-frontend",
"version": "0.29.0",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share",
"version": "0.29.0",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pingvin-share",
"version": "0.29.0",
"version": "1.0.0",
"devDependencies": {
"conventional-changelog-cli": "^3.0.0"
}

View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share",
"version": "0.29.0",
"version": "1.0.0",
"scripts": {
"format": "cd frontend && npm run format && cd ../backend && npm run format",
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
"release:patch": "cd backend && npm version patch --commit-hooks false && cd ../frontend && npm version patch --commit-hooks false && cd .. && git add . && npm version patch --force -m 'release: %s' && git push && git push --tags",
"release:minor": "cd backend && npm version minor --commit-hooks false && cd ../frontend && npm version minor --commit-hooks false && cd .. && git add . && npm version minor --force -m 'release: %s' && git push && git push --tags",
"release:major": "cd backend && npm version major --commit-hooks false && cd ../frontend && npm version major --commit-hooks false && cd .. && git add . && npm version major --force -m 'release: %s' && git push && git push --tags",
"deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ."
},
"devDependencies": {