[go: nahoru, domu]

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

Version Packages #3357

Merged
merged 1 commit into from
Jul 9, 2020
Merged

Version Packages #3357

merged 1 commit into from
Jul 9, 2020

Conversation

github-actions[bot]
Copy link
Contributor
@github-actions github-actions bot commented Jul 6, 2020

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to release, this PR will be updated.

Releases

firebase@7.16.0

Minor Changes

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • 17c628eb #3312 Thanks @Feiyang1! - Fixed an issue where we try to update token for every getToken() call because we don't save the updated token in the IndexedDB.

  • bb740836 #3330 Thanks @Feiyang1! - Clear timeout after a successful response or after the request is canceled. Fixes issue 3289.

  • e90304c8 #3309 Thanks @schmidt-sebastian! - Removed internal wrapper around our public API that was meant to prevent incorrect SDK usage for JavaScript users, but caused our SDK to stop working in IE11.

  • 469c8bdf #3221 Thanks @zwu52! - Added support for onMessage so the internal callback can work with Subscriber

  • Updated dependencies [a754645e, 17c628eb, bb740836, 39ca8ecf, 877c060c, e90304c8, 469c8bdf]:

    • @firebase/analytics@0.3.9
    • @firebase/app@0.6.8
    • @firebase/auth@0.14.8
    • @firebase/database@0.6.7
    • @firebase/firestore@1.16.0
    • @firebase/functions@0.4.48
    • @firebase/installations@0.4.14
    • @firebase/messaging@0.6.20
    • @firebase/performance@0.3.9
    • @firebase/remote-config@0.1.25
    • @firebase/storage@0.3.38

@firebase/firestore@1.16.0

Minor Changes

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • e90304c8 #3309 Thanks @schmidt-sebastian! - Removed internal wrapper around our public API that was meant to prevent incorrect SDK usage for JavaScript users, but caused our SDK to stop working in IE11.

  • Updated dependencies [a754645e, 39ca8ecf]:

    • @firebase/component@0.1.16
    • @firebase/logger@0.2.6
    • @firebase/firestore-types@1.12.0
  • [fixed] Fixed an issue that may have prevented the client from connecting
    to the backend immediately after a user signed in.

