Skip to content

Releases: ciatph/csv-firestore

csv-firestore_v1.1.1

24 Jan 17:52
c17286f
Compare
Choose a tag to compare

Summary

January 25, 2025

  • Feat: publish to the NPM registry with provenance, #18
  • Chore: create a Code of Conduct, #19
  • Chore: create a Contributing guide
  • Chore: create a Security policy
  • Chore: create Issues and Feature Request templates
  • Chore: create a license file
  • Chore: update package.json:
    • Set engines (node: >=16.14.2, npm: >+8.5.0)
    • Update license type
  • Chore: exclude unnecessary files in the .npmignore file

What's Changed

Full Changelog: v1.1.0...v1.1.1

csv-firestore_v1.1.0

06 Feb 17:28
3b1dab1
Compare
Choose a tag to compare

Summary

February 7, 2023

  • Escape the firebase private key

What's Changed

Full Changelog: v1.0.9...v1.1.0

csv-firestore_v1.0.9

09 Aug 14:19
1c3eab3
Compare
Choose a tag to compare

Summary

  • Re-install dependencies using NodeJS v16.14.2
  • Configure eslint standard
  • Create a workflow for linting files on push to any branch
  • Make firebase-admin's db and admin objects accessible from the FirestoreData class. Checkout /examples/example-firestore.js for more details.
    const { FirestoreData } = require('csv-firestore')
    
    const Firestore = new FirestoreData()
    
    // Firestore DB
    Firestore.db
    
    // Firebase admin
    Firestore.admin
    

What's Changed

Full Changelog: v1.0.8...v1.0.9

csv-firestore_v1.0.8

26 Mar 03:28
Compare
Choose a tag to compare

Updates

  • Fix for Issue #4 - Use Actions to deploy on npm registry
  • Update examples on README

csv-firestore_v1.0.7

25 Mar 16:26
Compare
Choose a tag to compare

Updates

  • Fix for Issue #6 - Error: cannot find module './lib/classes/CsvToFirestore'

csv-firestore_v1.0.6

24 Mar 04:45
Compare
Choose a tag to compare

Updates

  • Add CSV parsing examples
  • Expose ParserCSV and FirebaseData classes to module.exports
    const {
      CsvToFireStore,
      ParserCSV,
      FirestoreData
    } = require('csv-firestore')
    

csv-firestore_v1.0.5

22 Mar 19:31
Compare
Choose a tag to compare

Updates

  • Rename repository and package to csv-firestore
  • Minor README updates
  • Minor package.json updates

csv-to-firestore_v1.0.0

22 Mar 13:26
Compare
Choose a tag to compare

Initial release.