Code Monkey home page Code Monkey logo

react-gatsby-firebase-authentication's Introduction

The Road to React with Firebase [Book]

Slack

The official repository for The Road to React with Firebase.

Updates, Help and Support

Contribute

You can help to improve the book by opening Issues and Pull Requests (PR).

You can open up any PR that corrects spelling or explains a certain lesson with more detail. When writing such a technical book, you get fast blind on what needs more explanation and on what is already explained well.

In addition, you can open Issues when you run into problems. In order to make the fix for the Issue as easy as possible, please provide a couple of details such as error log, screenshot, which page of the book it happened, your node version (command line: node -v) and a link to your own repository. Not all of these details are mandatory, but most of them help to fix the Issue and to improve the book.

Thanks a lot for your help!

react-gatsby-firebase-authentication's People

Contributors

dandv avatar greenkeeper[bot] avatar ovidiumihaibelciug avatar rwieruch avatar waleedshkt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-gatsby-firebase-authentication's Issues

Create new protected route containing GraphQL Query

Kinda new to this so probably missing something simple but thought, other beginners might face a similar challenge so here is my problem:

Basically I have protected route that contains a graphql query. When inspecting, it returns all the the instances (H3 tags in this case) as empty objects as if it was not allowed to read the data or something.

Here is my code, some help or pointers would be much appreciated! :) Oh and thanks a lot for this great starter!

import React from 'react';
import { StaticQuery, graphql } from 'gatsby';
import AuthUserContext from '../components/Session/AuthUserContext';
import withAuthorization from '../components/Session/withAuthorization';
import Layout from '../components/layout';

const WikiPage = () => (
  <Layout>
    <WikiPageContent />
  </Layout>
);

const authCondition = authUser => !!authUser;

const WikiPageContent = withAuthorization(authCondition)(() => (
  <StaticQuery
  query={graphql`
    query ArticleQuery {
      allDatoCmsArticle {
        edges {
          node {
            title
          }
        }
      }
    }
  `}
  render={data => (
  <AuthUserContext.Consumer>
    {authUser => (
      <div>
        <h1>Testing</h1>
        <div>
           {data.allDatoCmsArticle.edges.map(({ node: article }) => (
                   <h3>{data.allDatoCmsArticle.title}</h3>
           ))}
           </div>
      </div>
    )}
  </AuthUserContext.Consumer>
    )}
    />
  ));

export default WikiPage;

ERROR in ./node_modules/@firebase/polyfill/dist/index.esm.js

Tried using this and get the following errors.

Module not found: Error: Can't resolve 'core-js/features/symbol/iterator' in '/Users/max/Documents/Developer/Gatsby/playground/node_modules/@firebase/polyfill/dist'
 @ ./node_modules/@firebase/polyfill/dist/index.esm.js 9:0-42
 @ ./node_modules/firebase/app/dist/index.cjs.js
 @ ./src/components/Layout.js
 @ ./src/pages/account.js
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi event-source-polyfill (webpack)-hot-middleware/client.js?path=/__webpack_hmr&reload=true&overlay=false ./.cache/app
ℹ 「wdm」: Failed to compile.

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of prettier is breaking the build 🚨

The devDependency prettier was updated from 1.15.2 to 1.15.3.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for 1.15.3

🔗 Changelog

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of firebase is breaking the build 🚨

The dependency firebase was updated from 5.5.6 to 5.5.7.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

firebase is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby-plugin-react-helmet is breaking the build 🚨