Released

  • [changed] All known failure cases for Indexed-related crashes have now been
    addressed. Instead of crashing the client, IndexedDB failures will result
    in rejected operations (e.g. rejected Writes or errored Query listeners).
    If these rejections surface in your app, you can retry these operations
    when IndexedDB access is restored.
    IndexedDB failures that occur due to background work are automatically
    retried.

    If you continue to see Indexed-related crashes, we appreciate feedback
    (Offline Mode Improvements #2755).

  • [fixed] Fixed an issue that could cause Firestore to temporarily go
    offline when a Window visibility event occurred.

  • [feature] Added support for calling FirebaseFiresore.settings with
    { ignoreUndefinedProperties: true }. When set, Firestore ignores
    undefined properties inside objects rather than rejecting the API call.

  • [fixed] Fixed a regression introduced in v7.14.2 that incorrectly applied
    a FieldValue.increment in combination with set({...}, {merge: true}).

  • [fixed] Firestore now rejects onSnapshot() listeners if they cannot be
    registered in IndexedDB. Previously, these errors crashed the client.

  • [fixed] Firestore now rejects write operations if they cannot be persisted
    in IndexedDB. Previously, these errors crashed the client.

  • [fixed] Fixed a source of IndexedDB-related crashes for tabs that receive
    multi-tab notifications while the file system is locked.

  • [feature] Added an experimentalForceOwningTab setting that can be used to
    enable persistence in environments without LocalStorage, which allows
    persistence to be used in Web Workers (FR: Firestore offline persistence in web workers #983).

1.10.2

  • [fixed] Temporarily reverted the use of window.crypto to generate document
    IDs to address compatibility issues with IE 11, WebWorkers, and React Native.
  • [changed] Firestore now limits the number of concurrent document lookups it
    will perform when resolving inconsistencies in the local cache (Large changesets over slow connections result in uncontrollable usage-metered long-polling loops #2683).
  • [changed] Changed the in-memory representation of Firestore documents to
    reduce memory allocations and improve performance. Calls to
    DocumentSnapshot.getData() and DocumentSnapshot.toObject() will see
    the biggest improvement.

1.10.1

  • [fixed] Fixed an issue where the number value -0.0 would lose its sign when
    stored in Firestore.

1.10.0

1.9.3

1.9.2

1.9.0

  • [feature] Added support for storing and retrieving custom types in Firestore.
    Added support for strongly typed collections, documents, and
    queries. You can now use withConverter() to supply a custom data
    converter that will convert between Firestore data and your custom type.

1.8.0

  • [changed] Improved the performance of repeatedly executed queries when
    persistence is enabled. Recently executed queries should see dramatic
    improvements. This benefit is reduced if changes accumulate while the query
    is inactive. Queries that use the limit() API may not always benefit,
    depending on the accumulated changes.

1.7.0

  • [changed] The client can now recover if certain periodic IndexedDB operations
    fail.
  • [feature] Added in and array-contains-any query operators for use with
    .where(). in finds documents where a specified field’s value is IN a
    specified array. array-contains-any finds documents where a specified field
    is an array and contains ANY element of a specified array.
  • [feature] Added Query.limitToLast(n: number) , which returns the last
    n documents as the result.

1.6.3

  • [changed] Improved iOS 13 support by eliminating an additional crash in our
    IndexedDB persistence layer.

1.6.2

1.6.0

  • [feature] Added a Firestore.onSnapshotsInSync() method that notifies you
    when all your snapshot listeners are in sync with each other.
  • [fixed] Fixed a regression that caused queries with nested field filters to
    crash the client if the field was not present in the local copy of the
    document.

1.5.0

  • [feature] Added a Firestore.waitForPendingWrites() method that
    allows users to wait until all pending writes are acknowledged by the
    Firestore backend.
  • [feature] Added a Firestore.terminate() method which terminates
    the instance, releasing any held resources. Once it completes, you can
    optionally call Firestore.clearPersistence() to wipe persisted Firestore
    data from disk.
  • [changed] Improved performance for queries with filters that only return a
    small subset of the documents in a collection.
  • [fixed] Fixed a race condition between authenticating and initializing
    Firestore that could result in initial writes to the database being dropped.

1.4.10

  • [changed] Transactions now perform exponential backoff before retrying.
    This means transactions on highly contended documents are more likely to
    succeed.

1.4.6

  • [changed] Transactions are now more flexible. Some sequences of operations
    that were previously incorrectly disallowed are now allowed. For example,
    after reading a document that doesn't exist, you can now set it multiple
    times successfully in a transaction.

1.4.5

1.4.4

  • [fixed] Fixed an internal assertion that was triggered when an update
    with a FieldValue.serverTimestamp() and an update with a
    FieldValue.increment() were pending for the same document.

1.4.0

1.3.5

1.3.3

  • [changed] Firestore now recovers more quickly after network connectivity
    changes (airplane mode, Wi-Fi availability, etc.).

1.3.0

  • [changed] Deprecated the experimentalTabSynchronization setting in favor of
    synchronizeTabs. If you use multi-tab synchronization, it is recommended
    that you update your call to enablePersistence(). Firestore logs an error
    if you continue to use experimentalTabSynchronization.
  • [feature] You can now query across all collections in your database with a
    given collection ID using the FirebaseFirestore.collectionGroup() method.

1.1.4

  • [feature] Added an experimentalForceLongPolling setting that that can be
    used to work around proxies that prevent the Firestore client from connecting
    to the Firestore backend.

1.1.1

1.1.0

  • [feature] Added FieldValue.increment(), which can be used in update()
    and set(..., {merge:true}) to increment or decrement numeric field
    values safely without transactions.
  • [changed] Prepared the persistence layer to support collection group queries.
    While this feature is not yet available, all schema changes are included
    in this release. Once you upgrade, you will not be able to use an older version
    of the Firestore SDK with persistence enabled.

1.0.5

  • [changed] Improved performance when querying over documents that contain
    subcollections.

1.0.4

1.0.0

  • [changed] The timestampsInSnapshots setting is now enabled by default.
    Timestamp fields that read from a DocumentSnapshot are now returned as
    Timestamp objects instead of Date objects. This is a breaking change;
    developers must update any code that expects to receive a Date object. See
    https://firebase.google.com/docs/reference/js/firebase.firestore.Settings#~timestampsInSnapshots
    for more details.
  • [fixed] Fixed a crash that could happen when the app is shut down after
    a write has been sent to the server but before it has been received on
    a listener.

0.9.2

  • [fixed] Fixed a regression introduced in 5.7.0 that caused apps using
    experimentalTabSynchronization to hit an exception for "Failed to obtain
    primary lease for action 'Collect garbage'".

0.9.1

  • [changed] Added a custom error for schema downgrades.

0.9.0

  • [changed] Removed eval()-based fallback for JSON parsing, allowing SDK to
    be used in environments that prohibit eval().
  • [feature] Added a garbage collection process to on-disk persistence that
    removes older documents. This is enabled automatically if persistence is
    enabled, and the SDK will attempt to periodically clean up older, unused
    documents once the on-disk cache passes a threshold size (default: 40 MB).
    This threshold can be configured by changing the setting cacheSizeBytes in
    the settings passed to Firestore.settings(). It must be set to a minimum of
    1 MB. The garbage collection process can be disabled entirely by setting
    cacheSizeBytes to CACHE_SIZE_UNLIMITED.

0.8.3

  • [fixed] Fixed an issue that prevented query synchronization between multiple
    tabs.

0.8.2

  • [fixed] Fixed an issue where native ES6 module loading was not working.

0.8.1

  • [fixed] Fixed an issue where typings are created in the wrong location.

0.8.0

  • [feature] Access to offline persistence is no longer limited to a single tab.
    You can opt into this new experimental mode by invoking enablePersistence()
    with {experimentalTabSynchronization: true}. All tabs accessing persistence
    must use the same setting for this flag.
  • [fixed] Fixed an issue where the first get() call made after being offline
    could incorrectly return cached data without attempting to reach the backend.
  • [changed] Changed get() to only make one attempt to reach the backend before
    returning cached data, potentially reducing delays while offline.
  • [fixed] Fixed an issue that caused Firebase to drop empty objects from calls
    to set(..., { merge: true }).
  • [changed] Improved argument validation for several API methods.

0.7.3

  • [changed] Changed the internal handling for locally updated documents that
    haven't yet been read back from Firestore. This can lead to slight behavior
    changes and may affect the SnapshotMetadata.hasPendingWrites metadata flag.
  • [changed] Eliminated superfluous update events for locally cached documents
    that are known to lag behind the server version. Instead, we buffer these
    events until the client has caught up with the server.

0.7.2

0.7.0

  • [fixed] Fixed get({source: 'cache'}) to be able to return nonexistent
    documents from cache.
  • [changed] Prepared the persistence layer to allow shared access from multiple
    tabs. While this feature is not yet available, all schema changes are included
    in this release. Once you upgrade, you will not be able to use an older version
    of the Firestore SDK with persistence enabled.
  • [fixed] Fixed an issue where changes to custom authentication claims did not
    take effect until you did a full sign-out and sign-in.
    (Firestore - token doesn't update in the Firestore Rules firebase-ios-sdk#1499)

0.6.1

  • [changed] Improved how Firestore handles idle queries to reduce the cost of
    re-listening within 30 minutes.
  • [changed] Improved offline performance with many outstanding writes.

0.6.0

  • [fixed] Fixed an issue where queries returned fewer results than they should,
    caused by documents that were cached as deleted when they should not have
    been (Firestore: Deleting a couple of documents returned by a limited subcollection query triggers all documents to disappear locally firebase-ios-sdk#1548). Because some cache data is cleared,
    clients might use extra bandwidth the first time they launch with this
    version of the SDK.
  • [feature] Added firebase.firestore.FieldValue.arrayUnion() and
    firebase.firestore.FieldValue.arrayRemove() to atomically add and remove
    elements from an array field in a document.
  • [feature] Added 'array-contains' query operator for use with .where() to
    find documents where an array field contains a specific element.

0.5.0

  • [changed] Merged the includeQueryMetadataChanges and
    includeDocumentMetadataChanges options passed to Query.onSnapshot() into
    a single includeMetadataChanges option.
  • [changed] QuerySnapshot.docChanges() is now a method that optionally takes
    an includeMetadataChanges option. By default, even when listening to a query
    with { includeMetadataChanges:true }, metadata-only document changes are
    suppressed in docChanges().
  • [feature] Added new { mergeFields: (string|FieldPath)[] } option to set()
    which allows merging of a reduced subset of fields.

0.4.1

  • [fixed] Fixed a regression in Firebase JS release 4.13.0 regarding the
    loading of proto files, causing Node.JS support to break.

0.4.0

  • [feature] Added a new Timestamp class to represent timestamp fields,
    currently supporting up to microsecond precision. It can be passed to API
    methods anywhere a JS Date object is currently accepted. To make
    DocumentSnapshots read timestamp fields back as Timestamps instead of
    Dates, you can set the newly added flag timestampsInSnapshots in
    FirestoreSettings to true. Note that the current behavior
    (DocumentSnapshots returning JS Date objects) will be removed in a future
    release. Timestamp supports higher precision than JS Date.
  • [feature] Added ability to control whether DocumentReference.get() and
    Query.get() should fetch from server only, (by passing { source: 'server' }),
    cache only (by passing { source: 'cache' }), or attempt server and fall back
    to the cache (which was the only option previously, and is now the default).

0.3.7

  • [fixed] Fixed a regression in the Firebase JS release 4.11.0 that could
    cause get() requests made while offline to be delayed by up to 10
    seconds (rather than returning from cache immediately).

0.3.6

  • [fixed] Fixed a regression in the Firebase JS release 4.11.0 that could
    cause a crash if a user signs out while the client is offline, resulting in
    an error of "Attempted to schedule multiple operations with timer id
    listen_stream_connection_backoff".

0.3.5

  • [changed] If the SDK's attempt to connect to the Cloud Firestore backend
    neither succeeds nor fails within 10 seconds, the SDK will consider itself
    "offline", causing get() calls to resolve with cached results, rather than
    continuing to wait.
  • [fixed] Fixed a potential race condition after calling enableNetwork() that
    could result in a "Mutation batchIDs must be acknowledged in order" assertion
    crash.

0.3.2

  • [fixed] Fixed a regression in Firebase JS release 4.9.0 that could in certain
    cases result in an "OnlineState should not affect limbo documents." assertion
    crash when the client loses its network connection.

0.3.1

  • [changed] Snapshot listeners (with the includeMetadataChanges option
    enabled) now receive an event with snapshot.metadata.fromCache set to
    true if the SDK loses its connection to the backend. A new event with
    snapshot.metadata.fromCache set to false will be raised once the
    connection is restored and the query is in sync with the backend again.
  • [feature] Added SnapshotOptions API to control how DocumentSnapshots
    return unresolved server timestamps.
  • [feature] Added disableNetwork() and enableNetwork() methods to
    Firestore class, allowing for explicit network management.
  • [changed] For non-existing documents, DocumentSnapshot.data() now returns
    undefined instead of throwing an exception. A new
    QueryDocumentSnapshot class is introduced for Queries to reduce the number
    of undefined-checks in your code.
  • [added] Added isEqual API to GeoPoint, Blob, SnapshotMetadata,
    DocumentSnapshot, QuerySnapshot, CollectionReference, FieldValue
    and FieldPath.
  • [changed] A "Could not reach Firestore backend." message will be
    logged when the initial connection to the Firestore backend fails.
  • [changed] A "Using maximum backoff delay to prevent overloading the
    backend." message will be logged when we get a resource-exhausted
    error from the backend.

v0.2.1

  • [feature] Added Node.js support for Cloud Firestore (with the exception of
    the offline persistence feature).
  • [changed] Webchannel requests use \$httpHeaders URL parameter rather than
    normal HTTP headers to avoid an extra CORS preflight request when initiating
    streams / RPCs.

v0.1.4

  • [changed] Network streams are automatically closed after 60 seconds of
    idleness.
  • [changed] We no longer log 'RPC failed' messages for expected failures.

v0.1.2

  • [changed] We now support FieldValue.delete() sentinels in set() calls
    with {merge:true}.
  • [fixed] Fixed validation of nested arrays to allow indirect nesting

v0.1.1

  • [fixed] Fixed an issue causing exceptions when trying to use
    firebase.firestore.FieldPath.documentId() in an orderBy() or where()
    clause in a query.

v0.1.0

  • Initial public release.

@firebase/firestore-types@1.12.0

Minor Changes

@firebase/analytics@0.3.9

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • Updated dependencies [a754645e]:

    • @firebase/component@0.1.16
    • @firebase/installations@0.4.14
    • @firebase/logger@0.2.6

@firebase/app@0.6.8

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • Updated dependencies [a754645e]:

    • @firebase/component@0.1.16
    • @firebase/logger@0.2.6

@firebase/auth@0.14.8

Patch Changes

@firebase/component@0.1.16

Patch Changes

@firebase/database@0.6.7

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • Updated dependencies [a754645e]:

    • @firebase/component@0.1.16
    • @firebase/logger@0.2.6
  • [changed] Added internal HTTP header to the WebSocket connection.

  • [feature] Added ServerValue.increment() to support atomic field value increments
    without transactions.

  • [fixed] Fixed Realtime Database URL parsing bug to support domains with more than 3 components.

Released

  • [fixed] Fixed an issue that caused large numeric values with leading zeros to
    not always be sorted correctly.
  • [changed] Internal cleanup to Node.JS support.

6.4.0

6.3.4

6.0.0

@firebase/functions@0.4.48

Patch Changes

@firebase/installations@0.4.14

Patch Changes

@firebase/logger@0.2.6

Patch Changes

@firebase/messaging@0.6.20

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • 17c628eb #3312 Thanks @Feiyang1! - Fixed an issue where we try to update token for every getToken() call because we don't save the updated token in the IndexedDB.

  • 469c8bdf #3221 Thanks @zwu52! - Added support for onMessage so the internal callback can work with Subscriber

  • Updated dependencies [a754645e]:

    • @firebase/component@0.1.16
    • @firebase/installations@0.4.14
  • [fixed] Fixed an issue introduced in 7.7.0, when FCM switched to provide base64-encoded VAPID
    key to PushManager for push subscription. For backward compatibility, the SDK has switched back to using VAPID key in type ArrayBuffer.

@firebase/performance@0.3.9

Patch Changes

  • a754645e #3297 Thanks @renovate! - Update dependency typescript to v3.9.5

  • Updated dependencies [a754645e]:

    • @firebase/component@0.1.16
    • @firebase/installations@0.4.14
    • @firebase/logger@0.2.6

0.3.0

  • [changed] Updated internal performance event transport mechanism.

0.2.30

  • [changed] Internal transport protocol update from proto2 to proto3.

@firebase/remote-config@0.1.25

Patch Changes

  • Updated dependencies [a754645e]:
    • @firebase/component@0.1.16
    • @firebase/installations@0.4.14
    • @firebase/logger@0.2.6

@firebase/storage@0.3.38

Patch Changes

  • Updated dependencies [a754645e]:
    • @firebase/component@0.1.16
  • [Changed] Added an additional header to all network requests that propagates the Firebase App ID.

6.1.0

  • [Feature] Added the support for List API.

@firebase/testing@0.20.6

Patch Changes

@googlebot
Copy link

Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

📝 Please visit https://cla.developers.google.com/ to sign.

Once you've signed (or fixed any issues), please reply here with @googlebot I signed it! and we'll verify it.


What to do if you already signed the CLA

Individual signers
Corporate signers

ℹ️ Googlers: Go here for more info.


### Patch Changes

- [`a754645e`](https://github.com/firebase/firebase-js-sdk/commit/a754645ec2be1b8c205f25f510196eee298b0d6e) [#3297](https://github.com/firebase/firebase-js-sdk/pull/3297) Thanks [@renovate](https://github.com/apps/renovate)! - Update dependency typescript to v3.9.5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Feiyang1 Is it possible to remove the "thanks" part? It is nice for external contributors, but not sure if we need it for team members.

We also might not want to add release notes for updates to dev dependencies (and maybe also all @firebase dependencies).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. We will need to write a custom generator. I'm not sure how to check for team member though, so we will probably completely remove the thanks part. I personally don't mind the thanks part, but if you feel strongly about it, I can make a custom generator.

We also might not want to add release notes for updates to dev dependencies

Generally speaking, devDependencies should not be included. Typescript and some build tools(e.g. rollup) are special cases because they could affect the content of the build artifacts, so I think their upgrades should be included in the changelog.

maybe also all @firebase dependencies

They are dependencies, so their upgrades should be included in the changelog. There could be cases where only dependencies are updated with no other changes. It should trigger a release in firestore and we want to show it in the changelog.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason I am kind of hesitant to include updates on internal dependencies is that it feels like clutter to me (but that is a personal opinion).
Android and iOS do not include them and we also exclude dependency updates for @google-cloud/firestore.

Copy link
Member
@zwu52 zwu52 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Christina

@github-actions github-actions bot force-pushed the changeset-release/release branch 2 times, most recently from 25d3d7c to 73f8231 Compare July 7, 2020 22:10
@hsubox76 hsubox76 merged commit 369dc26 into release Jul 9, 2020
@firebase firebase locked and limited conversation to collaborators Aug 9, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants