google-cloud-firestore 2.7.1 → 2.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f45d22f61cfd606f0a800da541058804c823a60d38896e77aac5ca72b01b34f4
4
- data.tar.gz: 320a237aa81d52be3add1144de0d0bee460eb90786f4ab878e93ad79fd2c862f
3
+ metadata.gz: 0cb9b1838e2d0de1dd7a122b6395a7506e1c9ffdc237edc88ece03b38902694d
4
+ data.tar.gz: 92cd04357a9295dec00b34c748cf0e1a9b7f44165915d41e8dac3b5eff40ef84
5
5
  SHA512:
6
- metadata.gz: d56c986ef8914c7b486d5c4877e4fdd681051b2203332f9a83278365826438353df177a3fb4a80bb9a11b8c33b6b190dd97e475c1de2273d11f759e01f2d7daa
7
- data.tar.gz: b2916ce31ded50b667377bbc397356153cffeeff1a8c3f4ef71426211f5c1ed9ffe5ab53a319355d9ecbccf5079e1dd0617bc11e1c42f2009d1444d19ee840e1
6
+ metadata.gz: 3fc0b6e13ba161fc579a969fdf3848621d8aaf45bdd6e64fa5ad2dc2a4d4efd4a934034724f03f7bdc7b2fb50a4976ea3c3fb6dbc99576ef274bbf435e1d0e02
7
+ data.tar.gz: 465c31a8a2a581f90107b305d0d465e4e8c4da368c5b00651075b45031708a38e47e3e7a2deae8bacae32b8f8779ca164b68a5a99dfec1f6d0832d1f70d67089
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 2.7.2 (2022-08-24)
4
+
5
+ #### Documentation
6
+
7
+ * fix firestore emulator guide ([#19045](https://github.com/googleapis/google-cloud-ruby/issues/19045))
8
+
3
9
  ### 2.7.1 (2022-07-15)
4
10
 
5
11
  #### Bug Fixes
data/EMULATOR.md CHANGED
@@ -2,19 +2,21 @@
2
2
 
3
3
  To develop and test your application locally, you can use the [Google Cloud
4
4
  Firestore
5
- Emulator](https://cloud.google.com/firestore/docs/security/test-rules-emulator#install_the_emulator),
6
- which provides local emulation of the production Google Cloud Firestore
7
- environment. You can start the Google Cloud Firestore emulator using the
8
- [`firebase` command-line tool](https://firebase.google.com/docs/cli/).
5
+ Emulator](https://cloud.google.com/sdk/gcloud/reference/beta/emulators/firestore/),
6
+ which provides local emulation of the production Google Cloud Firestore
7
+ environment. You can start the Google Cloud Firestore emulator using
8
+ the `gcloud` command-line tool.
9
+
10
+ `gcloud beta emulators firestore start --host-port=0.0.0.0:8080`
9
11
 
10
12
  When you run the Cloud Firestore emulator you will see a message similar to the
11
13
  following printed:
12
14
 
13
15
  ```
14
- $ firebase serve --only firestore
15
- API endpoint: http://[::1]:8080
16
- API endpoint: http://127.0.0.1:8080
17
- Dev App Server is now running.
16
+ If you are using a library that supports the FIRESTORE_EMULATOR_HOST
17
+ environment variable, run:
18
+
19
+ export FIRESTORE_EMULATOR_HOST=localhost:8080
18
20
  ```
19
21
 
20
22
  Now you can connect to the emulator using the `FIRESTORE_EMULATOR_HOST`
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Firestore
19
- VERSION = "2.7.1".freeze
19
+ VERSION = "2.7.2".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-firestore
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-15 00:00:00.000000000 Z
11
+ date: 2022-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core