The dependency gatsby-plugin-react-helmet was updated from 3.0.0 to 3.0.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby-plugin-react-helmet is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.35 to 2.0.36.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 22 commits.

  • c330454 chore(release): Publish
  • 32f786a Implement two fallbacks for getting extension when creating remote file (#9349)
  • d243222 add tutorial for gatsby+contentful+netlify (#9618)
  • 0c0ac46 examples: Minimal mobx example (#9064)
  • 3a8a781 Remove eslint-plugin-flow-vars (#9622)
  • a9b8a81 chore: removed unused imports and changes related to code formatting (#9610)
  • 9c481f4 feat(www): better social sharing support (#9291)
  • a55bc13 feat(gatsby-plugin-sass): Accept css-loader options (#9462)
  • 2df5368 feat(showcase): add QHacks to site showcase (#9617)
  • 53c7e25 Update Strapi article : Building a static blog using Gatsby and Strapi (#9569)
  • 1631d33 feat(showcase): add Asian Art Museum to showcase (#9589)
  • 00284e0 fix(gatsby-plugin-offline): don't precache the index page (#9603)
  • 0f97ea3 docs: add missing eslint-plugin-node plugin to eslint docs (#9600)
  • 47a800c fix(gatsby-source-mongodb): sanitize type of nodes to only contain alphanumeric chars and underscores (#7246)
  • 00f2992 Add Clubhouse to showcases (#9604)

There are 22 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of firebase is breaking the build 🚨

The dependency firebase was updated from 5.5.9 to 5.6.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

firebase is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Signin Shows blank

I followed the instructions, when running gatsby develop, the build failed and i needed to run npm install --save react-router-dom
After that it would successfully compile.
after loading local host in my browser, when i click Sign In it loads a blank page.
How do i resolve this issue?

TypeError: this.listener is not a function

Hi,

i just installed this project on node v8.10.0 and updated the credentials in src/components/Firebase/firebase.js.

i am getting an this error whenever i click a link…

TypeError: this.listener is not a function

any idea why this happens?

Error: A continue URL must be provided in the request.

I am a new developer so this could be something simple but I am not able to send a validation email after successfully signing up a user. I have searched through the code as much as possible but I don't where or how I can declare a Continue URL

Proxy for localhost

Tried following the tutorial steps but keep getting a CORS error on any page that uses firebase in local development. I attempted to create a proxy server following the gatsby api proxy docs but not sure what to set the middleware path to since there is no direct 'api' route and the firebase auth is a wrapper for the pages. Also tried adding "proxy": "http://localhost:8000" in my package.json. How do you get past this CORS issue in development?

Access to XMLHttpRequest at 'https://www.googleapis.com/identitytoolkit/v3/********' from origin 'http://localhost:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: The 'Access-Control-Allow-Origin' header has a value 'https://localhost:8000' that is not equal to the supplied origin.

Error occurred while trying to proxy to: localhost:8000/ => (after updating packages )

I keep getting this HPM Error when i try to visit my page after running Gatsby Develop. The project compiles Successfully but then I get this error in the browser

error occurred while trying to proxy to: localhost:8000/

and this in the terminal

error [HPM] Error occurred while trying to proxy request / from localhost:8000 to http://localhost:4000 (ECONNREFUSED)

once I remove this from the
-config.js file it works and the pages generated in the browser:

module.exports = {
    developMiddleware: app => {
        app.use(
            proxy({
                target: "http://localhost:4000",
            })
        )
    },
}

However, I then get this error in the terminal :

Error loading a result for the page query in "/404.html". Query was not run and no cached result was found.
Page not found /404.html

Even though I get this error the pages work and the project Compiles successfully.

I Really want to know how to fix the first error without getting rid of the proxy in the config file.

Here is my repo:
https://github.com/thelovesmith/Island-Stream-Web-MVP

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.31 to 2.0.32.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 56 commits.

  • dbd71c3 chore(release): Publish
  • 2788f93 chore: implement babel-preset-gatsby into packages that need it (#9323)
  • 850acf7 Update caching.md (#9482)
  • 553ad80 Update for v2 (#9518)
  • c6dce1c fix(gatsby-plugin-netlify-cms): automatic redirect (#9269)
  • 4d5b8e7 fix typos and improve readability (#9491)
  • 70f55ce Authentication guide (Build a site with authentication) (#9405)
  • d72c49e add: docs for storybook (#9120)
  • 24b5dc0 fix(www): make DebounceInput value externally controlled (#9292)
  • 004c875 Add TestingJavaScript.com to showcase (#9474)
  • 5379143 Add unstructured data example (#9408)
  • cc8c60d feat(gatsby-source-contentful): adds CENTER option to ImageCropFocusType (#9473)
  • 5342862 docs(gatsby-source-contentful): fix typo in readme (#9468)
  • 7567a54 feat(starters): add gatsby-starter-antd (#9467)
  • 06c4a16 fix(examples/using-remark): update dependency to fix broken build and blank pages (#9471)

There are 56 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of prettier is breaking the build 🚨

The devDependency prettier was updated from 1.14.3 to 1.15.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for Prettier 1.15: HTML, Vue, Angular and MDX Support

🔗 Release Notes

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

authUser null when accessing route at `/account` directly

Hi Robin, thanks for this great project. It inspired me a lot.

When trying the live demo, I encountered TypeError: Cannot read property 'email' of null in this link

I'm not sure if withAuthorization(authCondition) running correctly in that page, cmiiw.

I'm afk to running it in my machine, btw.

Cheers

Firebase App named '[DEFAULT]' already exists (app/duplicate-app).

HI, I have done the steps below but run into the following error when I try to sign in or register.

Firebase: Firebase App named '[DEFAULT]' already exists (app/duplicate-app).
▶ 2 stack frames were collapsed.
new Firebase
C:/Users/arhoy/OneDrive/Desktop/web-development/playground/gatsby/react-gatsby-firebase-authentication/src/components/Firebase/firebase.js:76
  73 |            }
  74 | 
  75 |            // merge auth and db user
> 76 |            authUser = {
  77 |              uid: authUser.uid,
  78 |              email: authUser.email,
  79 |              emailVerified: authUser.emailVerified,
View compiled
getFirebase
C:/Users/arhoy/OneDrive/Desktop/web-development/playground/gatsby/react-gatsby-firebase-authentication/src/components/Firebase/firebase.js:104
  101 |   messages = () => this.db.ref('messages');
  102 | }
  103 | 
> 104 | let firebase;
  105 | 
  106 | function getFirebase(app, auth, database) {
  107 |   if (!firebase) {
View compiled
(anonymous function)
C:/Users/arhoy/OneDrive/Desktop/web-development/playground/gatsby/react-gatsby-firebase-authentication/src/components/layout.js:1
> 1 | import React, { Component, Fragment } from 'react';
  2 | 
  3 | import Navigation from './Navigation';
  4 | import getFirebase, { FirebaseContext } from './Firebase';

I am not sure what I am doing wrong, I have set up my ENV variables from Firebase and all that.

Thank you

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

A lot of build errors

node: 8.11.3
npm: 5.6.0
yarn: 1.6.0
gatsby: 2.4.3

I do:

yarn install
gatsby develop

And get a lot errors:

ℹ 「wdm」: Compiling...
 ERROR  Failed to compile with 6 errors                                                                                        07:44:05

This relative module was not found:

* ../components/Layout in ./src/pages/account.js, ./src/pages/home.js and 4 others
✖ 「wdm」: 
ERROR in ./src/pages/account.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/account.js 10:0-42 65:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app

ERROR in ./src/pages/home.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/home.js 16:0-42 136:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app

ERROR in ./src/pages/index.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/index.js 10:0-42 35:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app

ERROR in ./src/pages/pw-forget.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/pw-forget.js 10:0-42 36:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app

ERROR in ./src/pages/signin.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/signin.js 10:0-42 50:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app

ERROR in ./src/pages/signup.js
Module not found: Error: Can't resolve '../components/Layout' in '/media/sdb1/dev/rnd/experiments/gatsby-firebase-authentication/src/pages'
 @ ./src/pages/signup.js 10:0-42 36:29-35
 @ ./.cache/sync-requires.js
 @ ./.cache/app.js
 @ multi ./node_modules/react-hot-loader/patch.js (webpack)-hot-middleware/client.js?path=http://localhost:8000/__webpack_hmr&reload=true&overlay=false ./.cache/app
ℹ 「wdm」: Failed to compile.

An in-range update of firebase is breaking the build 🚨

The dependency firebase was updated from 5.5.5 to 5.5.6.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

firebase is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.39 to 2.0.40.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 7 commits.

  • 9dc09b7 chore(release): Publish
  • a6d17d8 fix(gatsby-plugin-page-creator): ensure that tests directory is actually ignored (#9720)
  • 88a671a fix: revert admin redirect (#9728)
  • 5b4e0b5 fix: adjust page order to make nested matchPaths work (#9719)
  • 5dc9346 feat(gatsby-plugin-sharp): cache base64 if possible (#9059)
  • 0496ce9 chore(release): Publish
  • 430e8f1 fix(gatsby-plugin-offline): Serve the offline shell for short URLs + use no-cors for external resources (#9679)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Losing firebase user on page reload

Hello!

This is really great, thanks for building!

Ran into a small issue today while building from the starter. When you reload the page you'll loose the firebase user and hence any content behind the auth. If you navigate to a different page and then back it'll re-appear.

Thanks again.

An in-range update of react is breaking the build 🚨

There have been updates to the react monorepo:

    • The dependency react was updated from 16.6.0 to 16.6.1.
  • The dependency react-dom was updated from 16.6.0 to 16.6.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the react group definition.

react is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for v16.6.1

16.6.1 (November 6, 2018)

React DOM

  • Fallback should not remount every time a promise resolves. (@acdlite in #14083)
  • Fix bug where Suspense keeps showing fallback even after everything finishes loading. (@acdlite in #14083)
  • Fix unresolved default props in lifecycle methods of a lazy component. (@gaearon in #14112)
  • Fix bug when recovering from an error thrown during complete phase. (@gaearon in #14104)

Scheduler (Experimental)

  • Switch from deadline object to shouldYield API. (@acdlite in #14025)
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.33 to 2.0.34.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 8 commits.

  • e4a1454 chore(release): Publish
  • 64d9541 Add usehooks.com (#9532)
  • 0f2913d [www] Make iPhone X compatible (#9449)
  • 3d62117 Update index.md (#9535)
  • 32a7410 docs: "Building a site with authentication" page is no longer a stub (#9502)
  • 85cf8eb Update actions.js (#9534)
  • c334075 feat(gatsby): use json-stream-stringify to serialize redux state (#9370)
  • a0f404d docs: fix link issues in recipes page (#9529)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Star Repository Link Goes To Wrong Repo

The link on the Star Repository on the live demo for the GatsbyJS Starter sends to a different repo. I tried looking where the link was being made and send a PR to fix but see no sign of anywhere in the code on this repo where the footer on that demo comes from.

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.38 to 2.0.39.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 31 commits.

  • 864ac04 chore(release): Publish
  • 401df07 fix: ensure babel-preset-gatsby can be used with unit tests (#9629)
  • bbf1f15 feat(www): Filter posts by date (#9400)
  • b7d3b74 fix(blog): azure blog post url date (#9718)
  • 13cc55c feat(blog): Add post on publishing to Azure (#8868)
  • 3a0b04e Emphasize importance of promise return on source-plugin docs (#9650)
  • 1be3df7 docs(browser-apis): fix replaceHydrateFunction JSDoc comment (#9701)
  • d9f88d9 feat(showcase): add Ramon Chancay site (#9710)
  • 2be8532 feat(using-gatsby-image): refresh design, switch to emotion (#9377)
  • c19e666 feat(starters): add gatsby-starter-storybook (#9697)
  • 4bcc233 feat(www): Update showcase (#9700)
  • 1e862d8 feat(starters): add Kentico Cloud starter (#9566)
  • 099d47e fix(gatsby-plugin-layout): log uncaught errors in old browsers (#9635)
  • b275f8a feat(showcase): add foxcircus.it (#9628)
  • 9177fc6 feat(gatsby-source-wordpress): allow users to obtain JWT Token to make authenticated requests (#9509)

There are 31 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

The dependency gatsby was updated from 2.0.34 to 2.0.35.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 20 commits.

  • ce24780 chore(release): Publish
  • 6cb7762 Feature: placeholderClass prop for gatsby-image (#9187)
  • 49d4da1 Add start script to package.json in gatsby/examples/* (#9570)
  • ba5aa4d Minor typo corrections for gatsby-style-guide.md (#9510)
  • 5fc3d15 Edit sites.yml. Edit Caddy smells like trees (#9278)
  • 6bbc4f0 docs: add section on multiple layouts to gatsby-layout-plugin docs (#9538)
  • 43c1264 Update index.md (#9562)
  • f2ac164 Fix consistency with "and" rather than ampersands and usage of serial… (#9546)
  • 93dfe10 docs: fill out static folder stub (#9287)
  • dc867db minor grammatical fixes (#9530)
  • 886840c feat(starters): add mhadaily/gatsby-starter-typescript-power-blog (#9519)
  • 795988b fix(www): Containter component may have class: 'undefined'. (#9537)
  • c62556e feat(starters): add gatsby-starter-calpa-blog (#9541)
  • ea7bd6b feat(starters): add gatsby-starter-i18n-blog (#9545)
  • b5b43d5 fix(gatsby): fix crash on inferring input type with missing node (#9487)

There are 20 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gatsby is breaking the build 🚨

There have been updates to the gatsby monorepo:

    • The dependency gatsby was updated from 2.0.58 to 2.0.59.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the gatsby group definition.

gatsby is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.