Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@posva/vuefire-core

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@posva/vuefire-core - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

11

CHANGELOG.md

@@ -6,4 +6,15 @@ # Change Log

## [2.1.2](https://github.com/vuejs/vuefire/compare/@posva/vuefire-core@2.1.1...@posva/vuefire-core@2.1.2) (2019-08-06)
### Bug Fixes
* remove usage of fill to support IE ([1346b90](https://github.com/vuejs/vuefire/commit/1346b90)), closes [#332](https://github.com/vuejs/vuefire/issues/332)
## [2.1.1](https://github.com/vuejs/vuefire/compare/@posva/vuefire-core@2.1.0...@posva/vuefire-core@2.1.1) (2019-08-05)
**Note:** Version bump only for package @posva/vuefire-core

4

dist/vuefire-core.cjs.js
/*!
* @posva/vuefire-core v2.1.1
* @posva/vuefire-core v2.1.2
* (c) 2019 Eduardo San Martin Morote

@@ -206,3 +206,3 @@ * @license MIT

// TODO handle array
data[key] = Array(ref.length).fill(null);
data[key] = Array(ref.length);
var oldArray = oldDoc[key] || [];

@@ -209,0 +209,0 @@ // Items that are no longer in the array aren't going to be processed

/*!
* @posva/vuefire-core v2.1.1
* @posva/vuefire-core v2.1.2
* (c) 2019 Eduardo San Martin Morote

@@ -202,3 +202,3 @@ * @license MIT

// TODO handle array
data[key] = Array(ref.length).fill(null);
data[key] = Array(ref.length);
var oldArray = oldDoc[key] || [];

@@ -205,0 +205,0 @@ // Items that are no longer in the array aren't going to be processed

{
"name": "@posva/vuefire-core",
"version": "2.1.1",
"version": "2.1.2",
"description": "Shared code for vue + Firebase apps used by vuefire and vuexfire",

@@ -45,3 +45,3 @@ "author": "Eduardo San Martin Morote <posva13@gmail.com>",

},
"gitHead": "560f576add733cafcc1838fbdb1292512d4bcbe9"
"gitHead": "65c76271270646edb300a34081ec5cb7f6a3db13"
}

@@ -40,3 +40,3 @@ import { firestore } from 'firebase'

// TODO handle array
data[key] = Array(ref.length).fill(null)
data[key] = Array(ref.length)
const oldArray = oldDoc[key] || []

@@ -43,0 +43,0 @@ // Items that are no longer in the array aren't going to be processed

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc