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

feat: add user-defined schema and migrations #7418

Merged
merged 57 commits into from
Nov 1, 2021
Merged
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
bd1498f
wip: base implementation of defined schema
Moumouls Dec 22, 2020
06ee331
wip: block routes when defined schemas used
Moumouls Dec 22, 2020
6cf6355
wip: tests
Moumouls Dec 22, 2020
2907315
wip: testing
Moumouls Dec 23, 2020
0aaf531
wip: tested indexes
Moumouls Dec 23, 2020
cb07388
wip: tested CLP
Moumouls Dec 23, 2020
acba945
fix flow
Moumouls Dec 23, 2020
86b5125
remove fit
Moumouls Dec 23, 2020
69f19dc
coverage
Moumouls Dec 24, 2020
ae1cc7a
fix
Moumouls Dec 24, 2020
22e6815
add changelog
Moumouls Dec 24, 2020
410bebe
wip: add retry, missing test
Moumouls Jan 4, 2021
3e0145e
tested retry
Moumouls Jan 5, 2021
bf52c3d
test parallel
Moumouls Jan 6, 2021
0549d02
spread clp to avoid read only issue
Moumouls Apr 14, 2021
5f6628b
Merge branch 'upstream/master' into moumouls/defined-schema
Moumouls May 14, 2021
c79a32d
restored lock
Moumouls May 14, 2021
46269ff
update workflow
Moumouls May 14, 2021
d610bb9
update node version
Moumouls May 14, 2021
5188e69
Merge branch 'master' into moumouls/defined-schema
sadortun Jun 6, 2021
014120d
Updated SchemaMigrations, added validations and Types
sadortun Jun 15, 2021
555a038
Fix typo
sadortun Jun 15, 2021
97b57de
Clean code
sadortun Jun 15, 2021
99a8205
Clean up CLP, add logging
sadortun Jul 14, 2021
f369f63
Merge remote-tracking branch 'remotes/upstream/master' into pr-migrat…
sadortun Aug 11, 2021
9d7fe89
Fixed tests
sadortun Aug 11, 2021
aa9b15e
Fix formating issues
sadortun Aug 11, 2021
42696e9
Fix code review issues
sadortun Aug 11, 2021
b2c4efc
Merge branch 'master' into pr-migrations
sadortun Aug 11, 2021
089bcfc
Re-enable all tests
sadortun Aug 11, 2021
72e3bf3
Merge branch 'pr-migrations' of https://github.com/GoPlan-Finance/par…
sadortun Aug 11, 2021
9db55b6
Replace the auto-locking of schemas by an explicit "lockSchemas" para…
sadortun Aug 12, 2021
9c915ee
Added ACL type
sadortun Aug 12, 2021
265420c
Rename Migration/Schemas to Schema/Definitions
sadortun Aug 16, 2021
2a5fd93
Re-added Migration retries to handle concurrent server startups
sadortun Aug 16, 2021
02caf69
Ensure before/after migration only run once.
sadortun Aug 16, 2021
f34153f
Added ParseServer startup options
sadortun Aug 16, 2021
d244d56
Merge branch 'master' into pr-migrations
sadortun Aug 16, 2021
fa2d3d0
Merge branch 'master' into pr-migrations
sadortun Oct 5, 2021
a10c574
Revert unwanted changes
sadortun Oct 5, 2021
b6806e9
Implement code review changes
sadortun Oct 5, 2021
a1cd981
Implement code review changes
sadortun Oct 5, 2021
d3ba3bb
Updated CHANGELOG
sadortun Oct 5, 2021
0e37d39
fix: test & review
Moumouls Oct 5, 2021
426857f
Merge pull request #1 from Moumouls/pr-migrations-moumouls
sadortun Oct 5, 2021
d6bf3e1
Merge branch 'upstream/master' into pr-migrations-moumouls
Moumouls Oct 11, 2021
8cc1cf2
test: clean on after each
Moumouls Oct 12, 2021
040b695
Merge branch 'upstream/master' into pr-migrations-moumouls
Moumouls Oct 13, 2021
cba3179
Merge pull request #2 from Moumouls/pr-migrations-moumouls
sadortun Oct 13, 2021
8bf9231
Merge branch 'master' into pr-migrations
sadortun Oct 21, 2021
19c4160
Implement code review changes
sadortun Oct 28, 2021
d7d2a9a
Merge remote-tracking branch 'remotes/upstream/alpha' into pr-migrations
sadortun Oct 28, 2021
49645ed
Merge branch 'alpha' into pr-migrations
sadortun Oct 30, 2021
af80d29
Merge branch 'alpha' into pr-migrations
sadortun Oct 31, 2021
41d906b
Disable failing Postgres test
sadortun Oct 31, 2021
cd6fb50
Merge remote-tracking branch 'remotes/upstream/alpha' into pr-migrations
sadortun Nov 1, 2021
63422fc
Fix flow errors
sadortun Nov 1, 2021
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ ___
- Added Deprecation Policy to govern the introduction of breaking changes in a phased pattern that is more predictable for developers (Manuel Trezza) [#7199](https://github.com/parse-community/parse-server/pull/7199)
- Add REST API endpoint `/loginAs` to create session of any user with master key; allows to impersonate another user. (GormanFletcher) [#7406](https://github.com/parse-community/parse-server/pull/7406)
- Add official support for MongoDB 5.0 (Manuel Trezza) [#7469](https://github.com/parse-community/parse-server/pull/7469)
- Add user-defined schema and migrations (Antoine Cormouls, Samuel Denis-D'Ortun) [#7418](https://github.com/parse-community/parse-server/pull/7418)
mtrezza marked this conversation as resolved.
Show resolved Hide resolved

### Other Changes
- Support native mongodb syntax in aggregation pipelines (Raschid JF Rafeally) [#7339](https://github.com/parse-community/parse-server/pull/7339)
Expand Down
Loading