# Release History ### 1.2.4 / 2020-01-23 #### Documentation * Update copyright year * Update Status documentation ### 1.2.3 / 2020-01-08 #### Bug Fixes * Use client instead of service in DocumentReference::List ### 1.2.2 / 2019-12-18 #### Bug Fixes * Fix MonitorMixin usage on Ruby 2.7 * Ruby 2.7 will error if new_cond is called before super(). * Make the call to super() be the first call in initialize #### Documentation * Update lower-level API documentation ### 1.2.1 / 2019-11-06 #### Bug Fixes * Update minimum runtime dependencies ### 1.2.0 / 2019-10-29 This release requires Ruby 2.4 or later. #### Documentation * Clarify which Google Cloud Platform environments support automatic authentication ### 1.1.0 / 2019-08-23 #### Features * Support overriding of service endpoint * Add low-level client for the admin API #### Documentation * Update documentation ### 1.0.0 / 2019-07-15 * Bump release level to GA. ### 0.26.2 / 2019-07-12 * Update #to_hash to #to_h for compatibility with google-protobuf >= 3.9.0 ### 0.26.1 / 2019-07-08 * Support overriding service host and port in the low-level interface. ### 0.26.0 / 2019-06-13 BREAKING CHANGE: The default return value of Client#transaction has been changed to the return value of the yielded block. Pass commit_response: true for the previous default behavior of returning the CommitResponse. * Add commit_response to Client#transaction * Add Collection Group queries * Add CollectionReference#list_documents * Enable grpc.service_config_disable_resolution * Use VERSION constant in GAPIC client ### 0.25.1 / 2019-04-29 * Add AUTHENTICATION.md guide. * Update documentation for V1 Server API to GA. * Update generated documentation. * Extract gRPC header values from request. ### 0.25.0 / 2019-02-01 * Switch Firestore to use the V1 API: * Add V1 service to the low level API. * Add numeric transform methods * Add the following methods to Client: * Client#field_increment * Client#field_maximum * Client#field_minimum * Add the following methods to FieldValue: * FieldValue.increment * FieldValue.maximum * FieldValue.minimum * Add field_mask argument to get_all method: * Allows specific portions of the document data to be returned. * Add list_collections alias. * Make use of Credentials#project_id * Use Credentials#project_id If a project_id is not provided, use the value on the Credentials object. This value was added in googleauth 0.7.0. * Loosen googleauth dependency Allow for new releases up to 0.10. The googleauth devs have committed to maintaining the current API and will not make backwards compatible changes before 0.10. * Add Firestore emulator support. ### 0.24.2 / 2018-09-20 * Add fix for comparing NaN values * NaN values should not be compared, as this may raise with Active Support. * Update documentation. * Change documentation URL to googleapis GitHub org. * Fix circular require warning. ### 0.24.1 / 2018-09-12 * Add missing documentation files to package. ### 0.24.0 / 2018-09-10 * Add array_union and array_delete FieldValue configuration. * Add array-contains as an operator to the Query#where method. * Update documentation. ### 0.23.0 / 2018-08-17 * Add Firestore Watch * A document reference or a collection reference/query can now be listened to for changes. * The following methods were added: * DocumentReference#listen * Query#listen * The following classes were added: * DocumentSnapshot * DocumentChange * DocumentListener * QuerySnapshot * QueryListener * Support DocumentSnapshot objects as cursors. * Fix mapping of geo Hash to GeoPoint resource. * Query#select is no longer additive, it now replaces any previously selected fields. * Documentation updates. ### 0.22.0 / 2018-07-05 * Remove Base64 encoding for BYTES values, as it is unnecessary for gRPC endpoints. * Add documentation for enabling gRPC logging. ### 0.21.1 / 2018-05-24 * Fix bug where some DocumentReference/DocumentSnapshot actions were failing due to a bad object configuration. * Updates to documentation and code examples. ### 0.21.0 / 2018-02-27 * Add Shared Configuration. ### 0.20.0 / 2018-01-10 * First release