Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update carlos pr #128

Merged
merged 37 commits into from
Dec 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a1267a4
Ant Design Table changes
zitrosolrac Aug 23, 2022
7b62141
black formatting needs work
zitrosolrac Aug 23, 2022
4d51b1d
fix bug
jverswijver Aug 24, 2022
23714ad
fix tests, apply suggestions from code review.
jverswijver Aug 29, 2022
863fc84
fix bug in docker compose
jverswijver Aug 29, 2022
0be8ddf
remove unused import
jverswijver Aug 29, 2022
7dadea0
update changelog, version.
jverswijver Aug 29, 2022
194e585
small tweak
jverswijver Aug 29, 2022
d60ffd8
fix bug
jverswijver Aug 29, 2022
6a427d2
update
jverswijver Aug 29, 2022
ec2e344
apply suggestions from code review.
jverswijver Aug 30, 2022
3a242d4
fix bug
jverswijver Aug 30, 2022
962210f
apply suggestions from code review
jverswijver Aug 31, 2022
c9d6679
merge from master
jverswijver Aug 31, 2022
f1b0d2a
update changelog
jverswijver Aug 31, 2022
5b25cf2
fix long regex
jverswijver Aug 31, 2022
bf6849f
apply suggestions from code review
jverswijver Sep 1, 2022
c224886
Apply suggestions from code review
jverswijver Sep 1, 2022
7673bc4
fix bug
jverswijver Sep 1, 2022
cd4b0e0
fix tests
jverswijver Sep 1, 2022
70035bd
fix mimetype issue
jverswijver Sep 1, 2022
494df73
fix bug
jverswijver Sep 12, 2022
b8dc136
fix bug
jverswijver Sep 12, 2022
584f1e9
pull from upstream and merge
jverswijver Nov 15, 2022
6dffdba
fix bug
jverswijver Nov 15, 2022
85c84bf
fix bug
jverswijver Nov 30, 2022
73fc80a
fixbug
jverswijver Nov 30, 2022
440a493
remove unused imports
jverswijver Nov 30, 2022
2f65ada
remove force get_json
A-Baji Dec 1, 2022
c43e3fd
Merge pull request #6 from A-Baji/jeroen-pr-update
jverswijver Dec 2, 2022
875010b
restriction query parameter handling and test
A-Baji Dec 2, 2022
4153ce8
Merge pull request #7 from A-Baji/jeroen-pr-update
jverswijver Dec 2, 2022
8442e1e
Update changelog, add deprication warning
jverswijver Dec 5, 2022
41d86f3
fix warning
jverswijver Dec 5, 2022
24337b5
clean up changlog + version
jverswijver Dec 5, 2022
7e701e1
bump versions
jverswijver Dec 7, 2022
49c6b2e
fix bug
jverswijver Dec 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update changelog, add deprication warning
jverswijver committed Dec 5, 2022

Verified

This commit was signed with the committer’s verified signature.
xoxys Robert Kaussow
commit 8442e1e77a4461d1b21704c59d2c7bfe0daf59bd
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,12 +2,18 @@

Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.6.3] - 2022-12-07

### Added

- Support for new `antd-table` component. Prior `table` component is deprecated and will be removed in the next major release. PR #128
- Deprecated warning for `table` PR #128

## [0.6.3] - 2022-11-18

### Added

- Added attribute default value to the form component field route response
- Support for new `antd-table` component. Prior `table` component will be deprecated in the next minor release. PR #128

## [0.6.2] - 2022-11-10

@@ -227,6 +233,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
- Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`.
- Check dependency utility to determine child table references.

[0.6.4]: https://github.com/datajoint/pharus/compare/0.6.3...0.6.4
[0.6.3]: https://github.com/datajoint/pharus/compare/0.6.2...0.6.3
[0.6.2]: https://github.com/datajoint/pharus/compare/0.6.1...0.6.2
[0.6.1]: https://github.com/datajoint/pharus/compare/0.6.0...0.6.1
9 changes: 8 additions & 1 deletion pharus/dynamic_api_gen.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
import pkg_resources
import json
import re

from warnings import warn
from pharus.component_interface import InsertComponent, TableComponent


@@ -119,6 +119,13 @@ def {method_name}() -> dict:
if "component_templates" in grid
else grid["components"]
).items():
if re.match(r"^table.*$", comp["type"]):
warn(
"table component be Deprecated in next major release, "
+ "please use antd-table",
DeprecationWarning,
stacklevel=2,
)
if re.match(
r"""^(
table|