Skip to content

Commit adba3bb

Browse files
committed
v.0.9-rc-001
1 parent 921be55 commit adba3bb

File tree

8 files changed

+17
-10
lines changed

8 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,4 +231,9 @@
231231
and all the other community requested features I added randomly.
232232
- The API Rest interface is now guided by Zenstack, that allow Column-level policies for authorizing read and write on the databases. I sugges to read dedicated [Policy page](./POLICIES.md)
233233
- The app now refuse to start if necesessaies ENV are missing
234-
234+
- 0.9-rc-001:
235+
- Fixed: [#93 Expiration does not expire](https://github.com/urania-dev/snapp/issues/93)
236+
- Fixed: [#92 Secret does not protect URL](https://github.com/urania-dev/snapp/issues/92)
237+
- Fixed: [#91 VTAPI status return true without API Key](https://github.com/urania-dev/snapp/issues/91)
238+
- Fixed: [#89 Shortcodes and original URL not sanitized on input in Frontend](https://github.com/urania-dev/snapp/issues/89)
239+
- Fixed: some labels missing in I18N

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ENV DATABASE_URL=file:./db.sqlite \
2525
ENABLED_MFA=false \
2626
PUBLIC_URL=http://localhost:3000 \
2727
APPNAME="Snapp.li" \
28-
PUBLIC_SNAPP_VERSION="0.9-rc"
28+
PUBLIC_SNAPP_VERSION="0.9-rc-001"
2929

3030

3131
# # Run build commands
@@ -88,7 +88,7 @@ ENV DATABASE_URL=file:./db.sqlite \
8888
ENABLED_MFA=false \
8989
PUBLIC_URL=http://localhost:3000 \
9090
APPNAME="Snapp.li" \
91-
PUBLIC_SNAPP_VERSION="0.9-rc"
91+
PUBLIC_SNAPP_VERSION="0.9-rc-001"
9292

9393
EXPOSE 3000
9494

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ just a ENV Variable.
2424
### 2025 Update
2525
The app has undergone a major refactor, bringing numerous improvements, including a fresh UI built with ShadCN and Svelte. The platform is now stable and mature enough to be considered a release candidate. This will need a new reinitiation of a plain database, so export your URL and be prepared to a new importer that should be able to guide you assign any kind of CSV to the platform.
2626

27+
Please, note that for the time being the release candidate will be updated as fixed version. Once stable will be released as Latest and v.1.0.0.
28+
2729
## Features
2830

2931
- **Intuitive User Interface:** Snapp offers a user-friendly interface for easy
@@ -59,7 +61,7 @@ Snapp is an open-source platform you can host yourself.
5961
```yml
6062
services:
6163
snapp:
62-
image: uraniadev/snapp:latest
64+
image: uraniadev/snapp:0.9-rc-001
6365
ports:
6466
- 3000:3000
6567
environment:
@@ -168,7 +170,7 @@ be enough to change `smtp.config.cjs` file
168170
```yml
169171
services:
170172
snapp:
171-
image: uraniadev/snapp:latest
173+
image: uraniadev/snapp:0.9-rc-001
172174
ports:
173175
- 3000:3000
174176
volumes:

dbschema/mysql/schema.zmodel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ plugin openapi {
262262
provider = "@zenstackhq/openapi"
263263
output = "../../static/openapi.yaml"
264264
title = "Snapp"
265-
version = "0.9-rc"
265+
version = "0.9-rc-001"
266266
prefix='/api'
267267
securitySchemes = {
268268
bearer: { type: 'http', scheme: 'bearer', bearerFormat: 'JWT' },

dbschema/postgres/schema.zmodel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ plugin openapi {
262262
provider = "@zenstackhq/openapi"
263263
output = "../../static/openapi.yaml"
264264
title = "Snapp"
265-
version = "0.9-rc"
265+
version = "0.9-rc-001"
266266
prefix='/api'
267267
securitySchemes = {
268268
bearer: { type: 'http', scheme: 'bearer', bearerFormat: 'JWT' },

dbschema/sqlite/schema.zmodel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ plugin openapi {
262262
provider = "@zenstackhq/openapi"
263263
output = "../../static/openapi.yaml"
264264
title = "Snapp"
265-
version = "0.9-rc"
265+
version = "0.9-rc-001"
266266
prefix='/api'
267267
securitySchemes = {
268268
bearer: { type: 'http', scheme: 'bearer', bearerFormat: 'JWT' },

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
snapp:
3-
image: uraniadev/snapp:0.9-rc
3+
image: uraniadev/snapp:0.9-rc-001
44
ports:
55
- 3000:3000
66
environment:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snapp",
3-
"version": "0.9-rc",
3+
"version": "0.9-rc-001",
44
"author": {
55
"name": "Urania",
66
"email": "m.isaia@urania.dev",

0 commit comments

Comments
 (0)