84a968a426
[Fix] correct @OneToMany on ObjectId
2025-03-19 19:15:24 +01:00
581c936bec
[VERSION] update dev tag version
2025-03-18 23:07:41 +01:00
a6204032b5
[RELEASE] Release v0.25.2
2025-03-18 23:04:15 +01:00
e824feb8a2
[FIX] fix json serialize null in error (remove)
2025-03-18 15:27:42 +01:00
26ea70f80c
[FIX] correct some generic code generation
2025-03-18 15:27:39 +01:00
6291466df0
[VERSION] update dev tag version
2025-03-17 21:59:02 +01:00
2bc7a2c5e3
[RELEASE] Release v0.25.0
v0.25.0
2025-03-17 21:55:44 +01:00
dependabot[bot]
6c69bc63c6
[DEV-OPS] (dependabot) Bump all dependency
2025-03-17 21:13:14 +01:00
85ac72648f
[FIX] not ready dependency
2025-03-16 11:48:33 +01:00
1281415c48
[DEV] integrate hybernate validator
2025-03-16 11:24:16 +01:00
dependabot[bot]
a4521853c3
[DEV-OPS] (dependabot) Bump com.twelvemonkeys.imageio:imageio-webp
...
Bumps com.twelvemonkeys.imageio:imageio-webp from 3.11.0 to 3.12.0.
---
updated-dependencies:
- dependency-name: com.twelvemonkeys.imageio:imageio-webp
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-15 08:51:19 +01:00
dependabot[bot]
abe2dd9480
[DEV-OPS] (dependabot) Bump com.nimbusds:nimbus-jose-jwt
...
Bumps [com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt ) from 9.41.1 to 10.0.2.
- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt )
- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/10.0.2..9.41.1 )
---
updated-dependencies:
- dependency-name: com.nimbusds:nimbus-jose-jwt
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-15 08:36:46 +01:00
dependabot[bot]
b7af0b4575
[DEV-OPS] (dependabot) Bump org.hibernate.validator:hibernate-validator
...
Bumps [org.hibernate.validator:hibernate-validator](https://github.com/hibernate/hibernate-validator ) from 8.0.1.Final to 8.0.2.Final.
- [Changelog](https://github.com/hibernate/hibernate-validator/blob/8.0.2.Final/changelog.txt )
- [Commits](https://github.com/hibernate/hibernate-validator/compare/8.0.1.Final...8.0.2.Final )
---
updated-dependencies:
- dependency-name: org.hibernate.validator:hibernate-validator
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-15 08:36:43 +01:00
dependabot[bot]
5412eadf2e
[DEV-OPS] (dependabot) Bump org.apache.maven.plugins:maven-checkstyle-plugin
...
Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin ) from 3.5.0 to 3.6.0.
- [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.5.0...maven-checkstyle-plugin-3.6.0 )
---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-15 08:36:41 +01:00
dependabot[bot]
d5e2e0f5b3
[DEV-OPS] (dependabot) Bump org.glassfish.jersey:jersey-bom
...
Bumps org.glassfish.jersey:jersey-bom from 3.1.5 to 3.1.10.
---
updated-dependencies:
- dependency-name: org.glassfish.jersey:jersey-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-15 08:36:38 +01:00
28ab6c49d4
[FIX] update PR title
2025-03-15 08:30:14 +01:00
260a3abd13
[FEAT] update dependabot
2025-03-15 08:25:09 +01:00
895e8c2b37
[FEAT] update versions
2025-03-15 08:18:14 +01:00
1673f1680b
[FEAT] add a spotbug nullable
2025-03-15 08:06:59 +01:00
04a82250d8
[FEAT] add capability to catch ConstraintViolationException
2025-03-15 08:06:50 +01:00
0326bde209
[FEAT] understable template typing
2025-03-10 07:27:51 +01:00
c1ccaf20ec
[FEAT] rework the generation of code for typescript ( #27 )
...
This PR is not compatible with previous code...
Rename some Annotation to have a better experience
Update the generation of the Typescript object
===================================
By default the generation of object are only the object requested
if you annotate the object with: `@ApiGenerationMode(create = true,
update = true)`
the generation will add 2 object in typescript:
- `MyClassUpdate` that contain the object specific for `PUT` request
- `MyClassCreate` that contain the object specific for `POST` request
- the PATCH request are generate with `Partial<MyClassUpdate>`
If you do not generate the create or update the system will wrap the
bass by default: `MyClass`
Add support of hidding the element in the generated object
=============================================
When generate the object some field are not needed to transmit to the
client, then we add `@ApiAccessLimitation(creatable = false, updatable =
false)` that permit to remove the field when Update or Create object are
generated
It will be used to check the Input validity instead of
`@schema(readonly)` (error of implementation)
TODO:
=====
- Some issue when request Update generation and parent does not exist
- The checker is not updated with the use of the `@ApiAccessLimitation`
decorator.
dependencies:
===========
- Closes: https://github.com/kangaroo-and-rabbit/archidata/issues/22
2025-03-08 14:32:16 +01:00
2174d7689f
[FEAT] add callback to detect and collect errors
2025-03-05 23:48:15 +01:00
15113807b3
[DOC] add some documentation
2025-03-05 23:45:08 +01:00
ffdc6c1249
[VERSION] update dev tag version
2025-02-24 12:34:45 +01:00
1b4e6ca239
[RELEASE] Release v0.24.0
v0.24.0
2025-02-24 12:34:41 +01:00
be8a5c713a
[FIX] ObjectId manyToOne and OneToMany
2025-02-17 00:16:11 +01:00
c3f03bc1e8
[VERSION] update dev tag version
2025-02-09 22:06:56 +01:00
c7eadc607d
[RELEASE] Release v0.23.6
v0.23.6
2025-02-09 22:06:53 +01:00
5f89ff7944
[DEV] add variable to permit not check if the DB exist
2025-02-09 22:05:35 +01:00
20d2d004cb
[VERSION] update dev tag version
2025-02-06 07:47:20 +01:00
da3c467569
[RELEASE] Release v0.23.4
v0.23.4
2025-02-06 07:47:17 +01:00
0c932d4e92
[FEAT] set the object enpty as identical as their parent.
...
this prevent react-hook-form resolver erreur, it does not support empty object
2025-02-04 21:15:10 +01:00
a400bb99b8
[FEAT] add Jwt token description to be serialize in front
2025-02-02 19:34:23 +01:00
bdc9a4ac4d
[VERSION] update dev tag version
2025-01-30 21:45:29 +01:00
b0bf103195
[RELEASE] Release v0.23.2
v0.23.2
2025-01-30 21:45:26 +01:00
d36c366ab6
[FIX] zod number gte/lte
2025-01-30 21:25:15 +01:00
cddb4dd7fe
[DEV] update dev tag version
2025-01-30 10:01:58 +01:00
218fa3be2e
[RELEASE] new version 0.23.0
v0.23.0
2025-01-29 23:30:01 +01:00
015c38ff5b
[FEAT] add @CheckForeignKey but not tested
2025-01-29 23:30:01 +01:00
24590b2a1e
[FIX] correct min and mas size of string
2025-01-29 23:10:53 +01:00
c04660c01a
[FEAT] simplify annotation tool
2025-01-29 23:09:49 +01:00
3e81673d38
[FIX] normalize comment when check size
2025-01-29 22:43:22 +01:00
69880df4aa
[FIX] missing string size checker
2025-01-29 22:41:08 +01:00
510553550f
[FIX] remove unneeded comment
2025-01-29 22:40:34 +01:00
e071d3dbf7
[FEAT] correct the output generation of the typescript ==> missing decimal min and decimal max ==> need to test pattern and email
2025-01-29 00:34:49 +01:00
249e6ad2c8
set JPAChecker agnostic of @ManyToOne primary key type
2025-01-28 23:48:40 +01:00
e156e528c1
[FIX] use instance of DB instead of create a new one
2025-01-28 23:44:36 +01:00
89ab0f3b6a
[DEV] update dev tag version
2025-01-28 23:27:30 +01:00
3d5a024084
[RELEASE] new version 0.22.0
v0.22.0
2025-01-28 23:27:05 +01:00