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

Revert ODATA-1416 after ODATA-1420 is RESOLVED #149

Merged
merged 42 commits into from
Dec 9, 2021
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6f864d3
Revert ODATA-1416 after ODATA-1420 is RESOLVED
HeikoTheissen Sep 3, 2021
9d046a2
deprecate, don't delete
HeikoTheissen Sep 3, 2021
409b07b
more deprecations
HeikoTheissen Sep 3, 2021
4ee5a6e
deprecation AppliesToTypeIfDynamic
HeikoTheissen Sep 3, 2021
e2d536d
Workaround: Avoid line break
HeikoTheissen Sep 3, 2021
709e3a8
@ralfhandl, please run local build
HeikoTheissen Sep 3, 2021
95adbdb
Thanks, @ralfhandl
HeikoTheissen Sep 3, 2021
abafea5
Merge remote-tracking branch 'origin/main' into revert-ODATA-1416
HeikoTheissen Sep 3, 2021
320f5b4
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Sep 16, 2021
7661743
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Sep 28, 2021
9e165a4
undeprecate NavigationRestrictions/UpdateRestrictions, change
HeikoTheissen Oct 1, 2021
980b3a7
Collection -> entity collection
HeikoTheissen Oct 1, 2021
09e641d
Remark about path evaluation in NavigationRestrictions
HeikoTheissen Oct 1, 2021
455c485
Switched example for item property path
HeikoTheissen Oct 1, 2021
4f1719d
Problem with instance path
HeikoTheissen Oct 1, 2021
098a7a1
rephrasing
HeikoTheissen Oct 1, 2021
09c5bdc
added example for InsertionRestrictions
HeikoTheissen Oct 1, 2021
f4b79ec
array of InsertRestrictions
HeikoTheissen Oct 1, 2021
8f78fdd
Different types for term and term property
HeikoTheissen Oct 1, 2021
fff32a9
corrected InsertionRestriction example
HeikoTheissen Oct 1, 2021
a767411
explain example
HeikoTheissen Oct 1, 2021
18e66c0
avoid incompatible change
HeikoTheissen Oct 1, 2021
adcbf22
rephrasing
HeikoTheissen Oct 4, 2021
d7bd39d
rephrased again
HeikoTheissen Oct 4, 2021
9b9963c
Slight generalization
HeikoTheissen Oct 4, 2021
e21673f
json code
HeikoTheissen Oct 7, 2021
de4c6e4
Update Org.OData.Capabilities.V1.md
ralfhandl Oct 7, 2021
f7cbd24
Update Org.OData.Capabilities.V1.md
ralfhandl Oct 7, 2021
33c56f4
NavigationInsertRestrictions into separate PR
HeikoTheissen Oct 7, 2021
13a2110
AppliesTo="Collection" into separate PR
HeikoTheissen Oct 7, 2021
06a2fc3
AppliesViaContainer into separate PR
HeikoTheissen Oct 7, 2021
e2e3dac
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Oct 7, 2021
8108fa6
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Oct 15, 2021
6205358
ODATA-1416: Restrictions on collections (#159)
HeikoTheissen Nov 11, 2021
b8613f5
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Nov 11, 2021
0ed9387
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Dec 2, 2021
dc0d40d
Merge remote-tracking branch 'origin/main' into revert-ODATA-1416
HeikoTheissen Dec 2, 2021
b4e389f
Deeper term is favored
HeikoTheissen Dec 3, 2021
f18d1fc
The decision on which level to annotate is made per *property*.
HeikoTheissen Dec 3, 2021
cb1342e
No comma before }
HeikoTheissen Dec 3, 2021
1e09541
Merge branch 'main' into revert-ODATA-1416
HeikoTheissen Dec 6, 2021
32d8260
Changes discussed in TC 2021-12-09
HeikoTheissen Dec 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 3 additions & 9 deletions vocabularies/Org.OData.Capabilities.V1.json
Original file line number Diff line number Diff line change
Expand Up @@ -745,10 +745,8 @@
"$Kind": "Term",
"$Type": "Capabilities.InsertRestrictionsType",
"$AppliesTo": [
"EntitySet",
"EntityType"
"EntitySet"
],
"@Core.AppliesToTypeIfDynamic": true,
"@Core.Description": "Restrictions on insert operations"
},
"InsertRestrictionsType": {
Expand Down Expand Up @@ -866,10 +864,8 @@
"$Type": "Capabilities.UpdateRestrictionsType",
"$AppliesTo": [
"EntitySet",
"Singleton",
"EntityType"
"Singleton"
],
"@Core.AppliesToTypeIfDynamic": true,
"@Core.Description": "Restrictions on update operations"
},
"UpdateRestrictionsType": {
Expand Down Expand Up @@ -1001,10 +997,8 @@
"$Type": "Capabilities.DeleteRestrictionsType",
"$AppliesTo": [
"EntitySet",
"Singleton",
"EntityType"
"Singleton"
],
"@Core.AppliesToTypeIfDynamic": true,
"@Core.Description": "Restrictions on delete operations"
},
"DeleteRestrictionsType": {
Expand Down