This repository was archived by the owner on Apr 17, 2023. It is now read-only.
fix(deps): update all (major)#454
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
1a8e3d4 to
69e4ec2
Compare
69e4ec2 to
1a50f51
Compare
1a50f51 to
71f6145
Compare
71f6145 to
77d10e7
Compare
77d10e7 to
83b9959
Compare
83b9959 to
9877bc6
Compare
9877bc6 to
ce700f6
Compare
ce700f6 to
51ec210
Compare
51ec210 to
e91a7b0
Compare
e91a7b0 to
ffac009
Compare
ab5cb26 to
72875c3
Compare
c3c9d1c to
0c6ffa8
Compare
0c6ffa8 to
441fbb6
Compare
441fbb6 to
057d334
Compare
057d334 to
bfdf435
Compare
bfdf435 to
1a953cb
Compare
1a953cb to
770195c
Compare
b860351 to
df9a5ef
Compare
df9a5ef to
ba3d698
Compare
ba3d698 to
fa958f5
Compare
fa958f5 to
ab9dfef
Compare
ab9dfef to
e8440a4
Compare
91fa5a0 to
7f03c6c
Compare
beb1b4e to
1b91fd3
Compare
1b91fd3 to
a3a535d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.14.0->1.1.20.14.0->1.1.20.14.0->1.1.25.1.1->6.7.05.1.1->6.7.011.0.4->14.0.012.1.5->14.4.313.13.12->18.15.1012.12.47->18.15.100.2.7->1.12.33.0.1->5.0.08.2.0->16.0.30.14.0->1.1.20.14.0->1.1.215.3.0->16.6.015.3.0->16.6.01.1.0->2.0.05.0.1->7.1.010.0.2->16.1.111.0.2->21.0.13.5.9->5.1.08->193.4.1->5.0.19.0.0->10.9.11.0.0-pre.44->2.0.04.0.2->5.0.24.0.2->5.0.2Release Notes
aerogear/graphback
v1.1.2Compare Source
1.1.2 (2021-02-06)
Bug Fixes
#2269 replaced _id with id in client and postgres template (@RinkiyaKeDad)
#2261 update import format @namit-chandwani)
v1.1.1Compare Source
Bug Fixes
v1.1.0Compare Source
Features
Bug Fixes
graphback-codegen-schema,graphback-core,graphback-datasync,graphback-runtime-knex,graphql-servegraphback-codegen-clienttrue(@RinkiyaKeDadcodegen-schemaCommitters: 2
v1.0.1Compare Source
Features
Bug Fixes
orfilter selector was not mapped correctly ingraphback-runtime-mongo(#2034, fixed by 1ebe7e9)orfilter selector was not mapped correctly ingraphback-runtime-knex(#2034, fixed by 6d43f28)orpredicate was not applied correctly increateInMemoryPredicateFilter(#2034, fixed by 01f9912)Subscription,Query,Mutationresolver objects (#2073, fixed by 97e8267)TypeError: Cannot read property 'page' of undefinederror in CRUDService (#2095 fixed by 5143fb6)WHERE X IS/IS NOT NULLquery in the Knex query mapper (#2095 fixed by d10e918)Subscription,Query,Mutationresolver objects (#2073, fixed by 97e826)Could not find a declaration file for module 'bson'error (#2104, fixed by 4f9ce7c)Query,Mutation,Subscriptionempty resolver objects (#2122, fixed by faf172dv0.16.2Compare Source
Bug Fixes
IDScalarType and field name different toidisn't auto-incrementable. Fixed in #1997v0.16.1Compare Source
Bug Fixes
graphql-servepackage (d4d918e).v0.16.0Compare Source
New Features
Use any
knex0.20.x or 0.21.x version in your application (d826b6f#1903)Ability to specify composite unique columns in GraphQL Migrations (#1658), fixed by (9c6f34a231e2645c34533d58ea4427ff8f8f634e)
Requiring
_id: GraphbackObjectIDprimary key for MongoDB (#1769).This fixes issues below related to primary key in MongoDB:
idfieldAdd a
@transientfield annotation to ignore fields during input type creation and migrations 4076fa26DataSync
Using a
_lastUpdatedAtfield with a properGraphbackTimestampscalar and other minor fixes (#1771) including:limitargument tosyncQueriesBug Fixes
Failure to map enum values in field directives (#1767), fixed by (a9ca21e1405dba14dab249af2f8d146ac2306803)
invalid input syntax for type timestamp: "null" (#1837), fixed by (37cdc1d12410a1fafb27877b97b54ea308acecb1)
Do not remove directives on Object Types in generated schema (#1767), fixed by (22c7a1da62e2752a21db4e4552e970aa93ba37ae)
Do not silently overrides createdAt/updatedAt custom fields when model contains @versioned annotation #1597
Breaking Changes
GraphbackDateTimescalar for generated createdAt updatedAt fields (#1349, fixed by #1862)Disable filter input generation for unknown custom scalars
Graphback disabled generation of unknown custom scalars, except for
Timestamp,Time,Date,DateTime, as we cannot reliably support scalars we do not know.See Graphback Scalars for the list of officially supported scalars.
@db(skip: true)field annotation with@transient85d50f3cChanged GraphbackCRUDService
findBymethod signature. This also applies to all services that implement this interface.args
findBynow accepts a new interface,FindByArgs, which wraps thefilter,pageandorderByoptional arguments.context (optional)
The context parameter is now optional.
info
You can now optionally pass the
GraphQLResolveInfoinfo object to the CRUD service, to perform extra optimizations like retrieving only the selected fields from the query.path (optional)
The root path of the query to get the selected fields from. For example, to get
id,title,descriptionfields from the following query, you would set the path toitems.The path variable is optional, as it will automatically resolve to the root field of the entire query.
contextparameter removed fromsubscribeToCreate,subscribeToDelete,subscribeToUpdatemethods in GraphbackCRUDService.This method was unused.
Removed
contextparameter from all GraphbackDataProvider methods. This also applies to all providers that implement this interface.All CRUD methods in
GraphbackDataProviderhad acontextparameter used to get the selected fields.These have been replaced with (optional)
selectedFields- you can pass a string array of the fields you want to select from the database.Changed GraphbackDataProvider
findBymethod signature. This also applies to all providers that implement this interface.args
findBynow accepts a new interface,FindByArgs, which wraps thefilter,pageandorderByoptional arguments.Remove resolver options from GraphbackContext
Resolver options (
context.graphback.options) was removed from the context because thecountaggregation andselectedFieldsextraction logic was moved to the CRUDService method.Removed graphback key from GraphbackContext
The
graphback.servicesproperty has been removed fromGraphbackContext, andgraphbackis now the service map property.export interface GraphbackContext { - graphback: { - graphback: GraphbackServiceConfigMap - } + graphback: GraphbackServiceConfigMap }Now you can reach the Graphback service map by calling
context.graphback.Note.findBy(...).CRUDService, DataSyncCRUDService now accepts a
ModelDefinitionas the first constructor parameter.To instantiate a CRUDService you must pass the full
ModelDefinitioninstead of the model name.KeycloakCrudService now accepts a
ModelDefinitionas the first constructor parameter.To instantiate a CRUDService you must pass the full
ModelDefinitioninstead of the model name.DataSyncProvider
syncmethod signature has been changedThe
contextargument has been replaced with (optional)selectedFields.contextparameter is removed from thecreatemethod inMongoDBDataProviderandDatasyncMongoDBDataProviderproviders.This parameter did not do anything.
v0.15.1Compare Source
Bug Fixes
v0.15.0Compare Source
New Features
Bug Fixes
create-graphbackwas not correctly creating a fullstack application (#1778) (685aa4c)v0.14.1Compare Source
Bug Fixes
ionic-team/ionic
v6.7.0Compare Source
Features
6.6.3 (2023-03-22)
Bug Fixes
6.6.2 (2023-03-15)
Bug Fixes
6.6.1 (2023-03-08)
Bug Fixes
v6.6.3Compare Source
Bug Fixes
v6.6.2Compare Source
Bug Fixes
v6.6.1Compare Source
Bug Fixes
v6.6.0Compare Source
Bug Fixes
Features
6.5.7 (2023-03-01)
Bug Fixes
6.5.6 (2023-02-22)
Bug Fixes
6.5.5 (2023-02-20)
Bug Fixes
6.5.4 (2023-02-15)
Bug Fixes
6.5.3 (2023-02-08)
Bug Fixes
6.5.2 (2023-02-01)
Bug Fixes
6.5.1 (2023-01-25)
Bug Fixes
v6.5.7Compare Source
Bug Fixes