From 900adca59de2e1f227392163b693c5eb21a3cc44 Mon Sep 17 00:00:00 2001 From: Michael <184316+muescha@users.noreply.github.com> Date: Wed, 18 Mar 2020 13:55:34 +0100 Subject: [PATCH 01/34] changed Github to GitHub (#22364) --- docs/docs/deploying-to-cloudflare-workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/deploying-to-cloudflare-workers.md b/docs/docs/deploying-to-cloudflare-workers.md index 845a06df577bc..bc88ffa1f179e 100644 --- a/docs/docs/deploying-to-cloudflare-workers.md +++ b/docs/docs/deploying-to-cloudflare-workers.md @@ -121,4 +121,4 @@ Set up `CF_API_TOKEN` in GitHub secrets with appropriate values from [Quick Star ## Additional resources - [Quickstart for Workers Sites](https://developers.cloudflare.com/workers/sites/start-from-existing/) -- [Github Action wrangler plugin](https://github.com/cloudflare/wrangler-action) +- [GitHub Action wrangler plugin](https://github.com/cloudflare/wrangler-action) From 75621993fadb6c0d5d699652c01e691a7aad5ca8 Mon Sep 17 00:00:00 2001 From: Thomas Wang Date: Wed, 18 Mar 2020 06:09:41 -0700 Subject: [PATCH 02/34] updating my twitter! (#22374) --- docs/blog/2019-03-15-design-code-blog-post/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blog/2019-03-15-design-code-blog-post/index.md b/docs/blog/2019-03-15-design-code-blog-post/index.md index fa691d1d424f4..5363a318dea49 100644 --- a/docs/blog/2019-03-15-design-code-blog-post/index.md +++ b/docs/blog/2019-03-15-design-code-blog-post/index.md @@ -16,7 +16,7 @@ Design+Code started in 2015 when Meng To began with a digital book on designing ![](./images/cyfa.png) -[Thomas Wang](https://twitter.com/thomaswangio "Twitter"), UI Developer at Design+Code, shared some of the important details of the rebuild, as well as the benefits their Gatsby-fueled site has provided their new offerings. +[Thomas Wang](https://twitter.com/ThomasWang "Twitter"), UI Developer at Design+Code, shared some of the important details of the rebuild, as well as the benefits their Gatsby-fueled site has provided their new offerings. We needed a new CMS to handle the amount of content we were creating and a From 00d4b3814cc2c9eeabe1b28ba8d06eecac266c42 Mon Sep 17 00:00:00 2001 From: Michael Uloth Date: Wed, 18 Mar 2020 09:53:38 -0400 Subject: [PATCH 03/34] Add video tutorials to awesome-gatsby-resources.md (#22380) --- docs/docs/awesome-gatsby-resources.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs/awesome-gatsby-resources.md b/docs/docs/awesome-gatsby-resources.md index ea92037f01924..dde2c9fd81c00 100644 --- a/docs/docs/awesome-gatsby-resources.md +++ b/docs/docs/awesome-gatsby-resources.md @@ -93,6 +93,7 @@ See the [unofficial list of themes](https://gatsbytemplates.io/) - [Deploying Your First Gatsby Site to Netlify](https://scotch.io/tutorials/deploying-your-first-gatsby-site-to-netlify) - [Add a chat widget to your Gatsby blog](https://pusher.com/tutorials/chat-gatsby/) - [Headless WordPress: Why Gatsby Should Be Next on Your List of Things to Learn](https://deliciousbrains.com/gatsby-headless-wordpress/) +- [Gatsby Tutorials \[video series\] — Michael Uloth](https://www.youtube.com/watch?v=jAa1wh5ATm0&list=PLHBEcHVSROXQQhXpNhmiVKKcw72Cc0V-U) ### German From e58fe16cf08e9ffc1a222e699d4339354d69c774 Mon Sep 17 00:00:00 2001 From: Daiki Ihara Date: Wed, 18 Mar 2020 23:09:47 +0900 Subject: [PATCH 04/34] chore(gatsby): migrate webpack-plugins to TypeScript (#22378) --- .../{webpack-plugins.js => webpack-plugins.ts} | 14 +++++--------- packages/gatsby/src/utils/webpack-utils.js | 12 ++++++------ 2 files changed, 11 insertions(+), 15 deletions(-) rename packages/gatsby/src/utils/{webpack-plugins.js => webpack-plugins.ts} (88%) diff --git a/packages/gatsby/src/utils/webpack-plugins.js b/packages/gatsby/src/utils/webpack-plugins.ts similarity index 88% rename from packages/gatsby/src/utils/webpack-plugins.js rename to packages/gatsby/src/utils/webpack-plugins.ts index 3c4e8fa6a30d0..269aeb9f9489a 100644 --- a/packages/gatsby/src/utils/webpack-plugins.js +++ b/packages/gatsby/src/utils/webpack-plugins.ts @@ -1,13 +1,11 @@ -// @flow +import webpack, { Plugin } from "webpack" -const webpack = require(`webpack`) - -const plugin = (name, optimize) => { - const Plugin = (optimize ? webpack.optimize : webpack)[name] - return (...args: any) => new Plugin(...args) +const plugin = (name: string, optimize?: boolean): Plugin => { + const WebpackPlugin = (optimize ? webpack.optimize : webpack)[name] + return (...args: any): Plugin => new WebpackPlugin(...args) } -const plugins = { +export const builtinPlugins = { normalModuleReplacement: plugin(`NormalModuleReplacementPlugin`), contextReplacement: plugin(`ContextReplacementPlugin`), ignore: plugin(`IgnorePlugin`), @@ -53,5 +51,3 @@ const plugins = { occurrenceOrder: plugin(`OccurrenceOrderPlugin`, true), moduleConcatenation: plugin(`ModuleConcatenationPlugin`, true), } - -module.exports = plugins diff --git a/packages/gatsby/src/utils/webpack-utils.js b/packages/gatsby/src/utils/webpack-utils.js index 5e42bdf321e5c..f9aa0fb587fa9 100644 --- a/packages/gatsby/src/utils/webpack-utils.js +++ b/packages/gatsby/src/utils/webpack-utils.js @@ -11,7 +11,7 @@ const isWsl = require(`is-wsl`) const GatsbyWebpackStatsExtractor = require(`./gatsby-webpack-stats-extractor`) const GatsbyWebpackEslintGraphqlSchemaReload = require(`./gatsby-webpack-eslint-graphql-schema-reload-plugin`) -const builtinPlugins = require(`./webpack-plugins`) +import { builtinPlugins } from "./webpack-plugins" const eslintConfig = require(`./eslint-config`) type LoaderSpec = string | { loader: string, options?: Object } @@ -132,7 +132,7 @@ module.exports = async ({ const makeExternalOnly = (original: RuleFactory<*>) => ( options = {} ): Rule => { - let rule = original(options) + const rule = original(options) rule.include = vendorRegex return rule } @@ -140,7 +140,7 @@ module.exports = async ({ const makeInternalOnly = (original: RuleFactory<*>) => ( options = {} ): Rule => { - let rule = original(options) + const rule = original(options) rule.exclude = vendorRegex return rule } @@ -307,7 +307,7 @@ module.exports = async ({ * and packages that depend on `gatsby` */ { - let js = ({ modulesThatUseGatsby = [], ...options } = {}) => { + const js = ({ modulesThatUseGatsby = [], ...options } = {}) => { return { test: /\.(js|mjs|jsx)$/, include: modulePath => { @@ -342,7 +342,7 @@ module.exports = async ({ * Excludes modules that use Gatsby since the `rules.js` already transpiles those */ { - let dependencies = ({ modulesThatUseGatsby = [] } = {}) => { + const dependencies = ({ modulesThatUseGatsby = [] } = {}) => { const jsOptions = { babelrc: false, configFile: false, @@ -391,7 +391,7 @@ module.exports = async ({ } { - let eslint = schema => { + const eslint = schema => { return { enforce: `pre`, test: /\.jsx?$/, From d052ac4773c32e9a10003ebbb4f9780309a042dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20R=20Pearson?= Date: Wed, 18 Mar 2020 16:41:59 +0200 Subject: [PATCH 05/34] Put install in its own code block (#22359) * Put install in its own code block This makes it easier for people to copy the snippet. I believe this is also consistent with other doc pages. * Remove --save from typography install snippet Co-Authored-By: LB Co-authored-by: LB --- docs/docs/typography-js.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/docs/typography-js.md b/docs/docs/typography-js.md index 8e6d9f96a6c4a..a3350c25b2116 100644 --- a/docs/docs/typography-js.md +++ b/docs/docs/typography-js.md @@ -10,7 +10,11 @@ Typography.js is a JavaScript library that allows you to explore the typographic Gatsby has the plugin `gatsby-plugin-typography` to integrate Typography.js into your project. -You can install the plugin and its peer dependencies into your project by running the command `npm install gatsby-plugin-typography react-typography typography --save` +You can install the plugin and its peer dependencies into your project by running the following command: + +```shell +npm install gatsby-plugin-typography react-typography typography +``` After the installation of the plugin is complete, navigate to your `gatsby-config.js` file located in the root of your project's directory and add the plugin to the configuration: From 89ca9f428b9cb99d7658959112eca6127d78fb67 Mon Sep 17 00:00:00 2001 From: Tiffany Brown Date: Wed, 18 Mar 2020 07:57:07 -0700 Subject: [PATCH 06/34] Add docs/glossary/build article (#22149) * Add Build article, update doc-links and glossary.md Added a link to Build article from the Continuous Deployment entry. * docs/glossary/build: Use relative links, remove a repetitive graf. * Update docs/docs/glossary/build.md * Update docs/docs/glossary/build.md * Update docs/docs/glossary/build.md Co-authored-by: Aisha Blake --- docs/docs/glossary.md | 2 +- docs/docs/glossary/build.md | 33 +++++++++++++++++++++ docs/docs/glossary/continuous-deployment.md | 2 +- www/src/data/sidebars/doc-links.yaml | 2 ++ 4 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 docs/docs/glossary/build.md diff --git a/docs/docs/glossary.md b/docs/docs/glossary.md index a4f00d81dcb48..c6862a944c637 100644 --- a/docs/docs/glossary.md +++ b/docs/docs/glossary.md @@ -34,7 +34,7 @@ A tool that lets you write the most modern [JavaScript](#javascript), and on [bu The behind the scenes that the [public](#public) does not see. This often refers to the control panel of your [CMS](#cms). These are often powered by server-side programming languages such as Node.js, PHP, Go, ASP.net, Ruby, or Java. -### Build +### [Build](/docs/glossary/build/) In Gatsby, this is the process of taking your code and content and packaging it into a website that can be hosted and accessed. Commonly referred to as _build time_. See also: [backend](#backend) and [server-side](#server-side). diff --git a/docs/docs/glossary/build.md b/docs/docs/glossary/build.md new file mode 100644 index 0000000000000..66ad97ab801cd --- /dev/null +++ b/docs/docs/glossary/build.md @@ -0,0 +1,33 @@ +--- +title: Build +disableTableOfContents: true +--- + +Learn what _build_ means and how to set up a build process for your Gatsby project. + +## What is a build? + +_Build_ refers to the process of compiling your site. During a build, or at _build time_, your project gets transformed from component files to optimized HTML, CSS, and JavaScript files that you can [deploy](/docs/glossary#deploy) to your hosting provider. + +There are a few ways to create a build. You can build your site locally on your computer using the [Gatsby CLI](/docs/gatsby-cli/#build), and then deploy changes to your [host](/docs/glossary#hosting). If you use [Gatsby Cloud](https://www.gatsbyjs.com/), you can take advantage of [Gatsby Builds](/blog/2020-01-27-announcing-gatsby-builds-and-reports/), a feature available with every Gatsby Cloud account. You can also use a [continuous deployment](/docs/glossary/continuous-deployment/) service such as [AWS Amplify](/docs/deploying-to-aws-amplify/) or [Netlify](/docs/deploying-to-netlify/). + +For larger teams or larger projects, you may want to use a continuous deployment approach to create builds. Each CD/CI service works slightly differently. Almost all of them, however, use the contents of a Git repository to build your site. + +Gatsby Cloud, for example, integrates with [GitHub](https://github.com/), and a number of hosted [content management systems](/docs/glossary#cms). Gatsby Cloud creates a new build after every commit or content change, although you can also trigger a build manually. + +### Using Gatsby CLI + +For smaller teams and projects, use `gatsby build`. The `gatsby build` command is part of the Gatsby command line interface (or CLI). You'll need to install the CLI interface to create a site with Gatsby. Install it globally using [npm](/docs/glossary/#npm). + +```shell +npm install -g gatsby-cli +``` + +Installing `gatsby-cli` globally makes Gatsby commands available system-wide. You'll use `gatsby new` to [create a new site](/tutorial/part-zero/#create-a-gatsby-site), and `gatsby develop` to start a development server on your local machine. + +When you're ready to publish your project, run the `gatsby build` command to create a production-ready version of your site. Once built, you can use an SFTP client, the [rsync](https://en.wikipedia.org/wiki/Rsync) utility, or similar tool to transfer these files to your host. + +### Learn more about builds + +- [Deploying and Hosting](/docs/deploying-and-hosting/) from the Gatsby docs +- How to enable super fast [Distributed Builds](https://www.gatsbyjs.com/docs/distributed-builds/) for Gatsby Cloud diff --git a/docs/docs/glossary/continuous-deployment.md b/docs/docs/glossary/continuous-deployment.md index 763d19cdee9d0..80a26498eed75 100644 --- a/docs/docs/glossary/continuous-deployment.md +++ b/docs/docs/glossary/continuous-deployment.md @@ -5,7 +5,7 @@ disableTableOfContents: true ## What is continuous deployment? -Continuous deployment (CD) is the automation of code deployments. In a continuous deployment system, you don't push a Deploy button or run a `deploy` command. Instead, you build a _pipeline_ — a process that builds and releases code automatically, without human intervention. +Continuous deployment (CD) is the automation of code deployments. In a continuous deployment system, you don't push a Deploy button or run a `deploy` command. Instead, you build a _pipeline_ — a process that [builds](/docs/glossary/build/) and releases code automatically, without human intervention. You'll most likely use a service to create your continuous deployment pipeline. Services such as [Netlify](http://netlify.com/), [AWS Amplify](https://aws.amazon.com/amplify/), [Azure](https://azure.microsoft.com/en-us/), and [Zeit](https://zeit.co/) are popular with Gatsby users. Or you can use [Gatsby Builds](/blog/2020-01-27-announcing-gatsby-builds-and-reports/), a feature of the [Gatsby Cloud](https://www.gatsbyjs.com/) service. diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index 3198a8970f04d..0c06175370d16 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -746,6 +746,8 @@ - title: Glossary link: /docs/glossary/ items: + - title: Build + link: /docs/glossary/build/ - title: Continuous Deployment link: /docs/glossary/continuous-deployment/ - title: Decoupled Drupal From 7095e418b30989e671899aee68fe25afca82a89c Mon Sep 17 00:00:00 2001 From: Dan Kirkham Date: Wed, 18 Mar 2020 14:59:31 +0000 Subject: [PATCH 07/34] Expand on stale handling for gatsby sites (#22230) * Expand on stale handling for gatsby sites * Update docs/docs/gatsby-link.md Co-Authored-By: LB * Update docs/docs/gatsby-link.md Co-Authored-By: LB * Update gatsby-link.md * Update docs/docs/gatsby-link.md Co-Authored-By: LB * chore: format Co-authored-by: LB Co-authored-by: gatsbybot --- docs/docs/gatsby-link.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docs/gatsby-link.md b/docs/docs/gatsby-link.md index 7ec5089fe0071..154e4c907c6da 100644 --- a/docs/docs/gatsby-link.md +++ b/docs/docs/gatsby-link.md @@ -389,6 +389,16 @@ onClick = () => { } ``` +## Handling stale client-side pages + +Gatsby's `` component will only fetch each page's resources once. Updates to pages on the site are not reflected in the browser as they are effectively "locked in time". This can have the undesirable impact of different users having different views of the content. + +In order to prevent this staleness, Gatsby requests an additional resource on each new page load: `app-data.json`. This contains a hash generated when the site is built; if anything in the `src` directory changes, the hash will change. During page loads, if Gatsby sees a different hash in the `app-data.json` than the hash it initially retrieved when the site first loaded, the browser will navigate using `window.location`. The browser fetches the new page and starts over again, so any cached resources are lost. + +However, if the page has previously loaded, it will not re-request `app-data.json`. In that case, the hash comparison will not occur and the previously loaded content will be used. + +> **Note:** Any state will be lost during the `window.location` transition. This can have an impact if there is a reliance on state management, e.g. tracking state in [wrapPageElement](/docs/browser-apis/#wrapPageElement) or via a library like Redux. + ## Additional resources - [Authentication tutorial for client-only routes](/tutorial/authentication-tutorial/) From 4f1fca913a927208eb739584ccbd72786808f1e0 Mon Sep 17 00:00:00 2001 From: Jongwoo Han <44025432+jongwooo@users.noreply.github.com> Date: Thu, 19 Mar 2020 02:37:38 +0900 Subject: [PATCH 08/34] chore(starters): update gatsby-starter-typescript (#22025) Co-authored-by: gatsbybot --- docs/starters.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/starters.yml b/docs/starters.yml index 8fea1175f495a..2f95a3fc5330a 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5256,13 +5256,17 @@ - ✔️ Highly optimized (Lighthouse score 4 x 100) - url: https://gatsby-starter-typescript-deploy.netlify.com/ repo: https://github.com/jongwooo/gatsby-starter-typescript - description: Typescript version of the default Gatsby starter🔮 + description: TypeScript version of the default Gatsby starter🔮 tags: - Language:TypeScript + - Linting - Netlify features: - - Typescript version starter based on the official default - - Prettier + - ✔️ Gatsby + - ✔️ TypeScript + - ✔️ Prettier + - ✔️ ESLint + - ✔️ Deploy to Netlify through GitHub Actions - url: https://answer.netlify.com/ repo: https://github.com/passwd10/gatsby-starter-answer description: A simple Gatsby blog to show your Future Action on top of the page From 9894703029b3772780c5022115beb1d70c4e428b Mon Sep 17 00:00:00 2001 From: Wojciech Kocjan Date: Wed, 18 Mar 2020 18:39:40 +0100 Subject: [PATCH 09/34] chore(starters): add gatsby-airtable-listing (#22336) Co-authored-by: gatsbybot --- docs/starters.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/starters.yml b/docs/starters.yml index 2f95a3fc5330a..455357633ae09 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5620,3 +5620,20 @@ - Styled 404 page - Lightweight - Styled Components +- url: https://gatsby-airtable-listing.netlify.com/ + repo: https://github.com/wkocjan/gatsby-airtable-listing + description: Airtable theme for Gatsby + tags: + - Airtable + - SEO + - Styling:Tailwind + features: + - Airtable integration + - Modals with previous/next navigation + - Responsive design + - Uses TailwindCSS for styling + - Font Awesome icons + - Clean minimalist design + - SEO optimized + - Robots.txt + - OpenGraph structured data From 64a367e206dd232ea83a97b2f0fc4f77606b2deb Mon Sep 17 00:00:00 2001 From: Kelvin DeCosta <38982451+kelvindecosta@users.noreply.github.com> Date: Wed, 18 Mar 2020 21:44:49 +0400 Subject: [PATCH 10/34] chore(showcase): Add kelvindecosta.com to site showcase (#22353) --- docs/sites.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/sites.yml b/docs/sites.yml index e7c0eb10d5173..e90d4762b4969 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10055,3 +10055,12 @@ built_by: Built by Rebels Ltd. built_by_url: https://builtbyrebels.com/ featured: false +- title: Kelvin DeCosta's Website + url: https://kelvindecosta.com + main_url: https://kelvindecosta.com + categories: + - Blog + - Portfolio + built_by: Kelvin DeCosta + built_by_url: https://github.com/kelvindecosta + featured: false From d5e7cc60275286517582ed4d32eea098a42b49a9 Mon Sep 17 00:00:00 2001 From: Richard Bruskowski Date: Wed, 18 Mar 2020 19:22:28 +0100 Subject: [PATCH 11/34] chore(showcase): add bruskowski.design to the showcase list (#22343) Adds my design portfolio bruskowski.design to the showcase. Co-authored-by: Kyle Gill --- docs/sites.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/sites.yml b/docs/sites.yml index e90d4762b4969..2581e712f331f 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10055,6 +10055,19 @@ built_by: Built by Rebels Ltd. built_by_url: https://builtbyrebels.com/ featured: false +- title: Design Portfolio of Richard Bruskowski + main_url: https://bruskowski.design/ + url: https://bruskowski.design/ + description: > + My freelance design portfolio: Visual design, digital products, interactive prototypes, design systems, brand design. Uses MDX, Styled Components, Framer Motion. Started with Gatsby Starter Emilia by LekoArts. + categories: + - Design + - Portfolio + - User Experience + - Freelance + - Photography + built_by: Richard Bruskowski + built_by_url: https://github.com/richardbruskowski - title: Kelvin DeCosta's Website url: https://kelvindecosta.com main_url: https://kelvindecosta.com From 9e291e916058e6100bf7f8be59d119f3a44c1639 Mon Sep 17 00:00:00 2001 From: Hashim Warren Date: Wed, 18 Mar 2020 16:14:08 -0400 Subject: [PATCH 12/34] draft(blog) 100DaysOfGatsby Challenge 12 (#22382) * Draft challenge 12 article * chore: format * Fix typo Co-authored-by: gatsbybot --- docs/blog/100days/apps/index.md | 43 +++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 docs/blog/100days/apps/index.md diff --git a/docs/blog/100days/apps/index.md b/docs/blog/100days/apps/index.md new file mode 100644 index 0000000000000..81e30520a9f9e --- /dev/null +++ b/docs/blog/100days/apps/index.md @@ -0,0 +1,43 @@ +--- +title: Challenge 12 - Transform Your Gatsby Website into a Web App +date: 2020-03-18 +author: "Hashim Warren" +excerpt: "Learn how to add dynamic features to your Gatsby site" +tags: ["learning-to-code", "100-Days-of-Gatsby"] +--- + +_Gatsby was named the [#1 new technology to learn in 2020](https://www.cnbc.com/2019/12/02/10-hottest-tech-skills-that-could-pay-off-most-in-2020-says-new-report.html)!_ + +_To help you learn about Gatsby and our ecosystem, we invite you to take the #100DaysOfGatsby challenge! If you are new to Gatsby, you can follow along with our beginner-friendly weekly prompts. Or if you are familiar with Gatsby and want to go deeper, we invite you to [build your first Gatsby Theme](/docs/themes/building-themes/)._ + +_Learn more about [#100DaysOfGatsby here](/blog/100days)!_ + +## Challenge 12: Add Gated Content to Your Website + +Did you know Gatsby can be used for websites as well as dynamic apps? Dustin Schau presented about this topic at Gatsby Days London: + +https://www.youtube.com/watch?v=zeVC-gD3u7M + +For example, if your project needs private routes, or sections of the site that only authenticated users can view, Gatsby can enable that with just a plugin, or by creating a few components from scratch. In the following resources we invite you to try both paths, and experiment with powerful third-party authentication services. + +### Gatsby for Apps Resources + +#### Overview & Examples + +First, get familiar with how [Gatsby works for apps](/docs/adding-app-and-website-functionality/). + +Then [watch this helpful livestream](/blog/2019-03-21-add-auth0-to-gatsby-livestream/) that covers adding an authentication service called Auth0 to your site. + +Lastly, play with live examples of these features by signing in to the [Gatsby Swag Store](https://store.gatsbyjs.org/), and [Gatsby Cloud](https://gatsbyjs.com/cloud) + +#### The Plugin Path + +To get started quickly, use `gatsby-plugin-create-client-paths` to create private client routes in your Gatsby site. [Learn more](/packages/gatsby-plugin-create-client-paths). + +#### The Hand-Rolled Path + +[Read this tutorial and handy illustration](/docs/client-only-routes-and-user-authentication/) that walks you through adding private routes and authentication in Gatsby. + +### What to Do If You Need Help + +If you get stuck during the challenge, you can ask for help from the [Gatsby community](/contributing/community/) and the [ASKGatsbyJS](https://twitter.com/AskGatsbyJS) Twitter account. You can find fellow Gatsby Developers on [Discord](https://discordapp.com/invite/gatsby), [Reddit](https://www.reddit.com/r/gatsbyjs/), [Spectrum](https://spectrum.chat/gatsby-js), and [Dev](https://dev.to/t/gatsby). From 6475398cc4e092b9530f8ca318e9fdfeb3408dc0 Mon Sep 17 00:00:00 2001 From: nibtime <52962482+nibtime@users.noreply.github.com> Date: Wed, 18 Mar 2020 22:03:54 +0100 Subject: [PATCH 13/34] fix(gatsby-plugin-preload-fonts): lookup routes with and without trailing slash (#21890) * lookup routes with and without trailing slash fixes #21814 * use backtick quotes --- packages/gatsby-plugin-preload-fonts/src/gatsby-ssr.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/gatsby-plugin-preload-fonts/src/gatsby-ssr.js b/packages/gatsby-plugin-preload-fonts/src/gatsby-ssr.js index 4699bfd1ea416..ea96d9daa6576 100644 --- a/packages/gatsby-plugin-preload-fonts/src/gatsby-ssr.js +++ b/packages/gatsby-plugin-preload-fonts/src/gatsby-ssr.js @@ -19,11 +19,13 @@ exports.onRenderBody = ( { crossOrigin = `anonymous` } = {} ) => { const cache = loadCache() - if (!cache.assets[pathname]) return + // try to load assets from cache. Consider route with and without trailing slash as lookup key + const cacheEntry = cache.assets[pathname] || cache.assets[pathname + `/`] + if (!cacheEntry) return const props = getLinkProps({ crossOrigin, pathname }) - const assets = Object.keys(cache.assets[pathname]) + const assets = Object.keys(cacheEntry) setHeadComponents( assets.map(href => { From 6bc07b1313aa07ce926530af52166d7b2f715045 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:04:40 -0700 Subject: [PATCH 14/34] chore(release): Publish - gatsby-cli@2.10.12 - gatsby-codemods@1.1.25 - gatsby-graphiql-explorer@0.2.37 - gatsby-plugin-guess-js@1.1.33 - gatsby-plugin-mdx@1.0.84 - gatsby-plugin-netlify-cms@4.1.43 - gatsby-plugin-offline@3.0.42 - gatsby-plugin-preload-fonts@1.0.36 - gatsby-react-router-scroll@2.1.25 - gatsby-remark-images-contentful@2.1.35 - gatsby-source-contentful@2.1.99 - gatsby-source-drupal@3.3.29 - gatsby-source-faker@2.1.24 - gatsby-source-hacker-news@2.2.5 - gatsby-source-lever@2.1.29 - gatsby-source-medium@2.1.23 - gatsby-source-wikipedia@2.1.22 - gatsby-source-wordpress@3.1.73 - gatsby-theme-blog-core@1.2.30 - gatsby-theme-blog@1.3.31 - gatsby-theme-notes@1.1.28 - gatsby-transformer-excel@2.2.24 - gatsby-transformer-screenshot@2.1.54 - gatsby@2.19.46 --- packages/gatsby-cli/CHANGELOG.md | 4 ++++ packages/gatsby-cli/package.json | 2 +- packages/gatsby-codemods/CHANGELOG.md | 4 ++++ packages/gatsby-codemods/package.json | 2 +- packages/gatsby-graphiql-explorer/CHANGELOG.md | 4 ++++ packages/gatsby-graphiql-explorer/package.json | 2 +- packages/gatsby-plugin-guess-js/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-guess-js/package.json | 2 +- packages/gatsby-plugin-mdx/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-mdx/package.json | 2 +- packages/gatsby-plugin-netlify-cms/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-netlify-cms/package.json | 2 +- packages/gatsby-plugin-offline/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-offline/package.json | 2 +- packages/gatsby-plugin-preload-fonts/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-preload-fonts/package.json | 2 +- packages/gatsby-react-router-scroll/CHANGELOG.md | 6 ++++++ packages/gatsby-react-router-scroll/package.json | 2 +- packages/gatsby-remark-images-contentful/CHANGELOG.md | 6 ++++++ packages/gatsby-remark-images-contentful/package.json | 2 +- packages/gatsby-source-contentful/CHANGELOG.md | 7 +++++++ packages/gatsby-source-contentful/package.json | 2 +- packages/gatsby-source-drupal/CHANGELOG.md | 6 ++++++ packages/gatsby-source-drupal/package.json | 2 +- packages/gatsby-source-faker/CHANGELOG.md | 4 ++++ packages/gatsby-source-faker/package.json | 2 +- packages/gatsby-source-hacker-news/CHANGELOG.md | 6 ++++++ packages/gatsby-source-hacker-news/package.json | 2 +- packages/gatsby-source-lever/CHANGELOG.md | 6 ++++++ packages/gatsby-source-lever/package.json | 2 +- packages/gatsby-source-medium/CHANGELOG.md | 6 ++++++ packages/gatsby-source-medium/package.json | 2 +- packages/gatsby-source-wikipedia/CHANGELOG.md | 6 ++++++ packages/gatsby-source-wikipedia/package.json | 2 +- packages/gatsby-source-wordpress/CHANGELOG.md | 6 ++++++ packages/gatsby-source-wordpress/package.json | 2 +- packages/gatsby-theme-blog-core/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog-core/package.json | 6 +++--- packages/gatsby-theme-blog/CHANGELOG.md | 7 +++++++ packages/gatsby-theme-blog/package.json | 6 +++--- packages/gatsby-theme-notes/CHANGELOG.md | 7 +++++++ packages/gatsby-theme-notes/package.json | 6 +++--- packages/gatsby-transformer-excel/CHANGELOG.md | 6 ++++++ packages/gatsby-transformer-excel/package.json | 2 +- packages/gatsby-transformer-screenshot/CHANGELOG.md | 7 +++++++ packages/gatsby-transformer-screenshot/package.json | 2 +- packages/gatsby/CHANGELOG.md | 9 +++++++++ packages/gatsby/package.json | 8 ++++---- 48 files changed, 174 insertions(+), 33 deletions(-) diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 820b770a9648f..b1323af27b6e4 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.10.12](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.10.11...gatsby-cli@2.10.12) (2020-03-18) + +**Note:** Version bump only for package gatsby-cli + ## [2.10.11](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.10.10...gatsby-cli@2.10.11) (2020-03-16) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 5fe53c4ea8de5..1c50788da6c78 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "2.10.11", + "version": "2.10.12", "author": "Kyle Mathews ", "bin": { "gatsby": "lib/index.js" diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md index 03e45b282a7c4..c7a8e6b841d29 100644 --- a/packages/gatsby-codemods/CHANGELOG.md +++ b/packages/gatsby-codemods/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.25](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@1.1.24...gatsby-codemods@1.1.25) (2020-03-18) + +**Note:** Version bump only for package gatsby-codemods + ## [1.1.24](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@1.1.23...gatsby-codemods@1.1.24) (2020-03-16) **Note:** Version bump only for package gatsby-codemods diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 423859cd36056..95e83f1435c46 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-codemods", - "version": "1.1.24", + "version": "1.1.25", "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md index e6fec88a2237f..7ba79f299b144 100644 --- a/packages/gatsby-graphiql-explorer/CHANGELOG.md +++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.37](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@0.2.36...gatsby-graphiql-explorer@0.2.37) (2020-03-18) + +**Note:** Version bump only for package gatsby-graphiql-explorer + ## [0.2.36](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@0.2.35...gatsby-graphiql-explorer@0.2.36) (2020-03-16) **Note:** Version bump only for package gatsby-graphiql-explorer diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index bc71eb0b43b77..3e6f9783951fa 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-graphiql-explorer", - "version": "0.2.36", + "version": "0.2.37", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-guess-js/CHANGELOG.md b/packages/gatsby-plugin-guess-js/CHANGELOG.md index b08c712336020..62c06c856f68a 100644 --- a/packages/gatsby-plugin-guess-js/CHANGELOG.md +++ b/packages/gatsby-plugin-guess-js/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.33](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-guess-js@1.1.32...gatsby-plugin-guess-js@1.1.33) (2020-03-18) + +### Bug Fixes + +- update dependency guess-webpack to ~0.4.17 ([#22319](https://github.com/gatsbyjs/gatsby/issues/22319)) ([770c365](https://github.com/gatsbyjs/gatsby/commit/770c365)) + ## [1.1.32](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-guess-js@1.1.31...gatsby-plugin-guess-js@1.1.32) (2020-03-16) **Note:** Version bump only for package gatsby-plugin-guess-js diff --git a/packages/gatsby-plugin-guess-js/package.json b/packages/gatsby-plugin-guess-js/package.json index 480bdb079e23e..20207ab52369a 100644 --- a/packages/gatsby-plugin-guess-js/package.json +++ b/packages/gatsby-plugin-guess-js/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-guess-js", - "version": "1.1.32", + "version": "1.1.33", "description": "Gatsby plugin providing drop-in integration with Guess.js to enabling using machine learning and analytics data to power prefetching", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index b44111ed160dc..818b8c9e39b7a 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.84](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@1.0.83...gatsby-plugin-mdx@1.0.84) (2020-03-18) + +### Bug Fixes + +- update minor updates in packages ([#22329](https://github.com/gatsbyjs/gatsby/issues/22329)) ([bfb864b](https://github.com/gatsbyjs/gatsby/commit/bfb864b)) + ## [1.0.83](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@1.0.82...gatsby-plugin-mdx@1.0.83) (2020-03-16) **Note:** Version bump only for package gatsby-plugin-mdx diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index 0c59dae696d8b..da78fbdc93b67 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "1.0.83", + "version": "1.0.84", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md index cacbf9f83b9ad..0ed07272de753 100644 --- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.43](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@4.1.42...gatsby-plugin-netlify-cms@4.1.43) (2020-03-18) + +### Bug Fixes + +- update dependency mini-css-extract-plugin ([#22320](https://github.com/gatsbyjs/gatsby/issues/22320)) ([d5c936e](https://github.com/gatsbyjs/gatsby/commit/d5c936e)) + ## [4.1.42](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@4.1.41...gatsby-plugin-netlify-cms@4.1.42) (2020-03-16) **Note:** Version bump only for package gatsby-plugin-netlify-cms diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index bbd5f93c63d9f..48b59364e454d 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify-cms", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "version": "4.1.42", + "version": "4.1.43", "author": "Shawn Erquhart ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index e8af041c8d1ad..b20978fb32f85 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.42](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@3.0.41...gatsby-plugin-offline@3.0.42) (2020-03-18) + +### Bug Fixes + +- **gatsby-plugin-offline:** Run app-shell.js from user cache directory for pnp compatibility ([#22351](https://github.com/gatsbyjs/gatsby/issues/22351)) ([f8b7317](https://github.com/gatsbyjs/gatsby/commit/f8b7317)) + ## [3.0.41](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@3.0.40...gatsby-plugin-offline@3.0.41) (2020-03-16) **Note:** Version bump only for package gatsby-plugin-offline diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index 0ca99bcb4a429..2de8366b39584 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "3.0.41", + "version": "3.0.42", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md index e0848f594a96e..17fd73122ac70 100644 --- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md +++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.36](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@1.0.35...gatsby-plugin-preload-fonts@1.0.36) (2020-03-18) + +### Bug Fixes + +- **gatsby-plugin-preload-fonts:** lookup routes with and without trailing slash ([#21890](https://github.com/gatsbyjs/gatsby/issues/21890)) ([6475398](https://github.com/gatsbyjs/gatsby/commit/6475398)), closes [#21814](https://github.com/gatsbyjs/gatsby/issues/21814) + ## [1.0.35](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@1.0.34...gatsby-plugin-preload-fonts@1.0.35) (2020-03-16) **Note:** Version bump only for package gatsby-plugin-preload-fonts diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index 9bd1449322b86..1f4539b09a5c5 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preload-fonts", "description": "Gatsby plugin for preloading fonts per page", - "version": "1.0.35", + "version": "1.0.36", "author": "Aaron Ross ", "main": "index.js", "bin": { diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md index 6800dfb059c81..ccca13650e1c9 100644 --- a/packages/gatsby-react-router-scroll/CHANGELOG.md +++ b/packages/gatsby-react-router-scroll/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.25](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@2.1.24...gatsby-react-router-scroll@2.1.25) (2020-03-18) + +### Bug Fixes + +- update dependency scroll-behavior ([#22322](https://github.com/gatsbyjs/gatsby/issues/22322)) ([9b8c914](https://github.com/gatsbyjs/gatsby/commit/9b8c914)) + ## [2.1.24](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@2.1.23...gatsby-react-router-scroll@2.1.24) (2020-03-16) **Note:** Version bump only for package gatsby-react-router-scroll diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 88c664aa566fd..1d5e829dcdc42 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-react-router-scroll", "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", - "version": "2.1.24", + "version": "2.1.25", "author": "Jimmy Jia", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md index 6686801c31a2a..f2f49b25b5cec 100644 --- a/packages/gatsby-remark-images-contentful/CHANGELOG.md +++ b/packages/gatsby-remark-images-contentful/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.35](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@2.1.34...gatsby-remark-images-contentful@2.1.35) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [2.1.34](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@2.1.33...gatsby-remark-images-contentful@2.1.34) (2020-03-16) **Note:** Version bump only for package gatsby-remark-images-contentful diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index fc05b9e9d3c20..25e01797be27c 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images-contentful", - "version": "2.1.34", + "version": "2.1.35", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 9e16c1e53bbc4..0b0503eb7abef 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.99](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@2.1.98...gatsby-source-contentful@2.1.99) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) +- **readme:** Update Readme gatsby-source-contentful missing co… ([#22339](https://github.com/gatsbyjs/gatsby/issues/22339)) ([ab59162](https://github.com/gatsbyjs/gatsby/commit/ab59162)) + ## [2.1.98](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@2.1.97...gatsby-source-contentful@2.1.98) (2020-03-16) **Note:** Version bump only for package gatsby-source-contentful diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index aeb024fe0bc70..20aba450e92c9 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.1.98", + "version": "2.1.99", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index aa279e50b7e7c..d24673b83b065 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@3.3.28...gatsby-source-drupal@3.3.29) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [3.3.28](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@3.3.27...gatsby-source-drupal@3.3.28) (2020-03-16) **Note:** Version bump only for package gatsby-source-drupal diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 440a71c541c48..9bb23a6b331a1 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "3.3.28", + "version": "3.3.29", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md index 9010208de2e3c..5a450466d7a04 100644 --- a/packages/gatsby-source-faker/CHANGELOG.md +++ b/packages/gatsby-source-faker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.24](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@2.1.23...gatsby-source-faker@2.1.24) (2020-03-18) + +**Note:** Version bump only for package gatsby-source-faker + ## [2.1.23](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@2.1.22...gatsby-source-faker@2.1.23) (2020-03-16) **Note:** Version bump only for package gatsby-source-faker diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index 9ebfe34c26294..27b49a57b0745 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-faker", "description": "A gatsby plugin to get fake data for testing", - "version": "2.1.23", + "version": "2.1.24", "author": "Pavithra Kodmad", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md index 0427dbc468677..035bb207c9aba 100644 --- a/packages/gatsby-source-hacker-news/CHANGELOG.md +++ b/packages/gatsby-source-hacker-news/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@2.2.4...gatsby-source-hacker-news@2.2.5) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [2.2.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@2.2.3...gatsby-source-hacker-news@2.2.4) (2020-03-16) **Note:** Version bump only for package gatsby-source-hacker-news diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index 3cec2c277b1d8..472d614c6c7ab 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-hacker-news", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "version": "2.2.4", + "version": "2.2.5", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md index 52714e6531bc2..5e29edb6176c1 100644 --- a/packages/gatsby-source-lever/CHANGELOG.md +++ b/packages/gatsby-source-lever/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@2.1.28...gatsby-source-lever@2.1.29) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [2.1.28](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@2.1.27...gatsby-source-lever@2.1.28) (2020-03-16) **Note:** Version bump only for package gatsby-source-lever diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index dca7d49905e42..d4155ac3f2f38 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-lever", "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", - "version": "2.1.28", + "version": "2.1.29", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md index d1decf0e8373b..519f3964b7c68 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.23](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@2.1.22...gatsby-source-medium@2.1.23) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [2.1.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@2.1.21...gatsby-source-medium@2.1.22) (2020-03-16) **Note:** Version bump only for package gatsby-source-medium diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index 520f95e3e0084..44bfd33dc6f0e 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "2.1.22", + "version": "2.1.23", "author": "Robert Vogt ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md index 37a548bee10cf..42df535c7b1af 100644 --- a/packages/gatsby-source-wikipedia/CHANGELOG.md +++ b/packages/gatsby-source-wikipedia/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@2.1.21...gatsby-source-wikipedia@2.1.22) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [2.1.21](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@2.1.20...gatsby-source-wikipedia@2.1.21) (2020-03-16) **Note:** Version bump only for package gatsby-source-wikipedia diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index 6c99d72582f81..b4e6da54833a6 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-wikipedia", - "version": "2.1.21", + "version": "2.1.22", "description": "Gatsby source plugin for pulling articles from Wikipedia", "main": "index.js", "scripts": { diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 2748e4d21e037..95254abe31e5c 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.73](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@3.1.72...gatsby-source-wordpress@3.1.73) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) + ## [3.1.72](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@3.1.71...gatsby-source-wordpress@3.1.72) (2020-03-16) **Note:** Version bump only for package gatsby-source-wordpress diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index d3f329159f7b2..d93ef13f746f8 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-wordpress", "description": "Gatsby source plugin for building websites using the WordPress CMS as a data source.", - "version": "3.1.72", + "version": "3.1.73", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index 8c23f20c10e37..841762a8ef593 100644 --- a/packages/gatsby-theme-blog-core/CHANGELOG.md +++ b/packages/gatsby-theme-blog-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.29...gatsby-theme-blog-core@1.2.30) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.2.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.28...gatsby-theme-blog-core@1.2.29) (2020-03-16) **Note:** Version bump only for package gatsby-theme-blog-core diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json index b1fc3f87bd5fe..485222ba840ef 100644 --- a/packages/gatsby-theme-blog-core/package.json +++ b/packages/gatsby-theme-blog-core/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog-core", - "version": "1.2.29", + "version": "1.2.30", "main": "index.js", "author": "christopherbiscardi (@chrisbiscardi)", "license": "MIT", @@ -19,7 +19,7 @@ "dependencies": { "@mdx-js/mdx": "^1.5.7", "gatsby-core-utils": "^1.0.34", - "gatsby-plugin-mdx": "^1.0.83", + "gatsby-plugin-mdx": "^1.0.84", "gatsby-plugin-sharp": "^2.4.13", "gatsby-remark-copy-linked-files": "^2.1.40", "gatsby-remark-images": "^3.1.50", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.19.45", + "gatsby": "^2.19.46", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index 6c88a96592118..661cedef90160 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.31](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.30...gatsby-theme-blog@1.3.31) (2020-03-18) + +### Bug Fixes + +- update dependency gatsby-plugin-theme-ui ([#22318](https://github.com/gatsbyjs/gatsby/issues/22318)) ([b8167de](https://github.com/gatsbyjs/gatsby/commit/b8167de)) +- update dependency theme-ui ([#22324](https://github.com/gatsbyjs/gatsby/issues/22324)) ([05af9d1](https://github.com/gatsbyjs/gatsby/commit/05af9d1)) + ## [1.3.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.29...gatsby-theme-blog@1.3.30) (2020-03-16) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index 4cb44fbc9697a..3c9438adcaf7b 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.3.30", + "version": "1.3.31", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -29,7 +29,7 @@ "gatsby-plugin-react-helmet": "^3.1.24", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.1.21", - "gatsby-theme-blog-core": "^1.2.29", + "gatsby-theme-blog-core": "^1.2.30", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.19.45", + "gatsby": "^2.19.46", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md index 696d8518b3b66..ed6fdf45bc4d0 100644 --- a/packages/gatsby-theme-notes/CHANGELOG.md +++ b/packages/gatsby-theme-notes/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.28](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.27...gatsby-theme-notes@1.1.28) (2020-03-18) + +### Bug Fixes + +- update dependency gatsby-plugin-theme-ui ([#22318](https://github.com/gatsbyjs/gatsby/issues/22318)) ([b8167de](https://github.com/gatsbyjs/gatsby/commit/b8167de)) +- update dependency theme-ui ([#22324](https://github.com/gatsbyjs/gatsby/issues/22324)) ([05af9d1](https://github.com/gatsbyjs/gatsby/commit/05af9d1)) + ## [1.1.27](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.26...gatsby-theme-notes@1.1.27) (2020-03-16) **Note:** Version bump only for package gatsby-theme-notes diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 1117badc63652..382f4a221576c 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.1.27", + "version": "1.1.28", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.19.45", + "gatsby": "^2.19.46", "react": "^16.12.0", "react-dom": "^16.12.0" }, @@ -39,7 +39,7 @@ "gatsby-core-utils": "^1.0.34", "gatsby-plugin-compile-es6-packages": "^2.1.0", "gatsby-plugin-emotion": "^4.1.25", - "gatsby-plugin-mdx": "^1.0.83", + "gatsby-plugin-mdx": "^1.0.84", "gatsby-plugin-meta-redirect": "^1.1.1", "gatsby-plugin-og-image": "0.0.1", "gatsby-plugin-redirects": "^1.0.0", diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md index 9dfd5bceb7fb0..7d40a45d2928e 100644 --- a/packages/gatsby-transformer-excel/CHANGELOG.md +++ b/packages/gatsby-transformer-excel/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.24](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@2.2.23...gatsby-transformer-excel@2.2.24) (2020-03-18) + +### Bug Fixes + +- update dependency xlsx to ^0.15.6 ([#22326](https://github.com/gatsbyjs/gatsby/issues/22326)) ([bdbc980](https://github.com/gatsbyjs/gatsby/commit/bdbc980)) + ## [2.2.23](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@2.2.22...gatsby-transformer-excel@2.2.23) (2020-03-16) **Note:** Version bump only for package gatsby-transformer-excel diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index e713cfa3ffa89..7f4ba12be1c2f 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-excel", "description": "Gatsby transformer plugin for Excel spreadsheets", - "version": "2.2.23", + "version": "2.2.24", "author": "SheetJS ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md index c8aadb3956d2c..afe26b0c5c60a 100644 --- a/packages/gatsby-transformer-screenshot/CHANGELOG.md +++ b/packages/gatsby-transformer-screenshot/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.54](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@2.1.53...gatsby-transformer-screenshot@2.1.54) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) +- update minor updates in packages ([#22329](https://github.com/gatsbyjs/gatsby/issues/22329)) ([bfb864b](https://github.com/gatsbyjs/gatsby/commit/bfb864b)) + ## [2.1.53](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@2.1.52...gatsby-transformer-screenshot@2.1.53) (2020-03-16) **Note:** Version bump only for package gatsby-transformer-screenshot diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index 4f10cafeda639..970ab72290dec 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "2.1.53", + "version": "2.1.54", "author": "David Beckley ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 97a876fb6b257..0319dbda54466 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.19.46](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.45...gatsby@2.19.46) (2020-03-18) + +### Bug Fixes + +- update dependency axios to ^0.19.2 ([#22317](https://github.com/gatsbyjs/gatsby/issues/22317)) ([91e780f](https://github.com/gatsbyjs/gatsby/commit/91e780f)) +- update dependency mini-css-extract-plugin ([#22320](https://github.com/gatsbyjs/gatsby/issues/22320)) ([d5c936e](https://github.com/gatsbyjs/gatsby/commit/d5c936e)) +- update dependency webpack-stats-plugin to ^0.3.1 ([#22325](https://github.com/gatsbyjs/gatsby/issues/22325)) ([cc75305](https://github.com/gatsbyjs/gatsby/commit/cc75305)) +- update minor updates in packages ([#22329](https://github.com/gatsbyjs/gatsby/issues/22329)) ([bfb864b](https://github.com/gatsbyjs/gatsby/commit/bfb864b)) + ## [2.19.45](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.44...gatsby@2.19.45) (2020-03-16) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 299784246eef4..9c11d2de8c255 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "2.19.45", + "version": "2.19.46", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -71,12 +71,12 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.10.11", + "gatsby-cli": "^2.10.12", "gatsby-core-utils": "^1.0.34", - "gatsby-graphiql-explorer": "^0.2.36", + "gatsby-graphiql-explorer": "^0.2.37", "gatsby-link": "^2.2.31", "gatsby-plugin-page-creator": "^2.1.46", - "gatsby-react-router-scroll": "^2.1.24", + "gatsby-react-router-scroll": "^2.1.25", "gatsby-telemetry": "^1.1.56", "glob": "^7.1.6", "got": "8.3.2", From d65fb3c4f42f3b3b4bab26ccc2240962c74ea9e5 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:11:07 -0700 Subject: [PATCH 15/34] fix(gatsby-cli): Fix import (#22388) --- packages/gatsby-cli/src/reporter/loggers/ink/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-cli/src/reporter/loggers/ink/cli.js b/packages/gatsby-cli/src/reporter/loggers/ink/cli.js index 53e35a55dec3f..221f4200f7b9a 100644 --- a/packages/gatsby-cli/src/reporter/loggers/ink/cli.js +++ b/packages/gatsby-cli/src/reporter/loggers/ink/cli.js @@ -1,6 +1,6 @@ import React from "react" import { Box, Static } from "ink" -import isTTY from "../../../util/is-tty" +import { isTTY } from "../../../util/is-tty" import { trackBuildError } from "gatsby-telemetry" import { Spinner } from "../ink/components/spinner" From c76becb35b1e7e5b9ff3a2629a448eab2fd5d868 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:11:44 -0700 Subject: [PATCH 16/34] chore(release): Publish - gatsby-cli@2.10.13 - gatsby-theme-blog-core@1.2.31 - gatsby-theme-blog@1.3.32 - gatsby-theme-notes@1.1.29 - gatsby@2.19.47 --- packages/gatsby-cli/CHANGELOG.md | 6 ++++++ packages/gatsby-cli/package.json | 2 +- packages/gatsby-theme-blog-core/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog-core/package.json | 4 ++-- packages/gatsby-theme-blog/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog/package.json | 6 +++--- packages/gatsby-theme-notes/CHANGELOG.md | 4 ++++ packages/gatsby-theme-notes/package.json | 4 ++-- packages/gatsby/CHANGELOG.md | 4 ++++ packages/gatsby/package.json | 4 ++-- 10 files changed, 32 insertions(+), 10 deletions(-) diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index b1323af27b6e4..bc95504a21953 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.10.13](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.10.12...gatsby-cli@2.10.13) (2020-03-18) + +### Bug Fixes + +- **gatsby-cli:** Fix import ([#22388](https://github.com/gatsbyjs/gatsby/issues/22388)) ([d65fb3c](https://github.com/gatsbyjs/gatsby/commit/d65fb3c)) + ## [2.10.12](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.10.11...gatsby-cli@2.10.12) (2020-03-18) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 1c50788da6c78..3d2b81f1c62f9 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "2.10.12", + "version": "2.10.13", "author": "Kyle Mathews ", "bin": { "gatsby": "lib/index.js" diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index 841762a8ef593..5d8fe7ba895f4 100644 --- a/packages/gatsby-theme-blog-core/CHANGELOG.md +++ b/packages/gatsby-theme-blog-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.31](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.30...gatsby-theme-blog-core@1.2.31) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.2.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.29...gatsby-theme-blog-core@1.2.30) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog-core diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json index 485222ba840ef..c0ef4adc67f05 100644 --- a/packages/gatsby-theme-blog-core/package.json +++ b/packages/gatsby-theme-blog-core/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog-core", - "version": "1.2.30", + "version": "1.2.31", "main": "index.js", "author": "christopherbiscardi (@chrisbiscardi)", "license": "MIT", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.19.46", + "gatsby": "^2.19.47", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index 661cedef90160..075229af95fba 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.32](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.31...gatsby-theme-blog@1.3.32) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.3.31](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.30...gatsby-theme-blog@1.3.31) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index 3c9438adcaf7b..63045c3024e4b 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.3.31", + "version": "1.3.32", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -29,7 +29,7 @@ "gatsby-plugin-react-helmet": "^3.1.24", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.1.21", - "gatsby-theme-blog-core": "^1.2.30", + "gatsby-theme-blog-core": "^1.2.31", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.19.46", + "gatsby": "^2.19.47", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md index ed6fdf45bc4d0..04a25d4ce97aa 100644 --- a/packages/gatsby-theme-notes/CHANGELOG.md +++ b/packages/gatsby-theme-notes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.28...gatsby-theme-notes@1.1.29) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.1.28](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.27...gatsby-theme-notes@1.1.28) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 382f4a221576c..ad0845b33f102 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.1.28", + "version": "1.1.29", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.19.46", + "gatsby": "^2.19.47", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 0319dbda54466..d55b86d625ceb 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.19.47](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.46...gatsby@2.19.47) (2020-03-18) + +**Note:** Version bump only for package gatsby + ## [2.19.46](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.45...gatsby@2.19.46) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 9c11d2de8c255..85803152fa15c 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "2.19.46", + "version": "2.19.47", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -71,7 +71,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.10.12", + "gatsby-cli": "^2.10.13", "gatsby-core-utils": "^1.0.34", "gatsby-graphiql-explorer": "^0.2.37", "gatsby-link": "^2.2.31", From df7e93d993a0adf5a68dcef4fd2e3f64da45b065 Mon Sep 17 00:00:00 2001 From: Michael Maurer Date: Wed, 18 Mar 2020 18:18:16 -0400 Subject: [PATCH 17/34] fix(gatsby-image): When art-directing images, default the padding aspect ratio to first image without a media query when no media query matches (#21431) * Default to image without a media query when no media queries match window. * update snapshots and change aspect ratio so padding is rational --- .../src/__tests__/__snapshots__/index.js.snap | 14 ++--- packages/gatsby-image/src/__tests__/index.js | 51 +++++++++++++++++-- packages/gatsby-image/src/index.js | 8 +++ 3 files changed, 62 insertions(+), 11 deletions(-) diff --git a/packages/gatsby-image/src/__tests__/__snapshots__/index.js.snap b/packages/gatsby-image/src/__tests__/__snapshots__/index.js.snap index 0936ecb7472dd..5f87b56af2fe4 100644 --- a/packages/gatsby-image/src/__tests__/__snapshots__/index.js.snap +++ b/packages/gatsby-image/src/__tests__/__snapshots__/index.js.snap @@ -176,7 +176,7 @@ exports[` should render multiple fixed image variants 1`] = ` aria-hidden="true" class="placeholder" itemprop="item-prop-for-the-image" - src="other_string_of_base64" + src="string_of_base64" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1; transition-delay: 500ms; color: red;" title="Title for the image" /> @@ -204,15 +204,15 @@ exports[` should render multiple fixed image variants 1`] = ` height="100" itemprop="item-prop-for-the-image" loading="lazy" - src="test_image_2.jpg" - srcset="some other srcSet" + src="test_image.jpg" + srcset="some srcSet" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 500ms;" title="Title for the image" width="100" /> @@ -278,14 +278,14 @@ exports[` should render multiple fluid image variants 1`] = ` itemprop="item-prop-for-the-image" loading="lazy" sizes="(max-width: 600px) 100vw, 600px" - src="test_image_2.jpg" - srcset="some other srcSet" + src="test_image.jpg" + srcset="some srcSet" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 500ms;" title="Title for the image" /> diff --git a/packages/gatsby-image/src/__tests__/index.js b/packages/gatsby-image/src/__tests__/index.js index c92973fa700fd..34c6e1c13595b 100644 --- a/packages/gatsby-image/src/__tests__/index.js +++ b/packages/gatsby-image/src/__tests__/index.js @@ -33,8 +33,8 @@ const fixedImagesShapeMock = [ base64: `string_of_base64`, }, { - width: 100, - height: 100, + width: 300, + height: 300, src: `test_image_2.jpg`, srcSet: `some other srcSet`, srcSetWebp: `some other srcSetWebp`, @@ -45,7 +45,7 @@ const fixedImagesShapeMock = [ const fluidImagesShapeMock = [ { - aspectRatio: 1.5, + aspectRatio: 2, src: `test_image.jpg`, srcSet: `some srcSet`, srcSetWebp: `some srcSetWebp`, @@ -53,7 +53,7 @@ const fluidImagesShapeMock = [ base64: `string_of_base64`, }, { - aspectRatio: 2, + aspectRatio: 3, src: `test_image_2.jpg`, srcSet: `some other srcSet`, srcSetWebp: `some other srcSetWebp`, @@ -121,6 +121,7 @@ const setupImages = ( describe(``, () => { const OLD_MATCH_MEDIA = window.matchMedia beforeEach(() => { + // None of the media conditions above match. window.matchMedia = jest.fn(media => media === `only screen and (min-width: 1024px)` ? { @@ -280,6 +281,48 @@ describe(``, () => { ) }) + it(`should select the image with no media query as mocked image of fluid variants provided.`, () => { + const { container } = render( + {`Alt + ) + const aspectPreserver = container.querySelector(`div div div`) + expect(aspectPreserver.getAttribute(`style`)).toEqual( + expect.stringMatching(/padding-bottom: 50%/) + ) + }) + + it(`should select the image with no media query as mocked image of fixed variants provided.`, () => { + const { container } = render( + {`Alt + ) + const aspectPreserver = container.querySelector(`div div`) + expect(aspectPreserver.getAttribute(`style`)).toEqual( + expect.stringMatching(/width: 100px; height: 100px;/) + ) + }) + it(`should call onLoad and onError image events`, () => { const onLoadMock = jest.fn() const onErrorMock = jest.fn() diff --git a/packages/gatsby-image/src/index.js b/packages/gatsby-image/src/index.js index 29e45495a1532..d575531bf7f36 100644 --- a/packages/gatsby-image/src/index.js +++ b/packages/gatsby-image/src/index.js @@ -91,6 +91,14 @@ const getCurrentSrcData = currentData => { if (foundMedia !== -1) { return currentData[foundMedia] } + + // No media matches, select first element without a media condition + const noMedia = currentData.findIndex( + image => typeof image.media === `undefined` + ) + if (noMedia !== -1) { + return currentData[noMedia] + } } // Else return the first image. return currentData[0] From ae905c76a85b28eb2d8e8db9bd850bde3a35a683 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:18:55 -0700 Subject: [PATCH 18/34] chore(release): Publish - gatsby-image@2.2.45 - gatsby-theme-blog@1.3.33 --- packages/gatsby-image/CHANGELOG.md | 6 ++++++ packages/gatsby-image/package.json | 2 +- packages/gatsby-theme-blog/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog/package.json | 4 ++-- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md index 00cd7aa4ca6ce..c15be92d798f2 100644 --- a/packages/gatsby-image/CHANGELOG.md +++ b/packages/gatsby-image/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.45](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@2.2.44...gatsby-image@2.2.45) (2020-03-18) + +### Bug Fixes + +- **gatsby-image:** When art-directing images, default the padding aspect ratio to first image without a media query when no media query matches ([#21431](https://github.com/gatsbyjs/gatsby/issues/21431)) ([df7e93d](https://github.com/gatsbyjs/gatsby/commit/df7e93d)) + ## [2.2.44](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@2.2.43...gatsby-image@2.2.44) (2020-03-16) **Note:** Version bump only for package gatsby-image diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 549366a3854a1..406c54148b6e9 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-image", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "version": "2.2.44", + "version": "2.2.45", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index 075229af95fba..b1062c2de4720 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.33](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.32...gatsby-theme-blog@1.3.33) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.3.32](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.31...gatsby-theme-blog@1.3.32) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index 63045c3024e4b..0e5ae6c9c4e70 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.3.32", + "version": "1.3.33", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -23,7 +23,7 @@ "@theme-ui/prism": "^0.2.50", "@theme-ui/typography": "^0.2.46", "deepmerge": "^4.2.2", - "gatsby-image": "^2.2.44", + "gatsby-image": "^2.2.45", "gatsby-plugin-emotion": "^4.1.25", "gatsby-plugin-feed": "^2.3.29", "gatsby-plugin-react-helmet": "^3.1.24", From f7efc1038ea270c13d84f839699d1f74f4cd6263 Mon Sep 17 00:00:00 2001 From: Jacob Neterer <32587255+jneterer@users.noreply.github.com> Date: Wed, 18 Mar 2020 18:26:33 -0400 Subject: [PATCH 19/34] chore(starter): Add Userbase to starter (#21947) * Adding a Userbase starter with TailwindCSS, SCSS, and Typescript. Also a new category for Userbase. * Updating features for Userbase Gatsby Starter * Listing correct feature description for the Userbase Gatsby Starter * Removing Userbase from the categories.yml file and my starter tags * chore: format Co-authored-by: gatsbybot --- docs/starters.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/starters.yml b/docs/starters.yml index 455357633ae09..70624bdaae837 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5491,6 +5491,22 @@ - Side Drawer - Sidebar - Navbar +- url: https://userbase-gatsby-starter.jacobneterer.com + repo: https://github.com/jneterer/userbase-gatsby-starter + description: Another TODO app - a Gatsby starter for Userbase, TailwindCSS, SCSS, and Typescript. + tags: + - Styling:Tailwind + - Styling:SCSS + - Language:TypeScript + - Authentication + - Netlify + - SEO + features: + - Userbase for authentication and end-to-end encrypted data management + - All user and data APIs + - Tailwind CSS and SCSS for styling + - Typescript for easier debugging and development, strict types, etc + - Netlify for hosting - url: https://gatsby-simple-blog-with-asciidoctor-demo.netlify.com repo: https://github.com/hitsuji-no-shippo/gatsby-simple-blog-with-asciidoctor description: A Gatsby blog with Asciidoctor. Forked from thundermiracle/gatsby-simple-blog. From 756d3868e62ec06d8c870c9eafb12e9ef58faa5f Mon Sep 17 00:00:00 2001 From: "Jonathan Giroux (Koltes)" Date: Wed, 18 Mar 2020 23:30:43 +0100 Subject: [PATCH 20/34] feat(gatsby-source-filesystem): Unify publicURL (#22328) --- packages/gatsby-source-filesystem/src/extend-file-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-source-filesystem/src/extend-file-node.js b/packages/gatsby-source-filesystem/src/extend-file-node.js index d3290f96519ae..e381393caaee9 100644 --- a/packages/gatsby-source-filesystem/src/extend-file-node.js +++ b/packages/gatsby-source-filesystem/src/extend-file-node.js @@ -14,7 +14,7 @@ module.exports = ({ type, getNodeAndSavePathDependency, pathPrefix = `` }) => { description: `Copy file to static directory and return public url to it`, resolve: (file, fieldArgs, context) => { const details = getNodeAndSavePathDependency(file.id, context.path) - const fileName = `${file.name}-${file.internal.contentDigest}${details.ext}` + const fileName = `${file.internal.contentDigest}/${details.base}` const publicPath = path.join( process.cwd(), From 69ee9e32220b44d6dd52d316a7a9218ae727100d Mon Sep 17 00:00:00 2001 From: John Bampton Date: Thu, 19 Mar 2020 08:31:12 +1000 Subject: [PATCH 21/34] =?UTF-8?q?chore(starters):=20=F0=9F=94=92=20Fix=20m?= =?UTF-8?q?issing=20HTTPS=20on=20Wikipedia=20links=20(#22298)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- benchmarks/markdown_id/content/blog/hello-world/index.md | 2 +- benchmarks/markdown_id/content/blog/my-second-post/index.md | 2 +- benchmarks/markdown_slug/content/blog/hello-world/index.md | 2 +- benchmarks/markdown_slug/content/blog/my-second-post/index.md | 2 +- starters/blog/content/blog/hello-world/index.md | 2 +- starters/blog/content/blog/my-second-post/index.md | 2 +- .../content/posts/my-second-post.mdx | 2 +- .../gatsby-starter-blog-theme/content/posts/my-second-post.mdx | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/benchmarks/markdown_id/content/blog/hello-world/index.md b/benchmarks/markdown_id/content/blog/hello-world/index.md index 0dc2e0b77d18a..fcd815cfab484 100644 --- a/benchmarks/markdown_id/content/blog/hello-world/index.md +++ b/benchmarks/markdown_id/content/blog/hello-world/index.md @@ -9,7 +9,7 @@ This is my first post on my new fake blog! How exciting! I'm sure I'll write a lot more interesting things in the future. Oh, and here's a great quote from this Wikipedia on -[salted duck eggs](http://en.wikipedia.org/wiki/Salted_duck_egg). +[salted duck eggs](https://en.wikipedia.org/wiki/Salted_duck_egg). > A salted duck egg is a Chinese preserved food product made by soaking duck > eggs in brine, or packing each egg in damp, salted charcoal. In Asian diff --git a/benchmarks/markdown_id/content/blog/my-second-post/index.md b/benchmarks/markdown_id/content/blog/my-second-post/index.md index d19e92dc87f6d..196dc57b51ac1 100644 --- a/benchmarks/markdown_id/content/blog/my-second-post/index.md +++ b/benchmarks/markdown_id/content/blog/my-second-post/index.md @@ -8,6 +8,6 @@ Wow! I love blogging so much already. Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? -([Wikipedia Link](http://en.wikipedia.org/wiki/Salted_duck_egg)) +([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg)) Yeah, I didn't either. diff --git a/benchmarks/markdown_slug/content/blog/hello-world/index.md b/benchmarks/markdown_slug/content/blog/hello-world/index.md index 0dc2e0b77d18a..fcd815cfab484 100644 --- a/benchmarks/markdown_slug/content/blog/hello-world/index.md +++ b/benchmarks/markdown_slug/content/blog/hello-world/index.md @@ -9,7 +9,7 @@ This is my first post on my new fake blog! How exciting! I'm sure I'll write a lot more interesting things in the future. Oh, and here's a great quote from this Wikipedia on -[salted duck eggs](http://en.wikipedia.org/wiki/Salted_duck_egg). +[salted duck eggs](https://en.wikipedia.org/wiki/Salted_duck_egg). > A salted duck egg is a Chinese preserved food product made by soaking duck > eggs in brine, or packing each egg in damp, salted charcoal. In Asian diff --git a/benchmarks/markdown_slug/content/blog/my-second-post/index.md b/benchmarks/markdown_slug/content/blog/my-second-post/index.md index d19e92dc87f6d..196dc57b51ac1 100644 --- a/benchmarks/markdown_slug/content/blog/my-second-post/index.md +++ b/benchmarks/markdown_slug/content/blog/my-second-post/index.md @@ -8,6 +8,6 @@ Wow! I love blogging so much already. Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? -([Wikipedia Link](http://en.wikipedia.org/wiki/Salted_duck_egg)) +([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg)) Yeah, I didn't either. diff --git a/starters/blog/content/blog/hello-world/index.md b/starters/blog/content/blog/hello-world/index.md index 0dc2e0b77d18a..fcd815cfab484 100644 --- a/starters/blog/content/blog/hello-world/index.md +++ b/starters/blog/content/blog/hello-world/index.md @@ -9,7 +9,7 @@ This is my first post on my new fake blog! How exciting! I'm sure I'll write a lot more interesting things in the future. Oh, and here's a great quote from this Wikipedia on -[salted duck eggs](http://en.wikipedia.org/wiki/Salted_duck_egg). +[salted duck eggs](https://en.wikipedia.org/wiki/Salted_duck_egg). > A salted duck egg is a Chinese preserved food product made by soaking duck > eggs in brine, or packing each egg in damp, salted charcoal. In Asian diff --git a/starters/blog/content/blog/my-second-post/index.md b/starters/blog/content/blog/my-second-post/index.md index d19e92dc87f6d..196dc57b51ac1 100644 --- a/starters/blog/content/blog/my-second-post/index.md +++ b/starters/blog/content/blog/my-second-post/index.md @@ -8,6 +8,6 @@ Wow! I love blogging so much already. Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? -([Wikipedia Link](http://en.wikipedia.org/wiki/Salted_duck_egg)) +([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg)) Yeah, I didn't either. diff --git a/starters/gatsby-starter-blog-theme-core/content/posts/my-second-post.mdx b/starters/gatsby-starter-blog-theme-core/content/posts/my-second-post.mdx index 6daf88c601ab5..d3371450c262c 100644 --- a/starters/gatsby-starter-blog-theme-core/content/posts/my-second-post.mdx +++ b/starters/gatsby-starter-blog-theme-core/content/posts/my-second-post.mdx @@ -5,6 +5,6 @@ date: 2019-05-15 Wow! I love blogging so much already. -Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? ([Wikipedia Link](http://en.wikipedia.org/wiki/Salted_duck_egg)) +Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? ([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg)) Yeah, I didn't either. diff --git a/starters/gatsby-starter-blog-theme/content/posts/my-second-post.mdx b/starters/gatsby-starter-blog-theme/content/posts/my-second-post.mdx index 6daf88c601ab5..d3371450c262c 100644 --- a/starters/gatsby-starter-blog-theme/content/posts/my-second-post.mdx +++ b/starters/gatsby-starter-blog-theme/content/posts/my-second-post.mdx @@ -5,6 +5,6 @@ date: 2019-05-15 Wow! I love blogging so much already. -Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? ([Wikipedia Link](http://en.wikipedia.org/wiki/Salted_duck_egg)) +Did you know that "despite its name, salted duck eggs can also be made from chicken eggs, though the taste and texture will be somewhat different, and the egg yolk will be less rich."? ([Wikipedia Link](https://en.wikipedia.org/wiki/Salted_duck_egg)) Yeah, I didn't either. From e325a734cefc736209ca7d870df354fd04da76f1 Mon Sep 17 00:00:00 2001 From: Teik Jun <46853051+teikjun@users.noreply.github.com> Date: Thu, 19 Mar 2020 06:40:30 +0800 Subject: [PATCH 22/34] chore(docs): Update version numbers in tutorial (#22291) * chore(docs): Update version numbers The documentation in tutorial does not use the latest version number of nvm and node, but it says that it is the latest version. * Update index.md * Revert every change except on line 155 * Correct mistakes --- docs/tutorial/part-zero/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/part-zero/index.md b/docs/tutorial/part-zero/index.md index 9c3b92442f6b7..05b92a2e5f54c 100644 --- a/docs/tutorial/part-zero/index.md +++ b/docs/tutorial/part-zero/index.md @@ -152,7 +152,7 @@ nvm --version #### Set default Node.js version -When nvm is installed, it does not default to a particular node version. You’ll need to install the version you want and give nvm instructions to use it. This example uses the latest release of version 10, but more recent version numbers can be used instead. +When nvm is installed, it does not default to a particular node version. You’ll need to install the version you want and give nvm instructions to use it. This example uses the version 10 release, but more recent version numbers can be used instead. ```shell nvm install 10 From 5000de8c00d1a094ddb1337ee53f0cd7db99cf2e Mon Sep 17 00:00:00 2001 From: John Bampton Date: Thu, 19 Mar 2020 08:41:16 +1000 Subject: [PATCH 23/34] chore(docs): remove whitespace before commas (#22286) --- .../index.md | 2 +- docs/blog/2019-08-02-what-is-jsx-pragma/index.md | 2 +- .../index.md | 2 +- docs/docs/recipes/working-with-themes.md | 2 +- docs/docs/sourcing-from-buttercms.md | 2 +- docs/starters.yml | 2 +- www/src/pages/guidelines/typography.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/blog/2018-2-27-why-i-upgraded-my-website-to-gatsbyjs-from-jekyll/index.md b/docs/blog/2018-2-27-why-i-upgraded-my-website-to-gatsbyjs-from-jekyll/index.md index ffc1bd8d5823e..1b2570636fcd4 100644 --- a/docs/blog/2018-2-27-why-i-upgraded-my-website-to-gatsbyjs-from-jekyll/index.md +++ b/docs/blog/2018-2-27-why-i-upgraded-my-website-to-gatsbyjs-from-jekyll/index.md @@ -100,7 +100,7 @@ Because of the APIs exposed by Gatsby for interfacing with its internals, powerf The [Node.js APIs](/docs/node-apis/) let plugins extend or modify the heavy lifting performed by the Node.js process when compiling the application. Your gatsby-node.js file can export functions which modify the GraphQL data that is provided to React components when they are rendered. The APIs are also used by plugins to extend the internals of Gatsby e.g. the default webpack config can also be customized here. -Take the example of what happens during the processing of markdown files into pages. The [gatsby-source-filesystem](/packages/gatsby-source-filesystem) plugin scans directories and from files it finds, creates File nodes. These File nodes are then processed by [gatsby-transformer-remark](https://github.com/gatsbyjs/gatsby/tree/a3fea82b4d4b4c644156e841401821933e8d694a/packages/gatsby-transformer-remark) , parsing the markup into HTML with the [Remark](https://remark.js.org/) markdown processor. +Take the example of what happens during the processing of markdown files into pages. The [gatsby-source-filesystem](/packages/gatsby-source-filesystem) plugin scans directories and from files it finds, creates File nodes. These File nodes are then processed by [gatsby-transformer-remark](https://github.com/gatsbyjs/gatsby/tree/a3fea82b4d4b4c644156e841401821933e8d694a/packages/gatsby-transformer-remark), parsing the markup into HTML with the [Remark](https://remark.js.org/) markdown processor. #### Server-side Rendering APIs diff --git a/docs/blog/2019-08-02-what-is-jsx-pragma/index.md b/docs/blog/2019-08-02-what-is-jsx-pragma/index.md index c2be77c5247c0..01c710b1e9773 100644 --- a/docs/blog/2019-08-02-what-is-jsx-pragma/index.md +++ b/docs/blog/2019-08-02-what-is-jsx-pragma/index.md @@ -8,7 +8,7 @@ tags: - theme-ui --- -If you’re looking into using [Theme UI](https://theme-ui.com/) , you’ll come across some (potentially) unfamiliar looking syntax: +If you’re looking into using [Theme UI](https://theme-ui.com/), you’ll come across some (potentially) unfamiliar looking syntax: ```jsx /** @jsx jsx */ diff --git a/docs/blog/2019-12-12-how-we-accidentally-launched-a-popular-gatsby-plugin/index.md b/docs/blog/2019-12-12-how-we-accidentally-launched-a-popular-gatsby-plugin/index.md index affa0336da04e..5295517b7aee3 100644 --- a/docs/blog/2019-12-12-how-we-accidentally-launched-a-popular-gatsby-plugin/index.md +++ b/docs/blog/2019-12-12-how-we-accidentally-launched-a-popular-gatsby-plugin/index.md @@ -60,7 +60,7 @@ I noticed there were some more downsides to Amplify: - Gatsby allows you to have [routes that only exist on the client side](/docs/building-apps-with-gatsby/#client-only-routes--user-authentication). -- Essentially, you declare a starting point — say for example: /users/, and anything past that starting point will get picked up by the client side. Once the client navigates to /users/1, it will dynamically fetch that user from some sort of API. This is great and allows for very hybrid, partially static, partially dynamic applications. However, when people directly navigate to /users/1 , they will get a 404 because it simply does not exist on the serverside, which is kind of an issue. +- Essentially, you declare a starting point — say for example: /users/, and anything past that starting point will get picked up by the client side. Once the client navigates to /users/1, it will dynamically fetch that user from some sort of API. This is great and allows for very hybrid, partially static, partially dynamic applications. However, when people directly navigate to /users/1, they will get a 404 because it simply does not exist on the serverside, which is kind of an issue. - We already had a CI service ourselves, and weren’t really interested in learning all these Amplify-specific things that we already had working ourselves just fine. diff --git a/docs/docs/recipes/working-with-themes.md b/docs/docs/recipes/working-with-themes.md index 117b811fa1aeb..c8866e11b3170 100644 --- a/docs/docs/recipes/working-with-themes.md +++ b/docs/docs/recipes/working-with-themes.md @@ -55,7 +55,7 @@ module.exports = { } ``` -4. Run `gatsby develop` , the theme should be available at `http://localhost:8000/{basePath}` +4. Run `gatsby develop`, the theme should be available at `http://localhost:8000/{basePath}` > To learn how to further customize a theme, check out the available paths on [Gatsby-theme-blog Documentation](https://www.npmjs.com/package/gatsby-theme-blog). diff --git a/docs/docs/sourcing-from-buttercms.md b/docs/docs/sourcing-from-buttercms.md index 24516aa184c8b..d024d342648d5 100644 --- a/docs/docs/sourcing-from-buttercms.md +++ b/docs/docs/sourcing-from-buttercms.md @@ -45,7 +45,7 @@ Run this in your terminal: ### Adding configuration Here you'll specify the config that will be needed to pull down data from ButterCMS. -Make sure to add your **API_TOKEN** from your dashboard. In this guide you will be creating `faq_items`, `faq_headline`, `homepage` , `customer_case_study` as stated in the config below. Do well to change it if you named it something differently. +Make sure to add your **API_TOKEN** from your dashboard. In this guide you will be creating `faq_items`, `faq_headline`, `homepage`, `customer_case_study` as stated in the config below. Do well to change it if you named it something differently. ```javascript:title=gatsby-config.js module.exports = { diff --git a/docs/starters.yml b/docs/starters.yml index 70624bdaae837..303dc2ea6abdb 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -3541,7 +3541,7 @@ - Netlify Dev for local development - url: https://gatsby-starter-blog-and-portfolio.netlify.com/ repo: https://github.com/alisalahio/gatsby-starter-blog-and-portfolio - description: Just gatsby-starter-blog , with portfolio section added + description: Just gatsby-starter-blog, with portfolio section added tags: - Blog - Portfolio diff --git a/www/src/pages/guidelines/typography.js b/www/src/pages/guidelines/typography.js index afdbf19598e2f..f289d99f43d9c 100755 --- a/www/src/pages/guidelines/typography.js +++ b/www/src/pages/guidelines/typography.js @@ -468,7 +468,7 @@ const Typography = ({ location }) => ( - Enjoy the power of the latest web technologies – React.js , Webpack + Enjoy the power of the latest web technologies – React.js, Webpack , modern JavaScript and CSS and more — all set up and waiting for you to start building. From 67b00128d08af05c753aa851cca33aa668208caa Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:43:28 -0700 Subject: [PATCH 24/34] Clarify that onRouteUpdate is called on the initial load of the app (#22228) --- packages/gatsby/src/utils/api-browser-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby/src/utils/api-browser-docs.js b/packages/gatsby/src/utils/api-browser-docs.js index 1ad42c63d918c..d9196a80578ef 100644 --- a/packages/gatsby/src/utils/api-browser-docs.js +++ b/packages/gatsby/src/utils/api-browser-docs.js @@ -59,7 +59,7 @@ exports.onPreRouteUpdate = true exports.onRouteUpdateDelayed = true /** - * Called when the user changes routes + * Called when the user changes routes, including on the initial load of the app * @param {object} $0 * @param {object} $0.location A location object * @param {object|null} $0.prevLocation The previous location object From 81931cb6d4cada4f97561cd996b24c63b64b93ab Mon Sep 17 00:00:00 2001 From: John Bampton Date: Thu, 19 Mar 2020 08:46:43 +1000 Subject: [PATCH 25/34] Standardize urls in sites.yml by removing quotes. (#22223) Following the style used at https://yaml.org/ and also in starters.yml. --- docs/sites.yml | 1916 ++++++++++++++++++++++++------------------------ 1 file changed, 958 insertions(+), 958 deletions(-) diff --git a/docs/sites.yml b/docs/sites.yml index 2581e712f331f..6b1b402086828 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -1,7 +1,7 @@ - title: ReactJS - main_url: "https://reactjs.org/" - url: "https://reactjs.org/" - source_url: "https://github.com/reactjs/reactjs.org" + main_url: https://reactjs.org/ + url: https://reactjs.org/ + source_url: https://github.com/reactjs/reactjs.org featured: true categories: - Web Development @@ -32,16 +32,16 @@ description: > Creative engineers and data scientists building a world where you can belong anywhere - main_url: "https://airbnb.io/" - url: "https://airbnb.io/" + main_url: https://airbnb.io/ + url: https://airbnb.io/ categories: - Blog - Gallery - Featured featured: true - title: Impossible Foods - main_url: "https://impossiblefoods.com/" - url: "https://impossiblefoods.com/" + main_url: https://impossiblefoods.com/ + url: https://impossiblefoods.com/ categories: - Food - Featured @@ -49,15 +49,15 @@ - title: Braun description: > Braun offers high performance hair removal and hair care products, including dryers, straighteners, shavers, and more. - main_url: "https://ca.braun.com/en-ca" - url: "https://ca.braun.com/en-ca" + main_url: https://ca.braun.com/en-ca + url: https://ca.braun.com/en-ca categories: - eCommerce - Featured featured: true - title: NYC Pride 2019 | WorldPride NYC | Stonewall50 - main_url: "https://2019-worldpride-stonewall50.nycpride.org/" - url: "https://2019-worldpride-stonewall50.nycpride.org/" + main_url: https://2019-worldpride-stonewall50.nycpride.org/ + url: https://2019-worldpride-stonewall50.nycpride.org/ featured: true description: >- Join us in 2019 for NYC Pride, as we welcome WorldPride and mark the 50th @@ -69,21 +69,21 @@ - Nonprofit - Featured built_by: Canvas United - built_by_url: "https://www.canvasunited.com/" + built_by_url: https://www.canvasunited.com/ - title: The State of European Tech - main_url: "https://2017.stateofeuropeantech.com/" - url: "https://2017.stateofeuropeantech.com/" + main_url: https://2017.stateofeuropeantech.com/ + url: https://2017.stateofeuropeantech.com/ featured: true categories: - Technology - Featured built_by: Studio Lovelock - built_by_url: "http://www.studiolovelock.com/" + built_by_url: http://www.studiolovelock.com/ - title: Hopper - main_url: "https://www.hopper.com/" - url: "https://www.hopper.com/" + main_url: https://www.hopper.com/ + url: https://www.hopper.com/ built_by: Narative - built_by_url: "https://www.narative.co/" + built_by_url: https://www.narative.co/ featured: true categories: - Technology @@ -92,25 +92,25 @@ - title: GM Capital One description: | Introducing the new online experience for your GM Rewards Credit Card - main_url: "https://gm.capitalone.com/" - url: "https://gm.capitalone.com/" + main_url: https://gm.capitalone.com/ + url: https://gm.capitalone.com/ categories: - Featured featured: true - title: Theodora Warre - main_url: "https://theodorawarre.eu" - url: "https://theodorawarre.eu" + main_url: https://theodorawarre.eu + url: https://theodorawarre.eu description: >- E-commerce site for jewellery designer Theodora Warre, built using Gatsby + Shopify + Prismic + Matter.js categories: - eCommerce - Marketing built_by: Pierre Nel - built_by_url: "https://pierre.io" + built_by_url: https://pierre.io featured: false - title: Life Without Barriers | Foster Care - main_url: "https://www.lwb.org.au/foster-care" - url: "https://www.lwb.org.au/foster-care" + main_url: https://www.lwb.org.au/foster-care + url: https://www.lwb.org.au/foster-care featured: true description: >- We are urgently seeking foster carers all across Australia. Can you open @@ -123,20 +123,20 @@ - Marketing - Featured built_by: LWB Digital Team - built_by_url: "https://twitter.com/LWBAustralia" + built_by_url: https://twitter.com/LWBAustralia - title: Figma - main_url: "https://www.figma.com/" - url: "https://www.figma.com/" + main_url: https://www.figma.com/ + url: https://www.figma.com/ featured: true categories: - Marketing - Design - Featured built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: Bejamas - JAM Experts for hire - main_url: "https://bejamas.io/" - url: "https://bejamas.io/" + main_url: https://bejamas.io/ + url: https://bejamas.io/ featured: true description: >- We help agencies and companies with JAMStack tools. This includes web @@ -149,25 +149,25 @@ - Marketing - Featured built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ - title: The State of JavaScript description: > Data from over 20,000 developers, asking them questions on topics ranging from frontend frameworks and state management, to build tools and testing libraries. - main_url: "https://stateofjs.com/" - url: "https://stateofjs.com/" - source_url: "https://github.com/StateOfJS/StateOfJS" + main_url: https://stateofjs.com/ + url: https://stateofjs.com/ + source_url: https://github.com/StateOfJS/StateOfJS categories: - Data - JavaScript - Featured built_by: StateOfJS - built_by_url: "https://github.com/StateOfJS/StateOfJS/graphs/contributors" + built_by_url: https://github.com/StateOfJS/StateOfJS/graphs/contributors featured: true - title: DesignSystems.com - main_url: "https://www.designsystems.com/" - url: "https://www.designsystems.com/" + main_url: https://www.designsystems.com/ + url: https://www.designsystems.com/ description: | A resource for learning, creating and evangelizing design systems. categories: @@ -176,11 +176,11 @@ - Technology - Featured built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ featured: true - title: Snap Kit - main_url: "https://kit.snapchat.com/" - url: "https://kit.snapchat.com/" + main_url: https://kit.snapchat.com/ + url: https://kit.snapchat.com/ description: > Snap Kit lets developers integrate some of Snapchat’s best features across platforms. @@ -190,8 +190,8 @@ - Featured featured: true - title: SendGrid - main_url: "https://sendgrid.com/docs/" - url: "https://sendgrid.com/docs/" + main_url: https://sendgrid.com/docs/ + url: https://sendgrid.com/docs/ description: > SendGrid delivers your transactional and marketing emails through the world's largest cloud-based email delivery platform. @@ -202,8 +202,8 @@ - Featured featured: true - title: Kirsten Noelle - main_url: "https://www.kirstennoelle.com/" - url: "https://www.kirstennoelle.com/" + main_url: https://www.kirstennoelle.com/ + url: https://www.kirstennoelle.com/ featured: true description: > Digital portfolio for San Francisco Bay Area photographer Kirsten Noelle Wiemer. @@ -212,25 +212,25 @@ - Portfolio - Featured built_by: Ryan Wiemer - built_by_url: "https://www.ryanwiemer.com/" + built_by_url: https://www.ryanwiemer.com/ - title: Cajun Bowfishing - main_url: "https://cajunbowfishing.com/" - url: "https://cajunbowfishing.com/" + main_url: https://cajunbowfishing.com/ + url: https://cajunbowfishing.com/ featured: false categories: - eCommerce - Sports built_by: Escalade Sports - built_by_url: "https://www.escaladesports.com/" + built_by_url: https://www.escaladesports.com/ - title: NEON - main_url: "http://neonrated.com/" - url: "http://neonrated.com/" + main_url: http://neonrated.com/ + url: http://neonrated.com/ featured: false categories: - Gallery - title: GraphCMS - main_url: "https://graphcms.com/" - url: "https://graphcms.com/" + main_url: https://graphcms.com/ + url: https://graphcms.com/ featured: false categories: - Marketing @@ -238,7 +238,7 @@ - title: Ghost Documentation main_url: https://docs.ghost.org/ url: https://docs.ghost.org/ - source_url: "https://github.com/tryghost/docs" + source_url: https://github.com/tryghost/docs featured: false description: >- Ghost is an open source, professional publishing platform built on a modern Node.js technology stack — designed for teams who need power, flexibility and performance. @@ -249,38 +249,38 @@ built_by: Ghost Foundation built_by_url: https://ghost.org/ - title: Nike - Just Do It - main_url: "https://justdoit.nike.com/" - url: "https://justdoit.nike.com/" + main_url: https://justdoit.nike.com/ + url: https://justdoit.nike.com/ featured: true categories: - eCommerce - Featured - title: AirBnB Cereal - main_url: "https://airbnb.design/cereal" - url: "https://airbnb.design/cereal" + main_url: https://airbnb.design/cereal + url: https://airbnb.design/cereal featured: false categories: - Marketing - Design - title: Cardiogram - main_url: "https://cardiogr.am/" - url: "https://cardiogr.am/" + main_url: https://cardiogr.am/ + url: https://cardiogr.am/ featured: false categories: - Marketing - Technology - title: Hack Club - main_url: "https://hackclub.com/" - url: "https://hackclub.com/" - source_url: "https://github.com/hackclub/site" + main_url: https://hackclub.com/ + url: https://hackclub.com/ + source_url: https://github.com/hackclub/site featured: false categories: - Education - Web Development - title: Matthias Jordan Portfolio - main_url: "https://iammatthias.com/" - url: "https://iammatthias.com/" - source_url: "https://github.com/iammatthias/.com" + main_url: https://iammatthias.com/ + url: https://iammatthias.com/ + source_url: https://github.com/iammatthias/.com description: >- Photography portfolio of content creator and digital marketer Matthias Jordan built_by: Matthias Jordan @@ -292,90 +292,90 @@ - Blog - Gallery - title: Investment Calculator - main_url: "https://investmentcalculator.io/" - url: "https://investmentcalculator.io/" + main_url: https://investmentcalculator.io/ + url: https://investmentcalculator.io/ featured: false categories: - Education - Finance - title: CSS Grid Playground by MozillaDev - main_url: "https://mozilladevelopers.github.io/playground/" - url: "https://mozilladevelopers.github.io/playground/" - source_url: "https://github.com/MozillaDevelopers/playground" + main_url: https://mozilladevelopers.github.io/playground/ + url: https://mozilladevelopers.github.io/playground/ + source_url: https://github.com/MozillaDevelopers/playground featured: false categories: - Education - Web Development - title: Piotr Fedorczyk Portfolio built_by: Piotr Fedorczyk - built_by_url: "https://piotrf.pl" + built_by_url: https://piotrf.pl categories: - Portfolio - Web Development description: >- Portfolio of Piotr Fedorczyk, a digital product designer and full-stack developer specializing in shaping, designing and building news and tools for news. featured: false - main_url: "https://piotrf.pl/" - url: "https://piotrf.pl/" + main_url: https://piotrf.pl/ + url: https://piotrf.pl/ - title: unrealcpp - main_url: "https://unrealcpp.com/" - url: "https://unrealcpp.com/" - source_url: "https://github.com/Harrison1/unrealcpp-com" + main_url: https://unrealcpp.com/ + url: https://unrealcpp.com/ + source_url: https://github.com/Harrison1/unrealcpp-com featured: false categories: - Blog - Web Development - title: Andy Slezak - main_url: "https://www.aslezak.com/" - url: "https://www.aslezak.com/" - source_url: "https://github.com/amslezak" + main_url: https://www.aslezak.com/ + url: https://www.aslezak.com/ + source_url: https://github.com/amslezak featured: false categories: - Web Development - Portfolio - title: Deliveroo.Design - main_url: "https://www.deliveroo.design/" - url: "https://www.deliveroo.design/" + main_url: https://www.deliveroo.design/ + url: https://www.deliveroo.design/ featured: false categories: - Food - Marketing - title: Dona Rita - main_url: "https://www.donarita.co.uk/" - url: "https://www.donarita.co.uk/" - source_url: "https://github.com/peduarte/dona-rita-website" + main_url: https://www.donarita.co.uk/ + url: https://www.donarita.co.uk/ + source_url: https://github.com/peduarte/dona-rita-website featured: false categories: - Food - Marketing - title: Fröhlich ∧ Frei - main_url: "https://www.froehlichundfrei.de/" - url: "https://www.froehlichundfrei.de/" + main_url: https://www.froehlichundfrei.de/ + url: https://www.froehlichundfrei.de/ featured: false categories: - Web Development - Blog - Open Source - title: How to GraphQL - main_url: "https://www.howtographql.com/" - url: "https://www.howtographql.com/" - source_url: "https://github.com/howtographql/howtographql" + main_url: https://www.howtographql.com/ + url: https://www.howtographql.com/ + source_url: https://github.com/howtographql/howtographql featured: false categories: - Documentation - Web Development - Open Source - title: OnCallogy - main_url: "https://www.oncallogy.com/" - url: "https://www.oncallogy.com/" + main_url: https://www.oncallogy.com/ + url: https://www.oncallogy.com/ featured: false categories: - Marketing - Healthcare - title: Ryan Wiemer's Portfolio - main_url: "https://www.ryanwiemer.com/" - url: "https://www.ryanwiemer.com/knw-photography/" - source_url: "https://github.com/ryanwiemer/rw" + main_url: https://www.ryanwiemer.com/ + url: https://www.ryanwiemer.com/knw-photography/ + source_url: https://github.com/ryanwiemer/rw featured: false description: > Digital portfolio for Oakland, CA based account manager Ryan Wiemer. @@ -384,10 +384,10 @@ - Web Development - Design built_by: Ryan Wiemer - built_by_url: "https://www.ryanwiemer.com/" + built_by_url: https://www.ryanwiemer.com/ - title: Ventura Digitalagentur Köln - main_url: "https://www.ventura-digital.de/" - url: "https://www.ventura-digital.de/" + main_url: https://www.ventura-digital.de/ + url: https://www.ventura-digital.de/ featured: false built_by: Ventura Digitalagentur categories: @@ -395,39 +395,39 @@ - Marketing - Featured - title: Azer Koçulu - main_url: "https://kodfabrik.com/" - url: "https://kodfabrik.com/photography/" + main_url: https://kodfabrik.com/ + url: https://kodfabrik.com/photography/ featured: false categories: - Portfolio - Photography - Web Development - title: Damir.io - main_url: "http://damir.io/" - url: "http://damir.io/" - source_url: "https://github.com/dvzrd/gatsby-sfiction" + main_url: http://damir.io/ + url: http://damir.io/ + source_url: https://github.com/dvzrd/gatsby-sfiction featured: false categories: - Blog - title: Digital Psychology - main_url: "http://digitalpsychology.io/" - url: "http://digitalpsychology.io/" - source_url: "https://github.com/danistefanovic/digitalpsychology.io" + main_url: http://digitalpsychology.io/ + url: http://digitalpsychology.io/ + source_url: https://github.com/danistefanovic/digitalpsychology.io featured: false categories: - Education - Library - title: Théâtres Parisiens - main_url: "http://theatres-parisiens.fr/" - url: "http://theatres-parisiens.fr/" - source_url: "https://github.com/phacks/theatres-parisiens" + main_url: http://theatres-parisiens.fr/ + url: http://theatres-parisiens.fr/ + source_url: https://github.com/phacks/theatres-parisiens featured: false categories: - Education - Entertainment - title: William Owen UK Portfolio / Blog - main_url: "http://william-owen.co.uk/" - url: "http://william-owen.co.uk/" + main_url: http://william-owen.co.uk/ + url: http://william-owen.co.uk/ featured: false description: >- Over 20 years experience delivering customer-facing websites, internet-based @@ -437,24 +437,24 @@ - Portfolio - Blog built_by: William Owen - built_by_url: "https://twitter.com/twilowen" + built_by_url: https://twitter.com/twilowen - title: A4 纸网 - main_url: "http://www.a4z.cn/" - url: "http://www.a4z.cn/price" - source_url: "https://github.com/hiooyUI/hiooyui.github.io" + main_url: http://www.a4z.cn/ + url: http://www.a4z.cn/price + source_url: https://github.com/hiooyUI/hiooyui.github.io featured: false categories: - eCommerce - title: Steve Meredith's Portfolio - main_url: "http://www.stevemeredith.com/" - url: "http://www.stevemeredith.com/" + main_url: http://www.stevemeredith.com/ + url: http://www.stevemeredith.com/ featured: false categories: - Portfolio - title: API Platform - main_url: "https://api-platform.com/" - url: "https://api-platform.com/" - source_url: "https://github.com/api-platform/website" + main_url: https://api-platform.com/ + url: https://api-platform.com/ + source_url: https://github.com/api-platform/website featured: false categories: - Documentation @@ -462,28 +462,28 @@ - Open Source - Library - title: The Audacious Project - main_url: "https://audaciousproject.org/" - url: "https://audaciousproject.org/" + main_url: https://audaciousproject.org/ + url: https://audaciousproject.org/ featured: false categories: - Nonprofit - title: Dustin Schau's Blog - main_url: "https://blog.dustinschau.com/" - url: "https://blog.dustinschau.com/" - source_url: "https://github.com/dschau/blog" + main_url: https://blog.dustinschau.com/ + url: https://blog.dustinschau.com/ + source_url: https://github.com/dschau/blog featured: false categories: - Blog - Web Development - title: iContract Blog - main_url: "https://blog.icontract.co.uk/" - url: "http://blog.icontract.co.uk/" + main_url: https://blog.icontract.co.uk/ + url: http://blog.icontract.co.uk/ featured: false categories: - Blog - title: BRIIM - main_url: "https://bri.im/" - url: "https://bri.im/" + main_url: https://bri.im/ + url: https://bri.im/ featured: false description: >- BRIIM is a movement to enable JavaScript enthusiasts and web developers in @@ -495,16 +495,16 @@ - Web Development - Technology - title: Calpa's Blog - main_url: "https://calpa.me/" - url: "https://calpa.me/" - source_url: "https://github.com/calpa/blog" + main_url: https://calpa.me/ + url: https://calpa.me/ + source_url: https://github.com/calpa/blog featured: false categories: - Blog - Web Development - title: Code Bushi - main_url: "https://codebushi.com/" - url: "https://codebushi.com/" + main_url: https://codebushi.com/ + url: https://codebushi.com/ featured: false description: >- Web development resources, trends, & techniques to elevate your coding @@ -514,28 +514,28 @@ - Open Source - Blog built_by: Hunter Chang - built_by_url: "https://hunterchang.com/" + built_by_url: https://hunterchang.com/ - title: Daniel Hollcraft - main_url: "https://danielhollcraft.com/" - url: "https://danielhollcraft.com/" - source_url: "https://github.com/danielbh/danielhollcraft.com" + main_url: https://danielhollcraft.com/ + url: https://danielhollcraft.com/ + source_url: https://github.com/danielbh/danielhollcraft.com featured: false categories: - Web Development - Blog - Portfolio - title: Darren Britton's Portfolio - main_url: "https://darrenbritton.com/" - url: "https://darrenbritton.com/" - source_url: "https://github.com/darrenbritton/darrenbritton.github.io" + main_url: https://darrenbritton.com/ + url: https://darrenbritton.com/ + source_url: https://github.com/darrenbritton/darrenbritton.github.io featured: false categories: - Web Development - Portfolio - title: Dave Lindberg Marketing & Design - url: "https://davelindberg.com/" - main_url: "https://davelindberg.com/" - source_url: "https://github.com/Dave-Lindberg/dl-gatsby" + url: https://davelindberg.com/ + main_url: https://davelindberg.com/ + source_url: https://github.com/Dave-Lindberg/dl-gatsby featured: false description: >- My work revolves around solving problems for people in business, using @@ -546,37 +546,37 @@ - Marketing - Portfolio - title: Dalbinaco's Website - main_url: "https://dlbn.co/en/" - url: "https://dlbn.co/en/" - source_url: "https://github.com/dalbinaco/dlbn.co" + main_url: https://dlbn.co/en/ + url: https://dlbn.co/en/ + source_url: https://github.com/dalbinaco/dlbn.co featured: false categories: - Portfolio - Web Development - title: mParticle's Documentation - main_url: "https://docs.mparticle.com/" - url: "https://docs.mparticle.com/" + main_url: https://docs.mparticle.com/ + url: https://docs.mparticle.com/ featured: false categories: - Web Development - Documentation - title: Doopoll - main_url: "https://doopoll.co/" - url: "https://doopoll.co/" + main_url: https://doopoll.co/ + url: https://doopoll.co/ featured: false categories: - Marketing - Technology - title: ERC dEX - main_url: "https://ercdex.com/" - url: "https://ercdex.com/aqueduct" + main_url: https://ercdex.com/ + url: https://ercdex.com/aqueduct featured: false categories: - Marketing - title: Fabian Schultz' Portfolio - main_url: "https://fabianschultz.com/" - url: "https://fabianschultz.com/" - source_url: "https://github.com/fabe/site" + main_url: https://fabianschultz.com/ + url: https://fabianschultz.com/ + source_url: https://github.com/fabe/site featured: false description: >- Hello, I’m Fabian — a product designer and developer based in Potsdam, @@ -587,50 +587,50 @@ - Portfolio - Web Development built_by: Fabian Schultz - built_by_url: "https://fabianschultz.com/" + built_by_url: https://fabianschultz.com/ - title: CalState House Manager description: > Home service membership that offers proactive and on-demand maintenance for homeowners - main_url: "https://housemanager.calstate.aaa.com/" - url: "https://housemanager.calstate.aaa.com/" + main_url: https://housemanager.calstate.aaa.com/ + url: https://housemanager.calstate.aaa.com/ categories: - Marketing - title: The freeCodeCamp Guide - main_url: "https://guide.freecodecamp.org/" - url: "https://guide.freecodecamp.org/" - source_url: "https://github.com/freeCodeCamp/guide" + main_url: https://guide.freecodecamp.org/ + url: https://guide.freecodecamp.org/ + source_url: https://github.com/freeCodeCamp/guide featured: false categories: - Web Development - Documentation - title: Hapticmedia - main_url: "https://hapticmedia.fr/en/" - url: "https://hapticmedia.fr/en/" + main_url: https://hapticmedia.fr/en/ + url: https://hapticmedia.fr/en/ featured: false categories: - Agency - title: heml.io - main_url: "https://heml.io/" - url: "https://heml.io/" - source_url: "https://github.com/SparkPost/heml.io" + main_url: https://heml.io/ + url: https://heml.io/ + source_url: https://github.com/SparkPost/heml.io featured: false categories: - Documentation - Web Development - Open Source - title: Juliette Pretot's Portfolio - main_url: "https://juliette.sh/" - url: "https://juliette.sh/" + main_url: https://juliette.sh/ + url: https://juliette.sh/ featured: false categories: - Web Development - Portfolio - Blog - title: Kris Hedstrom's Portfolio - main_url: "https://k-create.com/" - url: "https://k-create.com/portfolio/" - source_url: "https://github.com/kristofferh/kristoffer" + main_url: https://k-create.com/ + url: https://k-create.com/portfolio/ + source_url: https://github.com/kristofferh/kristoffer featured: false description: >- Hey. I’m Kris. I’m an interactive designer / developer. I grew up in Umeå, @@ -645,53 +645,53 @@ categories: - Portfolio built_by: Kris Hedstrom - built_by_url: "https://k-create.com/" + built_by_url: https://k-create.com/ - title: knpw.rs - main_url: "https://knpw.rs/" - url: "https://knpw.rs/" - source_url: "https://github.com/knpwrs/knpw.rs" + main_url: https://knpw.rs/ + url: https://knpw.rs/ + source_url: https://github.com/knpwrs/knpw.rs featured: false categories: - Blog - Web Development - title: Kostas Bariotis' Blog - main_url: "https://kostasbariotis.com/" - url: "https://kostasbariotis.com/" - source_url: "https://github.com/kbariotis/kostasbariotis.com" + main_url: https://kostasbariotis.com/ + url: https://kostasbariotis.com/ + source_url: https://github.com/kbariotis/kostasbariotis.com featured: false categories: - Blog - Portfolio - Web Development - title: LaserTime Clinic - main_url: "https://lasertime.ru/" - url: "https://lasertime.ru/" - source_url: "https://github.com/oleglegun/lasertime" + main_url: https://lasertime.ru/ + url: https://lasertime.ru/ + source_url: https://github.com/oleglegun/lasertime featured: false categories: - Marketing - title: Jason Lengstorf - main_url: "https://lengstorf.com" - url: "https://lengstorf.com" - source_url: "https://github.com/jlengstorf/lengstorf.com" + main_url: https://lengstorf.com + url: https://lengstorf.com + source_url: https://github.com/jlengstorf/lengstorf.com featured: false categories: - Blog built_by: Jason Lengstorf - built_by_url: "https://github.com/jlengstorf" + built_by_url: https://github.com/jlengstorf - title: Mannequin.io - main_url: "https://mannequin.io/" - url: "https://mannequin.io/" - source_url: "https://github.com/LastCallMedia/Mannequin/tree/master/site" + main_url: https://mannequin.io/ + url: https://mannequin.io/ + source_url: https://github.com/LastCallMedia/Mannequin/tree/master/site featured: false categories: - Open Source - Web Development - Documentation - title: manu.ninja - main_url: "https://manu.ninja/" - url: "https://manu.ninja/" - source_url: "https://github.com/Lorti/manu.ninja" + main_url: https://manu.ninja/ + url: https://manu.ninja/ + source_url: https://github.com/Lorti/manu.ninja featured: false description: >- manu.ninja is the personal blog of Manuel Wieser, where he talks about @@ -701,14 +701,14 @@ - Technology - Web Development - title: Fabric - main_url: "https://meetfabric.com/" - url: "https://meetfabric.com/" + main_url: https://meetfabric.com/ + url: https://meetfabric.com/ featured: false categories: - Marketing - title: Nexit - main_url: "https://nexit.sk/" - url: "https://nexit.sk/references" + main_url: https://nexit.sk/ + url: https://nexit.sk/references featured: false categories: - Web Development @@ -717,9 +717,9 @@ Provides APIs and raw download access to a number of high-value, high priority and scalable structured datasets, including adverse events, drug product labeling, and recall enforcement reports. - main_url: "https://open.fda.gov/" - url: "https://open.fda.gov/" - source_url: "https://github.com/FDA/open.fda.gov" + main_url: https://open.fda.gov/ + url: https://open.fda.gov/ + source_url: https://github.com/FDA/open.fda.gov featured: false categories: - Government @@ -728,9 +728,9 @@ - API - Data - title: NYC Planning Labs (New York City Department of City Planning) - main_url: "https://planninglabs.nyc/" - url: "https://planninglabs.nyc/about/" - source_url: "https://github.com/NYCPlanning/" + main_url: https://planninglabs.nyc/ + url: https://planninglabs.nyc/about/ + source_url: https://github.com/NYCPlanning/ featured: false description: >- We work with New York City's Urban Planners to deliver impactful, modern @@ -739,9 +739,9 @@ - Open Source - Government - title: Pravdomil - main_url: "https://pravdomil.com/" - url: "https://pravdomil.com/" - source_url: "https://github.com/pravdomil/pravdomil.com" + main_url: https://pravdomil.com/ + url: https://pravdomil.com/ + source_url: https://github.com/pravdomil/pravdomil.com featured: false description: >- I’ve been working both as a product designer and frontend developer for over @@ -750,26 +750,26 @@ categories: - Portfolio - title: Preston Richey Portfolio / Blog - main_url: "https://prestonrichey.com/" - url: "https://prestonrichey.com/" - source_url: "https://github.com/prichey/prestonrichey.com" + main_url: https://prestonrichey.com/ + url: https://prestonrichey.com/ + source_url: https://github.com/prichey/prestonrichey.com featured: false categories: - Web Development - Portfolio - Blog - title: Landing page of Put.io - main_url: "https://put.io/" - url: "https://put.io/" + main_url: https://put.io/ + url: https://put.io/ featured: false categories: - eCommerce - Technology - title: The Rick and Morty API - main_url: "https://rickandmortyapi.com/" - url: "https://rickandmortyapi.com/" + main_url: https://rickandmortyapi.com/ + url: https://rickandmortyapi.com/ built_by: Axel Fuhrmann - built_by_url: "https://axelfuhrmann.com/" + built_by_url: https://axelfuhrmann.com/ featured: false categories: - Web Development @@ -778,66 +778,66 @@ - Open Source - API - title: Santa Compañía Creativa - main_url: "https://santacc.es/" - url: "https://santacc.es/" - source_url: "https://github.com/DesarrolloWebSantaCC/santacc-web" + main_url: https://santacc.es/ + url: https://santacc.es/ + source_url: https://github.com/DesarrolloWebSantaCC/santacc-web featured: false categories: - Agency - title: Sean Coker's Blog - main_url: "https://sean.is/" - url: "https://sean.is/" + main_url: https://sean.is/ + url: https://sean.is/ featured: false categories: - Blog - Portfolio - Web Development - title: Several Levels - main_url: "https://severallevels.io/" - url: "https://severallevels.io/" - source_url: "https://github.com/Harrison1/several-levels" + main_url: https://severallevels.io/ + url: https://severallevels.io/ + source_url: https://github.com/Harrison1/several-levels featured: false categories: - Agency - Web Development - title: Simply - main_url: "https://simply.co.za/" - url: "https://simply.co.za/" + main_url: https://simply.co.za/ + url: https://simply.co.za/ featured: false categories: - Marketing - title: Storybook - main_url: "https://storybook.js.org/" - url: "https://storybook.js.org/" - source_url: "https://github.com/storybooks/storybook" + main_url: https://storybook.js.org/ + url: https://storybook.js.org/ + source_url: https://github.com/storybooks/storybook featured: false categories: - Web Development - Open Source - title: Vibert Thio's Portfolio - main_url: "https://vibertthio.com/portfolio/" - url: "https://vibertthio.com/portfolio/projects/" - source_url: "https://github.com/vibertthio/portfolio" + main_url: https://vibertthio.com/portfolio/ + url: https://vibertthio.com/portfolio/projects/ + source_url: https://github.com/vibertthio/portfolio featured: false categories: - Portfolio - Web Development - title: VisitGemer - main_url: "https://visitgemer.sk/" - url: "https://visitgemer.sk/" + main_url: https://visitgemer.sk/ + url: https://visitgemer.sk/ featured: false categories: - Marketing - title: Bricolage.io - main_url: "https://www.bricolage.io/" - url: "https://www.bricolage.io/" - source_url: "https://github.com/KyleAMathews/blog" + main_url: https://www.bricolage.io/ + url: https://www.bricolage.io/ + source_url: https://github.com/KyleAMathews/blog featured: false categories: - Blog - title: Charles Pinnix Website - main_url: "https://www.charlespinnix.com/" - url: "https://www.charlespinnix.com/" + main_url: https://www.charlespinnix.com/ + url: https://www.charlespinnix.com/ featured: false description: >- I’m a senior frontend engineer with 8 years of experience building websites @@ -853,195 +853,195 @@ - Portfolio - Web Development - title: Charlie Harrington's Blog - main_url: "https://www.charlieharrington.com/" - url: "https://www.charlieharrington.com/" - source_url: "https://github.com/whatrocks/blog" + main_url: https://www.charlieharrington.com/ + url: https://www.charlieharrington.com/ + source_url: https://github.com/whatrocks/blog featured: false categories: - Blog - Web Development - Music - title: Gabriel Adorf's Portfolio - main_url: "https://www.gabrieladorf.com/" - url: "https://www.gabrieladorf.com/" - source_url: "https://github.com/gabdorf/gabriel-adorf-portfolio" + main_url: https://www.gabrieladorf.com/ + url: https://www.gabrieladorf.com/ + source_url: https://github.com/gabdorf/gabriel-adorf-portfolio featured: false categories: - Portfolio - Web Development - title: greglobinski.com - main_url: "https://www.greglobinski.com/" - url: "https://www.greglobinski.com/" - source_url: "https://github.com/greglobinski/www.greglobinski.com" + main_url: https://www.greglobinski.com/ + url: https://www.greglobinski.com/ + source_url: https://github.com/greglobinski/www.greglobinski.com featured: false categories: - Portfolio - Web Development - title: I am Putra - main_url: "https://www.iamputra.com/" - url: "https://www.iamputra.com/" + main_url: https://www.iamputra.com/ + url: https://www.iamputra.com/ featured: false categories: - Portfolio - Web Development - Blog - title: In Sowerby Bridge - main_url: "https://www.insowerbybridge.co.uk/" - url: "https://www.insowerbybridge.co.uk/" + main_url: https://www.insowerbybridge.co.uk/ + url: https://www.insowerbybridge.co.uk/ featured: false categories: - Marketing - Government - title: JavaScript Stuff - main_url: "https://www.javascriptstuff.com/" - url: "https://www.javascriptstuff.com/" + main_url: https://www.javascriptstuff.com/ + url: https://www.javascriptstuff.com/ featured: false categories: - Education - Web Development - Library - title: Ledgy - main_url: "https://www.ledgy.com/" - url: "https://github.com/morloy/ledgy.com" + main_url: https://www.ledgy.com/ + url: https://github.com/morloy/ledgy.com featured: false categories: - Marketing - Finance - title: Alec Lomas's Portfolio / Blog - main_url: "https://www.lowmess.com/" - url: "https://www.lowmess.com/" - source_url: "https://github.com/lowmess/lowmess" + main_url: https://www.lowmess.com/ + url: https://www.lowmess.com/ + source_url: https://github.com/lowmess/lowmess featured: false categories: - Web Development - Blog - Portfolio - title: Michele Mazzucco's Portfolio - main_url: "https://www.michelemazzucco.it/" - url: "https://www.michelemazzucco.it/" - source_url: "https://github.com/michelemazzucco/michelemazzucco.it" + main_url: https://www.michelemazzucco.it/ + url: https://www.michelemazzucco.it/ + source_url: https://github.com/michelemazzucco/michelemazzucco.it featured: false categories: - Portfolio - title: Orbit FM Podcasts - main_url: "https://www.orbit.fm/" - url: "https://www.orbit.fm/" - source_url: "https://github.com/agarrharr/orbit.fm" + main_url: https://www.orbit.fm/ + url: https://www.orbit.fm/ + source_url: https://github.com/agarrharr/orbit.fm featured: false categories: - Podcast - title: Prosecco Springs - main_url: "https://www.proseccosprings.com/" - url: "https://www.proseccosprings.com/" + main_url: https://www.proseccosprings.com/ + url: https://www.proseccosprings.com/ featured: false categories: - Food - Blog - Marketing - title: Verious - main_url: "https://www.verious.io/" - url: "https://www.verious.io/" - source_url: "https://github.com/cpinnix/verious" + main_url: https://www.verious.io/ + url: https://www.verious.io/ + source_url: https://github.com/cpinnix/verious featured: false categories: - Web Development - title: Yisela - main_url: "https://www.yisela.com/" - url: "https://www.yisela.com/tetris-against-trauma-gaming-as-therapy/" + main_url: https://www.yisela.com/ + url: https://www.yisela.com/tetris-against-trauma-gaming-as-therapy/ featured: false categories: - Blog - title: YouFoundRon.com - main_url: "https://www.youfoundron.com/" - url: "https://www.youfoundron.com/" - source_url: "https://github.com/rongierlach/yfr-dot-com" + main_url: https://www.youfoundron.com/ + url: https://www.youfoundron.com/ + source_url: https://github.com/rongierlach/yfr-dot-com featured: false categories: - Portfolio - Web Development - Blog - title: yerevancoder - main_url: "https://yerevancoder.com/" - url: "https://forum.yerevancoder.com/categories" - source_url: "https://github.com/yerevancoder/yerevancoder.github.io" + main_url: https://yerevancoder.com/ + url: https://forum.yerevancoder.com/categories + source_url: https://github.com/yerevancoder/yerevancoder.github.io featured: false categories: - Blog - Web Development - title: Ease - main_url: "https://www.ease.com/" - url: "https://www.ease.com/" + main_url: https://www.ease.com/ + url: https://www.ease.com/ featured: false categories: - Marketing - Healthcare - title: Policygenius - main_url: "https://www.policygenius.com/" - url: "https://www.policygenius.com/" + main_url: https://www.policygenius.com/ + url: https://www.policygenius.com/ featured: false categories: - Marketing - Healthcare - title: Moteefe - main_url: "https://www.moteefe.com/" - url: "https://www.moteefe.com/" + main_url: https://www.moteefe.com/ + url: https://www.moteefe.com/ featured: false categories: - Marketing - Agency - Technology - title: Athelas - main_url: "http://www.athelas.com/" - url: "http://www.athelas.com/" + main_url: http://www.athelas.com/ + url: http://www.athelas.com/ featured: false categories: - Marketing - Healthcare - title: Pathwright - main_url: "http://www.pathwright.com/" - url: "http://www.pathwright.com/" + main_url: http://www.pathwright.com/ + url: http://www.pathwright.com/ featured: false categories: - Marketing - Education - title: Lucid - main_url: "https://www.golucid.co/" - url: "https://www.golucid.co/" + main_url: https://www.golucid.co/ + url: https://www.golucid.co/ featured: false categories: - Marketing - Technology - title: Bench - main_url: "http://www.bench.co/" - url: "http://www.bench.co/" + main_url: http://www.bench.co/ + url: http://www.bench.co/ featured: false categories: - Marketing - title: Gin Lane - main_url: "http://www.ginlane.com/" - url: "https://www.ginlane.com/" + main_url: http://www.ginlane.com/ + url: https://www.ginlane.com/ featured: false categories: - Web Development - Agency - title: Marmelab - main_url: "https://marmelab.com/en/" - url: "https://marmelab.com/en/" + main_url: https://marmelab.com/en/ + url: https://marmelab.com/en/ featured: false categories: - Web Development - Agency - title: Dovetail - main_url: "https://dovetailapp.com/" - url: "https://dovetailapp.com/" + main_url: https://dovetailapp.com/ + url: https://dovetailapp.com/ featured: false categories: - Marketing - Technology - title: The Bastion Bot - main_url: "https://bastionbot.org/" - url: "https://bastionbot.org/" - source_url: "https://github.com/TheBastionBot/Bastion-Website" + main_url: https://bastionbot.org/ + url: https://bastionbot.org/ + source_url: https://github.com/TheBastionBot/Bastion-Website description: Give awesome perks to your Discord server! featured: false categories: @@ -1050,38 +1050,38 @@ - Documentation - Community built_by: Sankarsan Kampa - built_by_url: "https://traction.one" + built_by_url: https://traction.one - title: Smakosh - main_url: "https://smakosh.com/" - url: "https://smakosh.com/" - source_url: "https://github.com/smakosh/smakosh.com" + main_url: https://smakosh.com/ + url: https://smakosh.com/ + source_url: https://github.com/smakosh/smakosh.com featured: false categories: - Portfolio - Web Development - title: WebGazer - main_url: "https://www.webgazer.io/" - url: "https://www.webgazer.io/" + main_url: https://www.webgazer.io/ + url: https://www.webgazer.io/ featured: false categories: - Marketing - Web Development - Technology - title: Joe Seifi's Blog - main_url: "http://seifi.org/" - url: "http://seifi.org/" + main_url: http://seifi.org/ + url: http://seifi.org/ featured: false categories: - Portfolio - Web Development - Blog - title: LekoArts — Graphic Designer & Front-End Developer - main_url: "https://www.lekoarts.de" - url: "https://www.lekoarts.de" - source_url: "https://github.com/LekoArts/portfolio" + main_url: https://www.lekoarts.de + url: https://www.lekoarts.de + source_url: https://github.com/LekoArts/portfolio featured: false built_by: LekoArts - built_by_url: "https://github.com/LekoArts" + built_by_url: https://github.com/LekoArts description: >- Hi, I'm Lennart — a self-taught and passionate graphic/web designer & frontend developer based in Darmstadt, Germany. I love it to realize complex @@ -1097,27 +1097,27 @@ - Freelance - Open Source - title: 杨二小的博客 - main_url: "https://blog.yangerxiao.com/" - url: "https://blog.yangerxiao.com/" - source_url: "https://github.com/zerosoul/blog.yangerxiao.com" + main_url: https://blog.yangerxiao.com/ + url: https://blog.yangerxiao.com/ + source_url: https://github.com/zerosoul/blog.yangerxiao.com featured: false categories: - Blog - Portfolio - title: MOTTO x MOTTO - main_url: "https://mottox2.com" - url: "https://mottox2.com" - source_url: "https://github.com/mottox2/website" + main_url: https://mottox2.com + url: https://mottox2.com + source_url: https://github.com/mottox2/website description: Web developer / UI Designer in Tokyo Japan. featured: false categories: - Blog - Portfolio built_by: mottox2 - built_by_url: "https://mottox2.com" + built_by_url: https://mottox2.com - title: Pride of the Meadows - main_url: "https://www.prideofthemeadows.com/" - url: "https://www.prideofthemeadows.com/" + main_url: https://www.prideofthemeadows.com/ + url: https://www.prideofthemeadows.com/ featured: false categories: - eCommerce @@ -1126,8 +1126,8 @@ built_by: Caldera Digital built_by_url: https://www.calderadigital.com/ - title: Michael Uloth - main_url: "https://www.michaeluloth.com" - url: "https://www.michaeluloth.com" + main_url: https://www.michaeluloth.com + url: https://www.michaeluloth.com featured: false description: Michael Uloth is a web developer, opera singer, and the creator of Up and Running Tutorials. categories: @@ -1135,10 +1135,10 @@ - Web Development - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com - title: Spacetime - main_url: "https://www.heyspacetime.com/" - url: "https://www.heyspacetime.com/" + main_url: https://www.heyspacetime.com/ + url: https://www.heyspacetime.com/ featured: false description: >- Spacetime is a Dallas-based digital experience agency specializing in web, @@ -1148,10 +1148,10 @@ - Portfolio - Agency built_by: Spacetime - built_by_url: "https://www.heyspacetime.com/" + built_by_url: https://www.heyspacetime.com/ - title: Eric Jinks - main_url: "https://ericjinks.com/" - url: "https://ericjinks.com/" + main_url: https://ericjinks.com/ + url: https://ericjinks.com/ featured: false description: "Software engineer / web developer from the Gold Coast, Australia." categories: @@ -1160,10 +1160,10 @@ - Web Development - Technology built_by: Eric Jinks - built_by_url: "https://ericjinks.com/" + built_by_url: https://ericjinks.com/ - title: GaiAma - We are wildlife - main_url: "https://www.gaiama.org/" - url: "https://www.gaiama.org/" + main_url: https://www.gaiama.org/ + url: https://www.gaiama.org/ featured: false description: >- We founded the GaiAma conservation organization to protect wildlife in Perú @@ -1173,12 +1173,12 @@ - Nonprofit - Marketing - Blog - source_url: "https://github.com/GaiAma/gaiama.org" + source_url: https://github.com/GaiAma/gaiama.org built_by: GaiAma - built_by_url: "https://www.gaiama.org/" + built_by_url: https://www.gaiama.org/ - title: Healthcare Logic - main_url: "https://www.healthcarelogic.com/" - url: "https://www.healthcarelogic.com/" + main_url: https://www.healthcarelogic.com/ + url: https://www.healthcarelogic.com/ featured: false description: >- Revolutionary technology that empowers clinical and managerial leaders to @@ -1188,23 +1188,23 @@ - Healthcare - Technology built_by: Thrive - built_by_url: "https://thriveweb.com.au/" + built_by_url: https://thriveweb.com.au/ - title: Papergov - main_url: "https://papergov.com/" - url: "https://papergov.com/" + main_url: https://papergov.com/ + url: https://papergov.com/ featured: false description: Manage all your government services in a single place categories: - Directory - Government - Technology - source_url: "https://github.com/WeOpenly/localgov.fyi" + source_url: https://github.com/WeOpenly/localgov.fyi built_by: Openly Technologies - built_by_url: "https://papergov.com/about/" + built_by_url: https://papergov.com/about/ - title: Kata.ai Documentation - main_url: "https://docs.kata.ai/" - url: "https://docs.kata.ai/" - source_url: "https://github.com/kata-ai/kata-platform-docs" + main_url: https://docs.kata.ai/ + url: https://docs.kata.ai/ + source_url: https://github.com/kata-ai/kata-platform-docs featured: false description: >- Documentation website for the Kata Platform, an all-in-one platform for @@ -1213,8 +1213,8 @@ - Documentation - Technology - title: goalgetters - main_url: "https://goalgetters.space/" - url: "https://goalgetters.space/" + main_url: https://goalgetters.space/ + url: https://goalgetters.space/ featured: false description: >- goalgetters is a source of inspiration for people who want to change their @@ -1224,10 +1224,10 @@ - Blog - Education built_by: "Stephanie Langers (content), Adrian Wenke (development)" - built_by_url: "https://twitter.com/AdrianWenke" + built_by_url: https://twitter.com/AdrianWenke - title: Zensum - main_url: "https://zensum.se/" - url: "https://zensum.se/" + main_url: https://zensum.se/ + url: https://zensum.se/ featured: false description: >- Borrow money quickly and safely through Zensum. We compare Sweden's leading @@ -1238,10 +1238,10 @@ - Finance - Marketing built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ - title: StatusHub - Easy to use Hosted Status Page Service - main_url: "https://statushub.com/" - url: "https://statushub.com/" + main_url: https://statushub.com/ + url: https://statushub.com/ featured: false description: >- Set up your very own service status page in minutes with StatusHub. Allow @@ -1250,21 +1250,21 @@ - Technology - Marketing built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ - title: Matthias Kretschmann Portfolio - main_url: "https://matthiaskretschmann.com/" - url: "https://matthiaskretschmann.com/" - source_url: "https://github.com/kremalicious/portfolio" + main_url: https://matthiaskretschmann.com/ + url: https://matthiaskretschmann.com/ + source_url: https://github.com/kremalicious/portfolio featured: false description: Portfolio of designer & developer Matthias Kretschmann. categories: - Portfolio - Web Development built_by: Matthias Kretschmann - built_by_url: "https://matthiaskretschmann.com/" + built_by_url: https://matthiaskretschmann.com/ - title: Iron Cove Solutions - main_url: "https://ironcovesolutions.com/" - url: "https://ironcovesolutions.com/" + main_url: https://ironcovesolutions.com/ + url: https://ironcovesolutions.com/ description: >- Iron Cove Solutions is a cloud based consulting firm. We help companies deliver a return on cloud usage by applying best practices @@ -1272,12 +1272,12 @@ - Technology - Web Development built_by: Iron Cove Solutions - built_by_url: "https://ironcovesolutions.com/" + built_by_url: https://ironcovesolutions.com/ featured: false - title: Moetez Chaabene Portfolio / Blog - main_url: "https://moetez.me/" - url: "https://moetez.me/" - source_url: "https://github.com/moetezch/moetez.me" + main_url: https://moetez.me/ + url: https://moetez.me/ + source_url: https://github.com/moetezch/moetez.me featured: false description: Portfolio of Moetez Chaabene categories: @@ -1285,112 +1285,112 @@ - Web Development - Blog built_by: Moetez Chaabene - built_by_url: "https://twitter.com/moetezch" + built_by_url: https://twitter.com/moetezch - title: Nikita description: >- Automation of system deployments in Node.js for applications and infrastructures. - main_url: "https://nikita.js.org/" - url: "https://nikita.js.org/" - source_url: "https://github.com/adaltas/node-nikita" + main_url: https://nikita.js.org/ + url: https://nikita.js.org/ + source_url: https://github.com/adaltas/node-nikita categories: - Documentation - Open Source - Technology built_by: Adaltas - built_by_url: "https://www.adaltas.com" + built_by_url: https://www.adaltas.com featured: false - title: Gourav Sood Blog & Portfolio - main_url: "https://www.gouravsood.com/" - url: "https://www.gouravsood.com/" + main_url: https://www.gouravsood.com/ + url: https://www.gouravsood.com/ featured: false categories: - Blog - Portfolio built_by: Gourav Sood - built_by_url: "https://www.gouravsood.com/" + built_by_url: https://www.gouravsood.com/ - title: Jonas Tebbe Portfolio description: | Hey, I’m Jonas and I create digital products. - main_url: "https://jonastebbe.com" - url: "https://jonastebbe.com" + main_url: https://jonastebbe.com + url: https://jonastebbe.com categories: - Portfolio built_by: Jonas Tebbe - built_by_url: "https://twitter.com/jonastebbe" + built_by_url: https://twitter.com/jonastebbe featured: false - title: Parker Sarsfield Portfolio description: | I'm Parker, a software engineer and sneakerhead. - main_url: "https://parkersarsfield.com" - url: "https://parkersarsfield.com" + main_url: https://parkersarsfield.com + url: https://parkersarsfield.com categories: - Blog - Portfolio built_by: Parker Sarsfield - built_by_url: "https://parkersarsfield.com" + built_by_url: https://parkersarsfield.com - title: Frontend web development with Greg description: | JavaScript, GatsbyJS, ReactJS, CSS in JS... Let's learn some stuff together. - main_url: "https://dev.greglobinski.com" - url: "https://dev.greglobinski.com" + main_url: https://dev.greglobinski.com + url: https://dev.greglobinski.com categories: - Blog - Web Development built_by: Greg Lobinski - built_by_url: "https://github.com/greglobinski" + built_by_url: https://github.com/greglobinski - title: Insomnia description: | Desktop HTTP and GraphQL client for developers - main_url: "https://insomnia.rest/" - url: "https://insomnia.rest/" + main_url: https://insomnia.rest/ + url: https://insomnia.rest/ categories: - Blog built_by: Gregory Schier - built_by_url: "https://schier.co" + built_by_url: https://schier.co featured: false - title: Timeline Theme Portfolio description: | I'm Aman Mittal, a software developer. - main_url: "https://amanhimself.dev/" - url: "https://amanhimself.dev/" + main_url: https://amanhimself.dev/ + url: https://amanhimself.dev/ categories: - Web Development - Portfolio built_by: Aman Mittal - built_by_url: "https://amanhimself.dev/" + built_by_url: https://amanhimself.dev/ - title: Ocean artUp description: > Science outreach site built using styled-components and Contentful. It presents the research project "Ocean artUp" funded by an Advanced Grant of the European Research Council to explore the possible benefits of artificial uplift of nutrient-rich deep water to the ocean’s sunlit surface layer. - main_url: "https://ocean-artup.eu" - url: "https://ocean-artup.eu" - source_url: "https://github.com/janosh/ocean-artup" + main_url: https://ocean-artup.eu + url: https://ocean-artup.eu + source_url: https://github.com/janosh/ocean-artup categories: - Science - Education - Blog built_by: Janosh Riebesell - built_by_url: "https://janosh.io" + built_by_url: https://janosh.io featured: false - title: Ryan Fitzgerald description: | Personal portfolio and blog for Ryan Fitzgerald - main_url: "https://ryanfitzgerald.ca/" - url: "https://ryanfitzgerald.ca/" + main_url: https://ryanfitzgerald.ca/ + url: https://ryanfitzgerald.ca/ categories: - Web Development - Portfolio built_by: Ryan Fitzgerald - built_by_url: "https://github.com/RyanFitzgerald" + built_by_url: https://github.com/RyanFitzgerald featured: false - title: Kaizen description: | Content Marketing, PR & SEO Agency in London - main_url: "https://www.kaizen.co.uk/" - url: "https://www.kaizen.co.uk/" + main_url: https://www.kaizen.co.uk/ + url: https://www.kaizen.co.uk/ categories: - Agency - Blog @@ -1398,13 +1398,13 @@ - Web Development - SEO built_by: Bogdan Stanciu - built_by_url: "https://github.com/b0gd4n" + built_by_url: https://github.com/b0gd4n featured: false - title: HackerOne Platform Documentation description: | HackerOne's Product Documentation Center! - url: "https://docs.hackerone.com/" - main_url: "https://docs.hackerone.com/" + url: https://docs.hackerone.com/ + main_url: https://docs.hackerone.com/ categories: - Documentation - Security @@ -1412,8 +1412,8 @@ - title: Mux Video description: | API to video hosting and streaming - main_url: "https://mux.com/" - url: "https://mux.com/" + main_url: https://mux.com/ + url: https://mux.com/ categories: - Video - API @@ -1422,45 +1422,45 @@ description: > The easiest way for event organizers to instantly connect people, build a community of attendees and exhibitors, and increase revenue over time - main_url: "https://www.swapcard.com/" - url: "https://www.swapcard.com/" + main_url: https://www.swapcard.com/ + url: https://www.swapcard.com/ categories: - Event - Community - Marketing built_by: Swapcard - built_by_url: "https://www.swapcard.com/" + built_by_url: https://www.swapcard.com/ featured: false - title: Kalix description: > Kalix is perfect for healthcare professionals starting out in private practice, to those with an established clinic. - main_url: "https://www.kalixhealth.com/" - url: "https://www.kalixhealth.com/" + main_url: https://www.kalixhealth.com/ + url: https://www.kalixhealth.com/ categories: - Healthcare featured: false - title: Hubba description: | Buy wholesale products from thousands of independent, verified Brands. - main_url: "https://join.hubba.com/" - url: "https://join.hubba.com/" + main_url: https://join.hubba.com/ + url: https://join.hubba.com/ categories: - eCommerce featured: false - title: HyperPlay description: | In Asean's 1st Ever LOL Esports X Music Festival - main_url: "https://hyperplay.leagueoflegends.com/" - url: "https://hyperplay.leagueoflegends.com/" + main_url: https://hyperplay.leagueoflegends.com/ + url: https://hyperplay.leagueoflegends.com/ categories: - Music featured: false - title: Bad Credit Loans description: | Get the funds you need, from $250-$5,000 - main_url: "https://www.creditloan.com/" - url: "https://www.creditloan.com/" + main_url: https://www.creditloan.com/ + url: https://www.creditloan.com/ categories: - Finance featured: false @@ -1469,75 +1469,75 @@ Member-owned, not-for-profit, co-operative whose members receive financial benefits in the form of lower loan rates, higher savings rates, and lower fees than banks. - main_url: "https://fcfcu.com/" - url: "https://fcfcu.com/" + main_url: https://fcfcu.com/ + url: https://fcfcu.com/ categories: - Finance - Nonprofit - Business - Education - built_by: "https://fcfcu.com/" - built_by_url: "https://fcfcu.com/" + built_by: https://fcfcu.com/ + built_by_url: https://fcfcu.com/ featured: false - title: Office of Institutional Research and Assessment description: | Good Data, Good Decisions - main_url: "http://oira.ua.edu/" - url: "http://oira.ua.edu/" + main_url: http://oira.ua.edu/ + url: http://oira.ua.edu/ categories: - Data featured: false - title: The Telegraph Premium description: | Exclusive stories from award-winning journalists - main_url: "https://premium.telegraph.co.uk/" - url: "https://premium.telegraph.co.uk/" + main_url: https://premium.telegraph.co.uk/ + url: https://premium.telegraph.co.uk/ categories: - Media featured: false - title: html2canvas description: | Screenshots with JavaScript - main_url: "http://html2canvas.hertzen.com/" - url: "http://html2canvas.hertzen.com/" - source_url: "https://github.com/niklasvh/html2canvas/tree/master/www" + main_url: http://html2canvas.hertzen.com/ + url: http://html2canvas.hertzen.com/ + source_url: https://github.com/niklasvh/html2canvas/tree/master/www categories: - JavaScript - Documentation built_by: Niklas von Hertzen - built_by_url: "http://hertzen.com/" + built_by_url: http://hertzen.com/ featured: false - title: Dato CMS description: | The API-based CMS your editors will love - main_url: "https://www.datocms.com/" - url: "https://www.datocms.com/" + main_url: https://www.datocms.com/ + url: https://www.datocms.com/ categories: - API featured: false - title: Half Electronics description: | Personal website - main_url: "https://www.halfelectronic.com/" - url: "https://www.halfelectronic.com/" + main_url: https://www.halfelectronic.com/ + url: https://www.halfelectronic.com/ categories: - Blog built_by: Fernando Poumian - built_by_url: "https://github.com/fpoumian/halfelectronic.com" + built_by_url: https://github.com/fpoumian/halfelectronic.com featured: false - title: Frithir Software Development - main_url: "https://frithir.com/" - url: "https://frithir.com/" + main_url: https://frithir.com/ + url: https://frithir.com/ featured: false description: "I DRINK COFFEE, WRITE CODE AND IMPROVE MY DEVELOPMENT SKILLS EVERY DAY." categories: - Design - Web Development built_by: Frithir - built_by_url: "https://Frithir.com/" + built_by_url: https://Frithir.com/ - title: Unow - main_url: "https://www.unow.fr/" - url: "https://www.unow.fr/" + main_url: https://www.unow.fr/ + url: https://www.unow.fr/ categories: - Education - Marketing @@ -1545,44 +1545,44 @@ - title: Peter Hironaka description: | Freelance Web Developer based in Los Angeles. - main_url: "https://peterhironaka.com/" - url: "https://peterhironaka.com/" + main_url: https://peterhironaka.com/ + url: https://peterhironaka.com/ categories: - Portfolio - Web Development built_by: Peter Hironaka - built_by_url: "https://github.com/PHironaka" + built_by_url: https://github.com/PHironaka featured: false - title: Michael McQuade description: | Personal website and blog for Michael McQuade - main_url: "https://giraffesyo.io" - url: "https://giraffesyo.io" + main_url: https://giraffesyo.io + url: https://giraffesyo.io categories: - Blog built_by: Michael McQuade - built_by_url: "https://github.com/giraffesyo" + built_by_url: https://github.com/giraffesyo featured: false - title: Haacht Brewery description: | Corporate website for Haacht Brewery. Designed and Developed by Gafas. - main_url: "https://haacht.com/en/" - url: "https://haacht.com" + main_url: https://haacht.com/en/ + url: https://haacht.com categories: - Marketing built_by: Gafas - built_by_url: "https://gafas.be" + built_by_url: https://gafas.be featured: false - title: StoutLabs description: | Portfolio of Daniel Stout, freelance developer in East Tennessee. - main_url: "https://www.stoutlabs.com/" - url: "https://www.stoutlabs.com/" + main_url: https://www.stoutlabs.com/ + url: https://www.stoutlabs.com/ categories: - Web Development - Portfolio built_by: Daniel Stout - built_by_url: "https://github.com/stoutlabs" + built_by_url: https://github.com/stoutlabs featured: false - title: Chicago Ticket Outcomes By Neighborhood description: | @@ -1595,7 +1595,7 @@ main_url: >- https://projects.propublica.org/graphics/il/il-city-sticker-tickets-maps/ticket-status/?initialWidth=782 built_by: David Eads - built_by_url: "https://github.com/eads" + built_by_url: https://github.com/eads featured: false - title: Chicago South Side Traffic Ticketing rates description: | @@ -1608,14 +1608,14 @@ - Media - Nonprofit built_by: David Eads - built_by_url: "https://github.com/eads" + built_by_url: https://github.com/eads featured: false - title: Otsimo description: > Otsimo is a special education application for children with autism, down syndrome and other developmental disabilities. - main_url: "https://otsimo.com/en/" - url: "https://otsimo.com/en/" + main_url: https://otsimo.com/en/ + url: https://otsimo.com/en/ categories: - Blog - Education @@ -1625,16 +1625,16 @@ Mostly the result of playing with Gatsby and learning about react and graphql. Using the screenshot plugin to showcase the work done for my company in the last 2 years, and a good amount of other experiments. - main_url: "https://mattbag.github.io" - url: "https://mattbag.github.io" + main_url: https://mattbag.github.io + url: https://mattbag.github.io categories: - Portfolio featured: false - title: Lisa Ye's Blog description: | Simple blog/portofolio for a fashion designer. Gatsby_v2 + Netlify cms - main_url: "https://lisaye.netlify.com/" - url: "https://lisaye.netlify.com/" + main_url: https://lisaye.netlify.com/ + url: https://lisaye.netlify.com/ categories: - Blog - Portfolio @@ -1643,19 +1643,19 @@ description: > Little homepage of Artem Sapegin, a frontend developer, passionate photographer, coffee drinker and crazy dogs’ owner. - main_url: "https://sapegin.me/" - url: "https://sapegin.me/" + main_url: https://sapegin.me/ + url: https://sapegin.me/ categories: - Portfolio - Open Source - Web Development built_by: Artem Sapegin - built_by_url: "https://github.com/sapegin" + built_by_url: https://github.com/sapegin featured: false - title: SparkPost Developers - main_url: "https://developers.sparkpost.com/" - url: "https://developers.sparkpost.com/" - source_url: "https://github.com/SparkPost/developers.sparkpost.com" + main_url: https://developers.sparkpost.com/ + url: https://developers.sparkpost.com/ + source_url: https://github.com/SparkPost/developers.sparkpost.com categories: - Documentation - API @@ -1664,32 +1664,32 @@ description: > The portfolio blog of Malik Browne, a full-stack engineer, foodie, and avid blogger/YouTuber. - main_url: "https://www.malikbrowne.com/about" - url: "https://www.malikbrowne.com" + main_url: https://www.malikbrowne.com/about + url: https://www.malikbrowne.com categories: - Blog - Portfolio built_by: Malik Browne - built_by_url: "https://twitter.com/milkstarz" + built_by_url: https://twitter.com/milkstarz featured: false - title: Novatics description: | Digital products that inspire and make a difference - main_url: "https://www.novatics.com.br" - url: "https://www.novatics.com.br" + main_url: https://www.novatics.com.br + url: https://www.novatics.com.br categories: - Portfolio - Technology - Web Development built_by: Novatics - built_by_url: "https://github.com/Novatics" + built_by_url: https://github.com/Novatics featured: false - title: Max McKinney description: > I’m a developer and designer with a focus in web technologies. I build cars on the side. - main_url: "https://maxmckinney.com/" - url: "https://maxmckinney.com/" + main_url: https://maxmckinney.com/ + url: https://maxmckinney.com/ categories: - Portfolio - Web Development @@ -1699,9 +1699,9 @@ - title: Stickyard description: | Make your React component sticky the easy way - main_url: "https://nihgwu.github.io/stickyard/" - url: "https://nihgwu.github.io/stickyard/" - source_url: "https://github.com/nihgwu/stickyard/tree/master/website" + main_url: https://nihgwu.github.io/stickyard/ + url: https://nihgwu.github.io/stickyard/ + source_url: https://github.com/nihgwu/stickyard/tree/master/website categories: - Web Development built_by: Neo Nie @@ -1709,18 +1709,18 @@ - title: Agata Milik description: | Website of a Polish psychologist/psychotherapist based in Gdańsk, Poland. - main_url: "https://agatamilik.pl" - url: "https://agatamilik.pl" + main_url: https://agatamilik.pl + url: https://agatamilik.pl categories: - Marketing - Healthcare built_by: Piotr Fedorczyk - built_by_url: "https://piotrf.pl" + built_by_url: https://piotrf.pl featured: false - title: WebPurple - main_url: "https://www.webpurple.net/" - url: "https://www.webpurple.net/" - source_url: "https://github.com/WebPurple/site" + main_url: https://www.webpurple.net/ + url: https://www.webpurple.net/ + source_url: https://github.com/WebPurple/site description: >- Site of local (Russia, Ryazan) frontend community. Main purpose is to show info about meetups and keep blog. @@ -1731,23 +1731,23 @@ - Blog - Open Source built_by: Nikita Kirsanov - built_by_url: "https://twitter.com/kitos_kirsanov" + built_by_url: https://twitter.com/kitos_kirsanov featured: false - title: Papertrail.io description: | Inspection Management for the 21st Century - main_url: "https://www.papertrail.io/" - url: "https://www.papertrail.io/" + main_url: https://www.papertrail.io/ + url: https://www.papertrail.io/ categories: - Marketing - Technology built_by: Papertrail.io - built_by_url: "https://www.papertrail.io" + built_by_url: https://www.papertrail.io featured: false - title: Matt Ferderer - main_url: "https://mattferderer.com" - url: "https://mattferderer.com" - source_url: "https://github.com/mattferderer/gatsbyblog" + main_url: https://mattferderer.com + url: https://mattferderer.com + source_url: https://github.com/mattferderer/gatsbyblog description: > A blog built with Gatsby that discusses web related tech such as JavaScript, .NET, Blazor & security. @@ -1755,12 +1755,12 @@ - Blog - Web Development built_by: Matt Ferderer - built_by_url: "https://twitter.com/mattferderer" + built_by_url: https://twitter.com/mattferderer featured: false - title: Sahyadri Open Source Community - main_url: "https://sosc.org.in" - url: "https://sosc.org.in" - source_url: "https://github.com/haxzie/sosc-website" + main_url: https://sosc.org.in + url: https://sosc.org.in + source_url: https://github.com/haxzie/sosc-website description: > Official website of Sahyadri Open Source Community for community blog, event details and members info. @@ -1769,44 +1769,44 @@ - Community - Open Source built_by: Musthaq Ahamad - built_by_url: "https://github.com/haxzie" + built_by_url: https://github.com/haxzie featured: false - title: Tech Confessions - main_url: "https://confessions.tech" - url: "https://confessions.tech" - source_url: "https://github.com/JonathanSpeek/tech-confessions" + main_url: https://confessions.tech + url: https://confessions.tech + source_url: https://github.com/JonathanSpeek/tech-confessions description: "A guilt-free place for us to confess our tech sins \U0001F64F\n" categories: - Community - Open Source built_by: Jonathan Speek - built_by_url: "https://speek.design" + built_by_url: https://speek.design featured: false - title: Thibault Maekelbergh - main_url: "https://thibmaek.com" - url: "https://thibmaek.com" - source_url: "https://github.com/thibmaek/thibmaek.github.io" + main_url: https://thibmaek.com + url: https://thibmaek.com + source_url: https://github.com/thibmaek/thibmaek.github.io description: | A nice blog about development, Raspberry Pi, plants and probably records. categories: - Blog - Open Source built_by: Thibault Maekelbergh - built_by_url: "https://twitter.com/thibmaek" + built_by_url: https://twitter.com/thibmaek featured: false - title: LearnReact.design - main_url: "https://learnreact.design" - url: "https://learnreact.design" + main_url: https://learnreact.design + url: https://learnreact.design description: > React Essentials For Designers: A React course tailored for product designers, ux designers, ui designers. categories: - Blog built_by: Linton Ye - built_by_url: "https://twitter.com/lintonye" + built_by_url: https://twitter.com/lintonye - title: Mega House Creative - main_url: "https://www.megahousecreative.com/" - url: "https://www.megahousecreative.com/" + main_url: https://www.megahousecreative.com/ + url: https://www.megahousecreative.com/ description: > Mega House Creative is a digital agency that provides unique goal-oriented web marketing solutions. @@ -1816,30 +1816,30 @@ built_by: Daniel Robinson featured: false - title: Tobie Marier Robitaille - csc - main_url: "https://tobiemarierrobitaille.com/" - url: "https://tobiemarierrobitaille.com/en/" + main_url: https://tobiemarierrobitaille.com/ + url: https://tobiemarierrobitaille.com/en/ description: | Portfolio site for director of photography Tobie Marier Robitaille categories: - Portfolio - Gallery built_by: Mill3 Studio - built_by_url: "https://mill3.studio/en/" + built_by_url: https://mill3.studio/en/ featured: false - title: Bestvideogame.deals - main_url: "https://bestvideogame.deals/" - url: "https://bestvideogame.deals/" + main_url: https://bestvideogame.deals/ + url: https://bestvideogame.deals/ description: | Video game comparison website for the UK, build with GatsbyJS. categories: - eCommerce built_by: Koen Kamphuis - built_by_url: "https://koenkamphuis.com/" + built_by_url: https://koenkamphuis.com/ featured: false - title: Mahipat's Portfolio - main_url: "https://mojaave.com/" - url: "https://mojaave.com" - source_url: "https://github.com/mhjadav/mojaave" + main_url: https://mojaave.com/ + url: https://mojaave.com + source_url: https://github.com/mhjadav/mojaave description: > mojaave.com is Mahipat's portfolio, I have developed it using Gatsby v2 and Bootstrap, To get in touch with people looking for full-stack developer. @@ -1847,11 +1847,11 @@ - Portfolio - Web Development built_by: Mahipat Jadav - built_by_url: "https://mojaave.com/" + built_by_url: https://mojaave.com/ featured: false - title: Insights - main_url: "https://justaskusers.com/" - url: "https://justaskusers.com/" + main_url: https://justaskusers.com/ + url: https://justaskusers.com/ description: > Insights helps user experience (UX) researchers conduct their research and make sense of the findings. @@ -1859,12 +1859,12 @@ - User Experience - Design built_by: Just Ask Users - built_by_url: "https://justaskusers.com/" + built_by_url: https://justaskusers.com/ featured: false - title: Mintfort - main_url: "https://mintfort.com/" - url: "https://mintfort.com/" - source_url: "https://github.com/MintFort/mintfort.com" + main_url: https://mintfort.com/ + url: https://mintfort.com/ + source_url: https://github.com/MintFort/mintfort.com description: > Mintfort, the first crypto-friendly bank account. Store and manage assets on the blockchain. @@ -1872,27 +1872,27 @@ - Technology - Finance built_by: Axel Fuhrmann - built_by_url: "https://axelfuhrmann.com/" + built_by_url: https://axelfuhrmann.com/ featured: false - title: React Native Explorer - main_url: "https://react-native-explorer.firebaseapp.com" - url: "https://react-native-explorer.firebaseapp.com" + main_url: https://react-native-explorer.firebaseapp.com + url: https://react-native-explorer.firebaseapp.com description: | Explorer React Native packages and examples effortlessly. categories: - Education featured: false - title: 500Tech - main_url: "https://500tech.com/" - url: "https://500tech.com/" + main_url: https://500tech.com/ + url: https://500tech.com/ featured: false categories: - Web Development - Agency - Open Source - title: eworld - main_url: "https://eworld.herokuapp.com/" - url: "https://eworld.herokuapp.com/" + main_url: https://eworld.herokuapp.com/ + url: https://eworld.herokuapp.com/ featured: false categories: - eCommerce @@ -1900,8 +1900,8 @@ - title: It's a Date description: > It's a Date is a dating app that actually involves dating. - main_url: "https://www.itsadate.app/" - url: "https://www.itsadate.app/" + main_url: https://www.itsadate.app/ + url: https://www.itsadate.app/ featured: false categories: - App @@ -1911,7 +1911,7 @@ Asynchronous HBase client for NodeJs using REST. main_url: https://hbase.js.org/ url: https://hbase.js.org/ - source_url: "https://github.com/adaltas/node-hbase" + source_url: https://github.com/adaltas/node-hbase categories: - Documentation - Open Source @@ -1947,8 +1947,8 @@ built_by_url: https://twitter.com/geddski featured: false - title: Rung - main_url: "https://rung.com.br/" - url: "https://rung.com.br/" + main_url: https://rung.com.br/ + url: https://rung.com.br/ description: > Rung alerts you about the exceptionalities of your personal and professional life. categories: @@ -1957,9 +1957,9 @@ - Travel featured: false - title: Mokkapps - main_url: "https://www.mokkapps.de/" - url: "https://www.mokkapps.de/" - source_url: "https://github.com/mokkapps/website" + main_url: https://www.mokkapps.de/ + url: https://www.mokkapps.de/ + source_url: https://github.com/mokkapps/website description: > Portfolio website from Michael Hoffmann. Passionate software developer with focus on web-based technologies. categories: @@ -1969,8 +1969,8 @@ - Mobile Development featured: false - title: Premier Octet - main_url: "https://www.premieroctet.com/" - url: "https://www.premieroctet.com/" + main_url: https://www.premieroctet.com/ + url: https://www.premieroctet.com/ description: > Premier Octet is a React-based agency categories: @@ -1979,9 +1979,9 @@ - Mobile Development featured: false - title: Thorium - main_url: "https://www.thoriumsim.com/" - url: "https://www.thoriumsim.com/" - source_url: "https://github.com/thorium-sim/thoriumsim.com" + main_url: https://www.thoriumsim.com/ + url: https://www.thoriumsim.com/ + source_url: https://github.com/thorium-sim/thoriumsim.com description: > Thorium - Open-source Starship Simulator Controls for Live Action Role Play built_by: Alex Anderson @@ -1997,9 +1997,9 @@ - Web Development featured: false - title: Cameron Maske - main_url: "https://www.cameronmaske.com/" - url: "https://www.cameronmaske.com/courses/introduction-to-pytest/" - source_url: "https://github.com/cameronmaske/cameronmaske.com-v2" + main_url: https://www.cameronmaske.com/ + url: https://www.cameronmaske.com/courses/introduction-to-pytest/ + source_url: https://github.com/cameronmaske/cameronmaske.com-v2 description: > The homepage of Cameron Maske, a freelance full-stack developer, who is currently working on a free pytest video course categories: @@ -2014,27 +2014,27 @@ contribute to more equal educational opportunities by providing free tutoring to refugees and children from underprivileged families. The site is built on Gatsby v2, styled-components and Contentful. It supports Google Analytics, fluid typography and Algolia search. - main_url: "https://studenten-bilden-schueler.de" - url: "https://studenten-bilden-schueler.de" - source_url: "https://github.com/StudentenBildenSchueler/homepage" + main_url: https://studenten-bilden-schueler.de + url: https://studenten-bilden-schueler.de + source_url: https://github.com/StudentenBildenSchueler/homepage categories: - Education - Nonprofit - Blog built_by: Janosh Riebesell - built_by_url: "https://janosh.io" + built_by_url: https://janosh.io featured: false - title: Mike's Remote List - main_url: "https://www.mikesremotelist.com" - url: "https://www.mikesremotelist.com" + main_url: https://www.mikesremotelist.com + url: https://www.mikesremotelist.com description: > A list of remote jobs, updated throughout the day. Built on Gatsby v1 and powered by Contentful, Google Sheets, string and sticky tape. categories: - Marketing featured: false - title: Madvoid - main_url: "https://madvoid.com/" - url: "https://madvoid.com/screenshot/" + main_url: https://madvoid.com/ + url: https://madvoid.com/screenshot/ featured: false description: > Madvoid is a team of expert developers dedicated to creating simple, clear, usable and blazing fast web and mobile apps. @@ -2051,8 +2051,8 @@ - title: MOMNOTEBOOK.COM description: > Sharing knowledge and experiences that make childhood and motherhood rich, vibrant and healthy. - main_url: "https://momnotebook.com/" - url: "https://momnotebook.com/" + main_url: https://momnotebook.com/ + url: https://momnotebook.com/ featured: false built_by: Aleksander Hansson built_by_url: https://www.linkedin.com/in/aleksanderhansson/ @@ -2061,33 +2061,33 @@ - title: Pirate Studios description: > Reinventing music studios with 24/7 self service rehearsal, DJ & production rooms available around the world. - main_url: "https://www.piratestudios.co" - url: "https://www.piratestudios.co" + main_url: https://www.piratestudios.co + url: https://www.piratestudios.co featured: false built_by: The Pirate Studios team built_by_url: https://github.com/piratestudios/ categories: - Music - title: Aurora EOS - main_url: "https://www.auroraeos.com/" - url: "https://www.auroraeos.com/" + main_url: https://www.auroraeos.com/ + url: https://www.auroraeos.com/ featured: false categories: - Finance - Marketing - Blog built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: MadeComfy - main_url: "https://madecomfy.com.au/" - url: "https://madecomfy.com.au/" + main_url: https://madecomfy.com.au/ + url: https://madecomfy.com.au/ description: > Short term rental management startup, using Contentful + Gatsby + CircleCI featured: false categories: - Travel built_by: Lucas Vilela - built_by_url: "https://madecomfy.com.au/" + built_by_url: https://madecomfy.com.au/ - title: Tiger Facility Services description: > Tiger Facility Services combines facility management expertise with state of the art software to offer a sustainable and customer oriented cleaning and facility service. @@ -2110,8 +2110,8 @@ - title: Wire • Secure collaboration platform description: > Corporate website of Wire, an open source, end-to-end encrypted collaboration platform - main_url: "https://wire.com" - url: "https://wire.com" + main_url: https://wire.com + url: https://wire.com featured: false categories: - Open Source @@ -2120,76 +2120,76 @@ - Blog - App built_by: Wire team - built_by_url: "https://github.com/orgs/wireapp/people" + built_by_url: https://github.com/orgs/wireapp/people - title: J. Patrick Raftery - main_url: "https://www.jpatrickraftery.com" - url: "https://www.jpatrickraftery.com" + main_url: https://www.jpatrickraftery.com + url: https://www.jpatrickraftery.com description: J. Patrick Raftery is an opera singer and voice teacher based in Vancouver, BC. categories: - Portfolio - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Aria Umezawa - main_url: "https://www.ariaumezawa.com" - url: "https://www.ariaumezawa.com" + main_url: https://www.ariaumezawa.com + url: https://www.ariaumezawa.com description: Aria Umezawa is a director, producer, and writer currently based in San Francisco. Site designed by Stephen Bell. categories: - Portfolio - Music - Entertainment built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Pomegranate Opera - main_url: "https://pomegranateopera.netlify.com" - url: "https://pomegranateopera.netlify.com" + main_url: https://pomegranateopera.netlify.com + url: https://pomegranateopera.netlify.com description: Pomegranate Opera is a lesbian opera written by Amanda Hale & Kye Marshall. Site designed by Stephen Bell. categories: - Gallery - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Daniel Cabena - main_url: "https://www.danielcabena.com" - url: "https://www.danielcabena.com" + main_url: https://www.danielcabena.com + url: https://www.danielcabena.com description: Daniel Cabena is a Canadian countertenor highly regarded in both Canada and Europe for prize-winning performances ranging from baroque to contemporary repertoire. Site designed by Stephen Bell. categories: - Portfolio - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Artist.Center - main_url: "https://artistcenter.netlify.com" - url: "https://artistcenter.netlify.com" + main_url: https://artistcenter.netlify.com + url: https://artistcenter.netlify.com description: The marketing page for Artist.Center, a soon-to-launch platform designed to connect opera singers to opera companies. Site designed by Stephen Bell. categories: - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: DG Volo & Company - main_url: "https://www.dgvolo.com" - url: "https://www.dgvolo.com" + main_url: https://www.dgvolo.com + url: https://www.dgvolo.com description: DG Volo & Company is a Toronto-based investment consultancy. Site designed by Stephen Bell. categories: - Finance built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Shawna Lucey - main_url: "https://www.shawnalucey.com" - url: "https://www.shawnalucey.com" + main_url: https://www.shawnalucey.com + url: https://www.shawnalucey.com description: Shawna Lucey is an American theater and opera director based in New York City. Site designed by Stephen Bell. categories: - Portfolio - Music - Entertainment built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Leyan Lo main_url: https://www.leyanlo.com @@ -2226,9 +2226,9 @@ Personal blog and portfolio of Janosh Riebesell. The site is built with Gatsby v2 and designed entirely with styled-components v4. Much of the layout was achieved with CSS grid. It supports Google Analytics, fluid typography and Algolia search. - main_url: "https://janosh.io" - url: "https://janosh.io" - source_url: "https://github.com/janosh/janosh.io" + main_url: https://janosh.io + url: https://janosh.io + source_url: https://github.com/janosh/janosh.io categories: - Portfolio - Blog @@ -2236,11 +2236,11 @@ - Photography - Travel built_by: Janosh Riebesell - built_by_url: "https://janosh.io" + built_by_url: https://janosh.io featured: false - title: Gold Edge Training - url: "https://www.goldedgetraining.co.uk" - main_url: "https://www.goldedgetraining.co.uk" + url: https://www.goldedgetraining.co.uk + main_url: https://www.goldedgetraining.co.uk description: > AAT approved online distance learning accountancy training provider. Branded landing page / mini brochure promoting competitor differentiators, student testimonials, offers, service benefits and features. Designed to both inform potential students and encourage visits to company eCommerce site or direct company contact. categories: @@ -2250,23 +2250,23 @@ - Business - Finance built_by: Leo Furze-Waddock - built_by_url: "https://www.linkedin.com/in/lfurzewaddock" + built_by_url: https://www.linkedin.com/in/lfurzewaddock - title: Gatsby Manor description: > We build themes for gatsby. We have themes for all projects including personal, portfolio, ecommerce, landing pages and more. We also run an in-house web dev and design studio. If you cannot find what you want, we can build it for you! Email us at gatsbymanor@gmail.com with questions. - main_url: "https://www.gatsbymanor.com" - url: "https://www.gatsbymanor.com" - source_url: "https://github.com/gatsbymanor" + main_url: https://www.gatsbymanor.com + url: https://www.gatsbymanor.com + source_url: https://github.com/gatsbymanor categories: - Web Development - Agency - Technology - Freelance built_by: Steven Natera - built_by_url: "https://stevennatera.com" + built_by_url: https://stevennatera.com - title: Ema Suriano's Portfolio main_url: https://emasuriano.com/ url: https://emasuriano.com/ @@ -2339,14 +2339,14 @@ - title: Fitekran description: > One of the most visited Turkish blogs about health, sports and healthy lifestyle, that has been rebuilt with Gatsby v2 using WordPress. - main_url: "https://www.fitekran.com" - url: "https://www.fitekran.com" + main_url: https://www.fitekran.com + url: https://www.fitekran.com categories: - Science - Healthcare - Blog built_by: Burak Tokak - built_by_url: "https://www.buraktokak.com" + built_by_url: https://www.buraktokak.com - title: Serverless main_url: https://serverless.com url: https://serverless.com @@ -2426,9 +2426,9 @@ built_by: Hudl built_by_url: https://www.hudl.com/ - title: Subtle UI - main_url: "https://subtle-ui.netlify.com/" - url: "https://subtle-ui.netlify.com/" - source_url: "https://github.com/ryanwiemer/subtle-ui" + main_url: https://subtle-ui.netlify.com/ + url: https://subtle-ui.netlify.com/ + source_url: https://github.com/ryanwiemer/subtle-ui description: > A collection of clever yet understated user interactions found on the web. categories: @@ -2436,19 +2436,19 @@ - Open Source - User Experience built_by: Ryan Wiemer - built_by_url: "https://www.ryanwiemer.com/" + built_by_url: https://www.ryanwiemer.com/ featured: false - title: developer.bitcoin.com - main_url: "https://developer.bitcoin.com/" - url: "https://developer.bitcoin.com/" + main_url: https://developer.bitcoin.com/ + url: https://developer.bitcoin.com/ description: > Bitbox based bitcoin.com developer platform and resources. categories: - Finance featured: false - title: Barmej - main_url: "https://app.barmej.com/" - url: "https://app.barmej.com/" + main_url: https://app.barmej.com/ + url: https://app.barmej.com/ description: > An interactive platform to learn different programming languages in Arabic for FREE categories: @@ -2456,7 +2456,7 @@ - Programming - Learning built_by: Obytes - built_by_url: "https://www.obytes.com/" + built_by_url: https://www.obytes.com/ featured: false - title: Emergence main_url: https://emcap.com/ @@ -2493,28 +2493,28 @@ built_by_url: https://twitter.com/jumpalottahigh featured: false - title: Bear Archery - main_url: "https://beararchery.com/" - url: "https://beararchery.com/" + main_url: https://beararchery.com/ + url: https://beararchery.com/ categories: - eCommerce - Sports built_by: Escalade Sports - built_by_url: "https://www.escaladesports.com/" + built_by_url: https://www.escaladesports.com/ featured: false - title: "attn:" - main_url: "https://www.attn.com/" - url: "https://www.attn.com/" + main_url: https://www.attn.com/ + url: https://www.attn.com/ categories: - Media - Entertainment built_by: "attn:" - built_by_url: "https://www.attn.com/" + built_by_url: https://www.attn.com/ featured: false - title: Mirror Conf description: > Mirror Conf is a conference designed to empower designers and frontend developers who have a thirst for knowledge and want to broaden their horizons. - main_url: "https://www.mirrorconf.com/" - url: "https://www.mirrorconf.com/" + main_url: https://www.mirrorconf.com/ + url: https://www.mirrorconf.com/ categories: - Conference - Design @@ -2544,15 +2544,15 @@ built_by_url: https://kikobeats.com/ featured: false - title: Markets.com - main_url: "https://www.markets.com/" - url: "https://www.markets.com/" + main_url: https://www.markets.com/ + url: https://www.markets.com/ featured: false categories: - Finance - title: Kevin Legrand - url: "https://k-legrand.com" - main_url: "https://k-legrand.com" - source_url: "https://github.com/Manoz/k-legrand.com" + url: https://k-legrand.com + main_url: https://k-legrand.com + source_url: https://github.com/Manoz/k-legrand.com description: > Personal website and blog built with love with Gatsby v2 categories: @@ -2610,15 +2610,15 @@ built_by_url: https://github.com/ianbusko featured: false - title: People For Bikes - url: "https://2017.peopleforbikes.org/" - main_url: "https://2017.peopleforbikes.org/" + url: https://2017.peopleforbikes.org/ + main_url: https://2017.peopleforbikes.org/ categories: - Community - Sports - Gallery - Nonprofit built_by: PeopleForBikes - built_by_url: "https://peopleforbikes.org/about-us/who-we-are/staff/" + built_by_url: https://peopleforbikes.org/about-us/who-we-are/staff/ featured: false - title: Wide Eye description: > @@ -2810,16 +2810,16 @@ I enjoy teaching and sharing what I know. I give professional advice to developers and companies. My wife and my children are everything in my life. - main_url: "https://ramonchancay.me/" - url: "https://ramonchancay.me/" - source_url: "https://github.com/devrchancay/personal-site" + main_url: https://ramonchancay.me/ + url: https://ramonchancay.me/ + source_url: https://github.com/devrchancay/personal-site featured: false categories: - Blog - Technology - Web Development built_by: Ramón Chancay - built_by_url: "https://ramonchancay.me/" + built_by_url: https://ramonchancay.me/ - title: BELLHOPS main_url: https://www.getbellhops.com/ url: https://www.getbellhops.com/ @@ -2943,9 +2943,9 @@ built_by_url: https://github.com/JAMstack-paris featured: false - title: DexWallet - The only Wallet you need by Dexlab - main_url: "https://www.dexwallet.io/" - url: "https://www.dexwallet.io/" - source_url: "https://github.com/dexlab-io/DexWallet-website" + main_url: https://www.dexwallet.io/ + url: https://www.dexwallet.io/ + source_url: https://github.com/dexlab-io/DexWallet-website featured: false description: >- DexWallet is a secure, multi-chain, mobile wallet with an upcoming one-click exchange for mobile. @@ -2953,7 +2953,7 @@ - App - Open Source built_by: DexLab - built_by_url: "https://github.com/dexlab-io" + built_by_url: https://github.com/dexlab-io - title: Kings Valley Paving url: https://kingsvalleypaving.com main_url: https://kingsvalleypaving.com @@ -2965,8 +2965,8 @@ built_by_url: https://www.michaeluloth.com featured: false - title: Peter Barrett - url: "https://www.peterbarrett.ca" - main_url: "https://www.peterbarrett.ca" + url: https://www.peterbarrett.ca + main_url: https://www.peterbarrett.ca description: > Peter Barrett is a Canadian baritone from Newfoundland and Labrador who performs opera and concert repertoire in Canada, the U.S. and around the world. Site designed by Stephen Bell. categories: @@ -3026,9 +3026,9 @@ built_by_url: https://www.clearme.com featured: false - title: VS Code Rocks - main_url: "https://vscode.rocks" - url: "https://vscode.rocks" - source_url: "https://github.com/lannonbr/vscode-rocks" + main_url: https://vscode.rocks + url: https://vscode.rocks + source_url: https://github.com/lannonbr/vscode-rocks featured: false description: > VS Code Rocks is a place for weekly news on the newest features and updates to Visual Studio Code as well as trending extensions and neat tricks to continually improve your VS Code skills. @@ -3037,25 +3037,25 @@ - Blog - Web Development built_by: Benjamin Lannon - built_by_url: "https://github.com/lannonbr" + built_by_url: https://github.com/lannonbr - title: Particle - main_url: "https://www.particle.io" - url: "https://www.particle.io" + main_url: https://www.particle.io + url: https://www.particle.io featured: false description: Particle is a fully-integrated IoT platform that offers everything you need to deploy an IoT product. categories: - Marketing - title: freeCodeCamp curriculum - main_url: "https://learn.freecodecamp.org" - url: "https://learn.freecodecamp.org" + main_url: https://learn.freecodecamp.org + url: https://learn.freecodecamp.org featured: false description: Learn to code with free online courses, programming projects, and interview preparation for developer jobs. categories: - Web Development - Learning - title: Tandem - main_url: "https://www.tandem.co.uk" - url: "https://www.tandem.co.uk" + main_url: https://www.tandem.co.uk + url: https://www.tandem.co.uk description: > We're on a mission to free you of money misery. Our app, card and savings account are designed to help you spend less time worrying about money and more time enjoying life. categories: @@ -3065,8 +3065,8 @@ built_by_url: https://github.com/tandembank featured: false - title: Monbanquet.fr - main_url: "https://monbanquet.fr" - url: "https://monbanquet.fr" + main_url: https://monbanquet.fr + url: https://monbanquet.fr description: > Give your corporate events the food and quality it deserves, thanks to the know-how of the best local artisans. categories: @@ -3088,8 +3088,8 @@ built_by_url: https://github.com/v4iv featured: false - title: Wild Drop Surf Camp - main_url: "https://wilddropsurfcamp.com" - url: "https://wilddropsurfcamp.com" + main_url: https://wilddropsurfcamp.com + url: https://wilddropsurfcamp.com description: > Welcome to Portugal's best kept secret and be amazed with our nature. Here you can explore, surf, taste the world's best gastronomy and wine, feel the North Canyon's power with the biggest waves in the world and so many other amazing things. Find us, discover yourself! categories: @@ -3131,7 +3131,7 @@ - Education - Open Source built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com - title: Grooovinger url: https://www.grooovinger.com main_url: https://www.grooovinger.com @@ -3237,7 +3237,7 @@ - Gallery featured: false built_by: LekoArts - built_by_url: "https://github.com/LekoArts" + built_by_url: https://github.com/LekoArts description: > Source from The Movie Database (TMDb) API (v3) in Gatsby. This example is built with react-spring, React hooks and react-tabs and showcases the gatsby-source-tmdb plugin. It also has some client-only paths and uses gatsby-image. - title: LANDR - Creative Tools for Musicians @@ -3264,19 +3264,19 @@ - Documentation featured: false built_by: NearForm - built_by_url: "https://www.nearform.com/" + built_by_url: https://www.nearform.com/ description: > Tools to help diagnose and pinpoint Node.js performance issues. - title: KOBIT - main_url: "https://kobit.in" - url: "https://kobit.in" + main_url: https://kobit.in + url: https://kobit.in description: Automated Google Analytics Report with everything you need and more featured: false categories: - Marketing - Blog built_by: mottox2 - built_by_url: "https://mottox2.com" + built_by_url: https://mottox2.com - title: Aleksander Hansson main_url: https://ahansson.com url: https://ahansson.com @@ -3293,8 +3293,8 @@ built_by: Aleksander Hansson built_by_url: https://www.linkedin.com/in/aleksanderhansson/ - title: Surfing Nosara - main_url: "https://www.surfingnosara.com" - url: "https://www.surfingnosara.com" + main_url: https://www.surfingnosara.com + url: https://www.surfingnosara.com description: Real estate, vacation, and surf report hub for Nosara, Costa Rica featured: false categories: @@ -3303,7 +3303,7 @@ - Gallery - Marketing built_by: Desarol - built_by_url: "https://www.desarol.com" + built_by_url: https://www.desarol.com - title: Crispin Porter Bogusky url: https://cpbgroup.com/ main_url: https://cpbgroup.com/ @@ -3326,8 +3326,8 @@ - Documentation featured: false - title: Engel & Völkers Ibiza Holiday Rentals - main_url: "https://www.ev-ibiza.com/" - url: "https://www.ev-ibiza.com/" + main_url: https://www.ev-ibiza.com/ + url: https://www.ev-ibiza.com/ featured: false built_by: Ventura Digitalagentur description: > @@ -3335,16 +3335,16 @@ categories: - Travel - title: Sylvain Hamann's personal website - url: "https://shamann.fr" - main_url: "https://shamann.fr" - source_url: "https://github.com/sylvhama/shamann-gatsby/" + url: https://shamann.fr + main_url: https://shamann.fr + source_url: https://github.com/sylvhama/shamann-gatsby/ description: > Sylvain Hamann, web developer from France categories: - Portfolio - Web Development built_by: Sylvain Hamann - built_by_url: "https://twitter.com/sylvhama" + built_by_url: https://twitter.com/sylvhama featured: false - title: Luca Crea's portfolio main_url: https://lcrea.github.io @@ -3357,17 +3357,17 @@ built_by_url: https://github.com/lcrea featured: false - title: Escalade Sports - main_url: "https://www.escaladesports.com/" - url: "https://www.escaladesports.com/" + main_url: https://www.escaladesports.com/ + url: https://www.escaladesports.com/ categories: - eCommerce - Sports built_by: Escalade Sports - built_by_url: "https://www.escaladesports.com/" + built_by_url: https://www.escaladesports.com/ featured: false - title: Exposify - main_url: "https://www.exposify.de/" - url: "https://www.exposify.de/" + main_url: https://www.exposify.de/ + url: https://www.exposify.de/ description: > This is our German website built with Gatsby 2.0, Emotion and styled-system. Exposify is a proptech startup and builds technology for real estate businesses. @@ -3379,7 +3379,7 @@ - Agency - Marketing built_by: Exposify - built_by_url: "https://www.exposify.de/" + built_by_url: https://www.exposify.de/ featured: false - title: Steak Point main_url: https://www.steakpoint.at/ @@ -3392,27 +3392,27 @@ built_by_url: https://www.peterkroyer.at/ featured: false - title: Takumon blog - main_url: "https://takumon.com" - url: "https://takumon.com" - source_url: "https://github.com/Takumon/blog" + main_url: https://takumon.com + url: https://takumon.com + source_url: https://github.com/Takumon/blog description: Java Engineer's tech blog. featured: false categories: - Blog built_by: Takumon - built_by_url: "https://twitter.com/inouetakumon" + built_by_url: https://twitter.com/inouetakumon - title: DayThirty - main_url: "https://daythirty.com" - url: "https://daythirty.com" + main_url: https://daythirty.com + url: https://daythirty.com description: DayThirty - ideas for the new year. featured: false categories: - Marketing built_by: Jack Oliver - built_by_url: "https://twitter.com/mrjackolai" + built_by_url: https://twitter.com/mrjackolai - title: TheAgencyProject - main_url: "https://theagencyproject.co" - url: "https://theagencyproject.co" + main_url: https://theagencyproject.co + url: https://theagencyproject.co description: Agency model, without agency overhead. categories: - Agency @@ -3427,67 +3427,67 @@ built_by_url: https://github.com/karenhou featured: false - title: Jean Luc Ponty - main_url: "https://ponty.com" - url: "https://ponty.com" + main_url: https://ponty.com + url: https://ponty.com description: Official site for Jean Luc Ponty, French virtuoso violinist and jazz composer. featured: false categories: - Music - Entertainment built_by: Othermachines - built_by_url: "https://othermachines.com" + built_by_url: https://othermachines.com - title: Rosewood Family Advisors - main_url: "https://www.rfallp.com/" - url: "https://www.rfallp.com/" + main_url: https://www.rfallp.com/ + url: https://www.rfallp.com/ description: Rosewood Family Advisors LLP (Palo Alto) provides a diverse range of family office services customized for ultra high net worth individuals. featured: false categories: - Finance - Business built_by: Othermachines - built_by_url: "https://othermachines.com" + built_by_url: https://othermachines.com - title: Standing By Company - main_url: "https://standingby.company" - url: "https://standingby.company" + main_url: https://standingby.company + url: https://standingby.company description: A brand experience design company led by Scott Mackenzie and Trent Barton. featured: false categories: - Design - Web Development built_by: Standing By Company - built_by_url: "https://standingby.company" + built_by_url: https://standingby.company - title: Ashley Thouret - main_url: "https://www.ashleythouret.com" - url: "https://www.ashleythouret.com" + main_url: https://www.ashleythouret.com + url: https://www.ashleythouret.com description: Official website of Canadian soprano Ashley Thouret. Site designed by Stephen Bell. categories: - Portfolio - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: The AZOOR Society - main_url: "https://www.azoorsociety.org" - url: "https://www.azoorsociety.org" + main_url: https://www.azoorsociety.org + url: https://www.azoorsociety.org description: The AZOOR Society is a UK-based charity committed to promoting awareness of Acute Zonal Occult Outer Retinopathy and assisting further research. Site designed by Stephen Bell. categories: - Community - Nonprofit built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com featured: false - title: Gábor Fűzy pianist - main_url: "https://pianobar.hu" - url: "https://pianobar.hu" + main_url: https://pianobar.hu + url: https://pianobar.hu description: Gábor Fűzy pianist's official website built with Gatsby v2. categories: - Music built_by: Zoltán Bedi - built_by_url: "https://github.com/B3zo0" + built_by_url: https://github.com/B3zo0 featured: false - title: Logicwind - main_url: "https://logicwind.com" - url: "https://logicwind.com" + main_url: https://logicwind.com + url: https://logicwind.com description: Website of Logicwind - JavaScript experts, Technology development agency & consulting. featured: false categories: @@ -3496,32 +3496,32 @@ - Web Development - Consulting built_by: Logicwind - built_by_url: "https://www.logicwind.com" + built_by_url: https://www.logicwind.com - title: ContactBook.app - main_url: "https://contactbook.app" - url: "https://contactbook.app" + main_url: https://contactbook.app + url: https://contactbook.app description: Seamlessly share Contacts with G Suite team members featured: false categories: - Landing Page - Blog built_by: Logicwind - built_by_url: "https://www.logicwind.com" + built_by_url: https://www.logicwind.com - title: Waterscapes - main_url: "https://waterscap.es" - url: "https://waterscap.es/lake-monteynard/" - source_url: "https://github.com/gaelbillon/Waterscapes-Gatsby-site" + main_url: https://waterscap.es + url: https://waterscap.es/lake-monteynard/ + source_url: https://github.com/gaelbillon/Waterscapes-Gatsby-site description: Waterscap.es is a directory of bodies of water (creeks, ponds, waterfalls, lakes, etc) with information about each place such as how to get there, hike time, activities and photos and a map displayed with the Mapbox GL SJ npm package. It was developed with the goal of learning Gatsby. This website is based on the gatsby-contentful-starter and uses Contentful as CMS. It is hosted on Netlify. Hooks are setup with Bitbucket and Contentful to trigger a new build upon code or content changes. The data on Waterscap.es is a mix of original content and informations from the internets gathered and put together. categories: - Directory - Photography - Travel built_by: Gaël Billon - built_by_url: "https://gaelbillon.com" + built_by_url: https://gaelbillon.com featured: false - title: Packrs - url: "https://www.packrs.co/" - main_url: "https://www.packrs.co/" + url: https://www.packrs.co/ + main_url: https://www.packrs.co/ description: > Packrs is a local delivery platform, one spot for all your daily requirements. On a single tap get everything you need at your doorstep. categories: @@ -3529,12 +3529,12 @@ - Landing Page - Entrepreneurship built_by: Vipin Kumar Rawat - built_by_url: "https://github.com/aesthytik" + built_by_url: https://github.com/aesthytik featured: false - title: HyakuninIsshu - main_url: "https://hyakuninanki.net" - url: "https://hyakuninanki.net" - source_url: "https://github.com/rei-m/web_hyakuninisshu" + main_url: https://hyakuninanki.net + url: https://hyakuninanki.net + source_url: https://github.com/rei-m/web_hyakuninisshu description: > HyakuninIsshu is a traditional Japanese card game. categories: @@ -3542,33 +3542,33 @@ - Gallery - Entertainment built_by: Rei Matsushita - built_by_url: "https://github.com/rei-m/" + built_by_url: https://github.com/rei-m/ featured: false - title: WQU Partners - main_url: "https://partners.wqu.org/" - url: "https://partners.wqu.org/" + main_url: https://partners.wqu.org/ + url: https://partners.wqu.org/ featured: false categories: - Marketing - Education - Landing Page built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: Federico Giacone - url: "https://federico.giac.one/" - main_url: "https://federico.giac.one" - source_url: "https://github.com/leopuleo/federico.giac.one" + url: https://federico.giac.one/ + main_url: https://federico.giac.one + source_url: https://github.com/leopuleo/federico.giac.one description: > Digital portfolio for Italian Architect Federico Giacone. categories: - Portfolio - Gallery built_by: Leonardo Giacone - built_by_url: "https://github.com/leopuleo" + built_by_url: https://github.com/leopuleo featured: false - title: Station - url: "https://getstation.com/" - main_url: "https://getstation.com/" + url: https://getstation.com/ + main_url: https://getstation.com/ description: Station is the first smart browser for busy people. A single place for all of your web applications. categories: - Technology @@ -3576,9 +3576,9 @@ - Productivity featured: false - title: Vyron Vasileiadis - url: "https://fedonman.com/" - main_url: "https://fedonman.com" - source_url: "https://github.com/fedonman/fedonman-website" + url: https://fedonman.com/ + main_url: https://fedonman.com + source_url: https://github.com/fedonman/fedonman-website description: Personal space of Vyron Vasileiadis aka fedonman, a Web & IoT Developer, Educator and Entrepreneur based in Athens, Greece. categories: - Portfolio @@ -3586,11 +3586,11 @@ - Web Development - Education built_by: Vyron Vasileiadis - built_by_url: "https://github.com/fedonman" + built_by_url: https://github.com/fedonman - title: Fabien Champigny - url: "https://www.champigny.name/" - main_url: "https://www.champigny.name/" - built_by_url: "https://www.champigny.name/" + url: https://www.champigny.name/ + main_url: https://www.champigny.name/ + built_by_url: https://www.champigny.name/ description: Fabien Champigny's personal blog. Entrepreneur, hacker and loves street photo. categories: - Blog @@ -3798,7 +3798,7 @@ - Marketing - Real Estate built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com - title: Incremental - Loyalty, Rewards and Incentive Programs main_url: https://www.incremental.com.au url: https://www.incremental.com.au @@ -3925,8 +3925,8 @@ built_by: timehackers featured: false - title: Little & Big - main_url: "https://www.littleandbig.com.au/" - url: "https://www.littleandbig.com.au/" + main_url: https://www.littleandbig.com.au/ + url: https://www.littleandbig.com.au/ description: > Little & Big exists with the aim to create Websites, Apps, E-commerce stores that are consistently unique and thoughtfully crafted, every time. @@ -3936,18 +3936,18 @@ - Web Development - Portfolio built_by: Little & Big - built_by_url: "https://www.littleandbig.com.au/" + built_by_url: https://www.littleandbig.com.au/ featured: false - title: Cat Knows - main_url: "https://catnose99.com/" - url: "https://catnose99.com/" + main_url: https://catnose99.com/ + url: https://catnose99.com/ description: > Personal blog built with Gatsby v2. categories: - Blog - Web Development built_by: CatNose - built_by_url: "https://twitter.com/catnose99" + built_by_url: https://twitter.com/catnose99 featured: false - title: just some dev url: https://www.iamdeveloper.com @@ -3981,9 +3981,9 @@ built_by: Daniel Uhlmann built_by_url: https://www.xfuture-blog.com/ - title: Mayne's Blog - main_url: "https://gine.me/" - url: "https://gine.me/page/1" - source_url: "https://github.com/mayneyao/gine-blog" + main_url: https://gine.me/ + url: https://gine.me/page/1 + source_url: https://github.com/mayneyao/gine-blog featured: false categories: - Blog @@ -4115,15 +4115,15 @@ - Documentation - Education - title: Sherpalo Ventures - main_url: "https://www.sherpalo.com/" - url: "https://www.sherpalo.com/" + main_url: https://www.sherpalo.com/ + url: https://www.sherpalo.com/ featured: false categories: - Finance - Business - Technology built_by: Othermachines - built_by_url: "https://othermachines.com" + built_by_url: https://othermachines.com - title: WrapCode url: https://www.wrapcode.com main_url: https://www.wrapcode.com @@ -4181,9 +4181,9 @@ - Government featured: false - title: SpotYou - main_url: "https://spotyou.joshglazer.com" - url: "https://spotyou.joshglazer.com" - source_url: "https://github.com/joshglazer/spotyou" + main_url: https://spotyou.joshglazer.com + url: https://spotyou.joshglazer.com + source_url: https://github.com/joshglazer/spotyou description: > SpotYou allows you to watch your favorite music videos on Youtube based on your Spotify Preferences categories: @@ -4195,9 +4195,9 @@ - title: Hesam Kaveh's blog description: > A blog with great seo that using gatsby-source-wordpress to fetch posts from backend - main_url: "https://hesamkaveh.com/" - url: "https://hesamkaveh.com/" - source_url: "https://github.com/hesamkaveh/sansi" + main_url: https://hesamkaveh.com/ + url: https://hesamkaveh.com/ + source_url: https://github.com/hesamkaveh/sansi featured: false categories: - Blog @@ -4242,9 +4242,9 @@ - title: Jacob Cofman's Blog description: > Personal blog / portfolio about Jacob Cofman. - main_url: "https://jcofman.de/" - url: "https://jcofman.de/" - source_url: "https://github.com/JCofman/jc-website" + main_url: https://jcofman.de/ + url: https://jcofman.de/ + source_url: https://github.com/JCofman/jc-website featured: false categories: - Blog @@ -4252,9 +4252,9 @@ - title: re-geo description: > re-geo is react based geo cities style component. - main_url: "https://re-geo.netlify.com/" - url: "https://re-geo.netlify.com/" - source_url: "https://github.com/sadnessOjisan/re-geo-lp" + main_url: https://re-geo.netlify.com/ + url: https://re-geo.netlify.com/ + source_url: https://github.com/sadnessOjisan/re-geo-lp categories: - Open Source built_by: sadnessOjisan @@ -4263,9 +4263,9 @@ - title: Luis Cestou Portfolio description: > Portfolio of graphic + interactive designer Luis Cestou. - main_url: "https://luiscestou.com" - url: "https://luiscestou.com" - source_url: "https://github.com/lcestou/luiscestou.com" + main_url: https://luiscestou.com + url: https://luiscestou.com + source_url: https://github.com/lcestou/luiscestou.com built_by: Luis Cestou contact@luiscestou.com built_by_url: https://luiscestou.com featured: false @@ -4306,9 +4306,9 @@ built_by_url: https://kaordica.design featured: false - title: We Are Clarks - url: "https://www.weareclarks.com" - main_url: "https://www.weareclarks.com" - source_url: "https://github.com/abeaclark/weareclarks" + url: https://www.weareclarks.com + main_url: https://www.weareclarks.com + source_url: https://github.com/abeaclark/weareclarks description: > A family travel blog. categories: @@ -4318,9 +4318,9 @@ built_by_url: https://www.linkedin.com/in/abrahamclark/ featured: false - title: Guillaume Briday's Blog - main_url: "https://guillaumebriday.fr/" - url: "https://guillaumebriday.fr/" - source_url: "https://github.com/guillaumebriday/guillaumebriday.fr" + main_url: https://guillaumebriday.fr/ + url: https://guillaumebriday.fr/ + source_url: https://github.com/guillaumebriday/guillaumebriday.fr description: > My personal blog built with Gatsby and Tailwind CSS. categories: @@ -4331,9 +4331,9 @@ built_by_url: https://guillaumebriday.fr/ featured: false - title: Jean Regisser's Portfolio - main_url: "https://jeanregisser.com/" - url: "https://jeanregisser.com/" - source_url: "https://github.com/jeanregisser/jeanregisser.com" + main_url: https://jeanregisser.com/ + url: https://jeanregisser.com/ + source_url: https://github.com/jeanregisser/jeanregisser.com featured: false description: > Portfolio of software engineer Jean Regisser. @@ -4341,7 +4341,7 @@ - Portfolio - Mobile Development built_by: Jean Regisser - built_by_url: "https://jeanregisser.com/" + built_by_url: https://jeanregisser.com/ - title: Chase Ohlson url: https://chaseohlson.com main_url: https://chaseohlson.com @@ -4356,14 +4356,14 @@ - title: Zach Schnackel url: https://zslabs.com main_url: https://zslabs.com - source_url: "https://github.com/zslabs/zslabs.com" + source_url: https://github.com/zslabs/zslabs.com description: > Portfolio site for UI/Motion Developer, Zach Schnackel. categories: - Portfolio - Web Development built_by: Zach Schnackel - built_by_url: "https://zslabs.com" + built_by_url: https://zslabs.com - title: Gremlin url: https://www.gremlin.com main_url: https://www.gremlin.com @@ -4385,7 +4385,7 @@ - title: Ouracademy main_url: https://our-academy.org/ url: https://our-academy.org/ - source_url: "https://github.com/ouracademy/website" + source_url: https://github.com/ouracademy/website description: > Ouracademy is an organization that promoves the education in software development through blog posts & videos smiley. categories: @@ -4596,14 +4596,14 @@ - title: Artem Sapegin Photography description: > Photography portfolio and blog of Artem Sapegin, an award-losing photographer living in Berlin, Germany. Landscapes, cityscapes and dogs. - main_url: "https://morning.photos/" - url: "https://morning.photos/" - source_url: "https://github.com/sapegin/morning.photos" + main_url: https://morning.photos/ + url: https://morning.photos/ + source_url: https://github.com/sapegin/morning.photos categories: - Portfolio - Photography built_by: Artem Sapegin - built_by_url: "https://github.com/sapegin" + built_by_url: https://github.com/sapegin - title: Pattyrn main_url: https://pattyrn.com url: https://pattyrn.com @@ -4697,8 +4697,8 @@ built_by_url: https://twitter.com/GeraldM_92 featured: false - title: Becreatives - main_url: "https://becreatives.com" - url: "https://becreatives.com" + main_url: https://becreatives.com + url: https://becreatives.com featured: false description: > Digital software house. Enlights ideas. Think smart execute harder. @@ -4708,7 +4708,7 @@ - Agency - Marketing built_by: Becreatives - built_by_url: "https://becreatives.com" + built_by_url: https://becreatives.com - title: Paul Clifton Photography main_url: https://paulcliftonphotography.com url: https://paulcliftonphotography.com @@ -4820,9 +4820,9 @@ - title: Filipe Santos Correa's Portfolio description: > Filipe's Personal About Me / Portfolio. - main_url: "https://filipesantoscorrea.com/" - url: "https://filipesantoscorrea.com/" - source_url: "https://github.com/Safi1012/filipesantoscorrea.com" + main_url: https://filipesantoscorrea.com/ + url: https://filipesantoscorrea.com/ + source_url: https://github.com/Safi1012/filipesantoscorrea.com featured: false categories: - Portfolio @@ -4837,7 +4837,7 @@ - Government - Education built_by: Alex Holachek - built_by_url: "https://alex.holachek.com/" + built_by_url: https://alex.holachek.com/ - title: Jeff Wolff – Portfolio main_url: https://www.jeffwolff.net url: https://www.jeffwolff.net @@ -4887,7 +4887,7 @@ - Science - Technology built_by: Jonathan Z. Fisher - built_by_url: "https://jonzfisher.com" + built_by_url: https://jonzfisher.com - title: Sal's Pals main_url: https://www.sals-pals.net url: https://www.sals-pals.net @@ -5574,7 +5574,7 @@ - Portfolio - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com - title: Alison Moritz url: https://www.alisonmoritz.com main_url: https://www.alisonmoritz.com @@ -5584,7 +5584,7 @@ - Portfolio - Music built_by: Michael Uloth - built_by_url: "https://www.michaeluloth.com" + built_by_url: https://www.michaeluloth.com - title: Luke Secomb Digital url: https://lukesecomb.digital main_url: https://lukesecomb.digital @@ -5845,8 +5845,8 @@ built_by_url: https://oberon.nl/ featured: false - title: Libra - main_url: "https://libra.org/" - url: "https://libra.org/" + main_url: https://libra.org/ + url: https://libra.org/ description: Libra's mission is to enable a simple global currency and financial infrastructure that empowers billions of people. featured: false categories: @@ -5892,25 +5892,25 @@ built_by_url: https://grantholle.com featured: false - title: Canvas 1839 - main_url: "https://www.canvas1839.com/" - url: "https://www.canvas1839.com/" + main_url: https://www.canvas1839.com/ + url: https://www.canvas1839.com/ description: >- Online store for Canvas 1839 products, including pharmacological-grade CBD oil and relief cream. categories: - eCommerce - Marketing built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: Sparkle Stories - main_url: "https://app.sparklestories.com/" - url: "https://app.sparklestories.com/" + main_url: https://app.sparklestories.com/ + url: https://app.sparklestories.com/ description: >- Sparkle Stories is a streaming audio platform for children with over 1,200 original audio stories. categories: - App - Education built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: nehalist.io main_url: https://nehalist.io url: https://nehalist.io @@ -6000,17 +6000,17 @@ built_by_url: https://github.com/mbifulco featured: false - title: Sankarsan Kampa - main_url: "https://traction.one" - url: "https://traction.one" + main_url: https://traction.one + url: https://traction.one description: Full time programmer, part time gamer, exploring the details of programmable systems and how to stretch their capabilities. featured: false categories: - Portfolio - Freelance - title: AwesomeDocs - main_url: "https://awesomedocs.traction.one/" - url: "https://awesomedocs.traction.one/install" - source_url: "https://github.com/AwesomeDocs/website" + main_url: https://awesomedocs.traction.one/ + url: https://awesomedocs.traction.one/install + source_url: https://github.com/AwesomeDocs/website description: An awesome documentation website generator! featured: false categories: @@ -6019,11 +6019,11 @@ - Technology - Documentation built_by: Sankarsan Kampa - built_by_url: "https://traction.one" + built_by_url: https://traction.one - title: Prism Programming Language - main_url: "https://prism.traction.one/" - url: "https://prism.traction.one/" - source_url: "https://github.com/PrismLang/website" + main_url: https://prism.traction.one/ + url: https://prism.traction.one/ + source_url: https://github.com/PrismLang/website description: Interpreted, high-level, programming language. featured: false categories: @@ -6032,22 +6032,22 @@ - Technology - Documentation built_by: Sankarsan Kampa - built_by_url: "https://traction.one" + built_by_url: https://traction.one - title: Arnondora - main_url: "https://arnondora.in.th/" - url: "https://arnondora.in.th/" - source_url: "https://github.com/arnondora/arnondoraBlog" + main_url: https://arnondora.in.th/ + url: https://arnondora.in.th/ + source_url: https://github.com/arnondora/arnondoraBlog description: Arnondora is a personal blog by Arnon Puitrakul categories: - Blog - Programming - Technology built_by: Arnon Puitrakul - built_by_url: "https://arnondora.in.th/" + built_by_url: https://arnondora.in.th/ featured: false - title: KingsDesign - url: "https://www.kingsdesign.com.au/" - main_url: "https://www.kingsdesign.com.au/" + url: https://www.kingsdesign.com.au/ + main_url: https://www.kingsdesign.com.au/ description: KingsDesign is a Hobart based web design and development company. KingsDesign creates, designs, measures and improves web based solutions for businesses and organisations across Australia. categories: - Agency @@ -6056,10 +6056,10 @@ - Consulting - User Experience built_by: KingsDesign - built_by_url: "https://www.kingsdesign.com.au" + built_by_url: https://www.kingsdesign.com.au - title: EasyFloh | Easy Flows for all - url: "https://www.easyfloh.com" - main_url: "https://www.easyfloh.com" + url: https://www.easyfloh.com + main_url: https://www.easyfloh.com description: > EasyFloh is for creating simple flows for your organisation. An organisation can design own flows with own stages. @@ -6067,7 +6067,7 @@ - Business - Landing Page built_by: Vikram Aroskar - built_by_url: "https://medium.com/@vikramaroskar" + built_by_url: https://medium.com/@vikramaroskar featured: false - title: Home Alarm Report url: https://homealarmreport.com/ @@ -6084,19 +6084,19 @@ built_by: Centerfield Media built_by_url: https://www.centerfield.com - title: Just | FX for treasurers - url: "https://www.gojust.com" - main_url: "https://www.gojust.com" + url: https://www.gojust.com + main_url: https://www.gojust.com description: > Just provides a single centralized view of FX for corporate treasurers. See interbank market prices, and access transaction cost analysis. categories: - Finance - Technology built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ featured: false - title: Bureau for Good | Nonprofit branding, web and print communications - url: "https://www.bureauforgood.com" - main_url: "https://www.bureauforgood.com" + url: https://www.bureauforgood.com + main_url: https://www.bureauforgood.com description: > Bureau for Good helps nonprofits explain why they matter across digital & print media. Bureau for Good crafts purpose-driven identities, websites & print materials for changemakers. categories: @@ -6104,22 +6104,22 @@ - Agency - Design built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ featured: false - title: Atelier Cartier Blumen - url: "https://www.ateliercartier.ch" - main_url: "https://www.ateliercartier.ch" + url: https://www.ateliercartier.ch + main_url: https://www.ateliercartier.ch description: > Im schönen Kreis 6 in Zürich kreiert Nicole Cartier Blumenkompositionen anhand Charaktereigenschaften oder Geschichten zur Person an. Für wen ist Dein Blumenstrauss gedacht? Einzigartige Floristik Blumensträusse, Blumenabos, Events, Shootings. Site designed by https://www.stolfo.co categories: - eCommerce - Design built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ featured: false - title: Veronym – Cloud Security Service Provider - url: "https://www.veronym.com" - main_url: "https://www.veronym.com" + url: https://www.veronym.com + main_url: https://www.veronym.com description: > Veronym is securing your digital transformation. A comprehensive Internet security solution for business. Stay safe no matter how, where and when you connect. categories: @@ -6127,18 +6127,18 @@ - Technology - Business built_by: Bejamas - built_by_url: "https://bejamas.io/" + built_by_url: https://bejamas.io/ featured: false - title: Devahoy - url: "https://devahoy.com/" - main_url: "https://devahoy.com/" + url: https://devahoy.com/ + main_url: https://devahoy.com/ description: > Devahoy is a personal blog written in Thai about software development. categories: - Blog - Programming built_by: Chai Phonbopit - built_by_url: "https://github.com/phonbopit" + built_by_url: https://github.com/phonbopit featured: false - title: Venus Lover url: https://venuslover.com @@ -6335,7 +6335,7 @@ - Nonprofit - eCommerce built_by: Little & Big - built_by_url: "https://www.littleandbig.com.au/" + built_by_url: https://www.littleandbig.com.au/ featured: false - title: Reactgo blog url: https://reactgo.com/ @@ -6348,7 +6348,7 @@ - Programming - Web Development built_by: Sai gowtham - built_by_url: "https://twitter.com/saigowthamr" + built_by_url: https://twitter.com/saigowthamr featured: false - title: City Springs url: https://citysprings.com/ @@ -6418,11 +6418,11 @@ - Web Development featured: false - title: Free & Open Source Gatsby Themes by LekoArts - main_url: "https://themes.lekoarts.de" - url: "https://themes.lekoarts.de" - source_url: "https://github.com/LekoArts/gatsby-themes/tree/master/www" + main_url: https://themes.lekoarts.de + url: https://themes.lekoarts.de + source_url: https://github.com/LekoArts/gatsby-themes/tree/master/www built_by: LekoArts - built_by_url: "https://github.com/LekoArts" + built_by_url: https://github.com/LekoArts description: >- Get high-quality and customizable Gatsby themes to quickly bootstrap your website! Choose from many professionally created and impressive designs with a wide variety of features and customization options. Use Gatsby Themes to take your project to the next level and let you and your customers take advantage of the many benefits Gatsby has to offer. categories: @@ -6503,19 +6503,19 @@ - Photography - Portfolio built_by: Little & Big - built_by_url: "https://www.littleandbig.com.au/" + built_by_url: https://www.littleandbig.com.au/ featured: false - title: Eventos orellana description: >- We are a company dedicated to providing personalized and professional advice for the elaboration and coordination of social and business events. - main_url: "https://eventosorellana.com/" - url: "https://eventosorellana.com/" + main_url: https://eventosorellana.com/ + url: https://eventosorellana.com/ featured: false categories: - Gallery built_by: Ramón Chancay - built_by_url: "https://ramonchancay.me/" + built_by_url: https://ramonchancay.me/ - title: DIA Supermercados main_url: https://dia.com.br url: https://dia.com.br @@ -6739,8 +6739,8 @@ - title: Ronald Langeveld description: > Ronald Langeveld's blog and Web Development portfolio website. - main_url: "https://www.ronaldlangeveld.com" - url: "https://www.ronaldlangeveld.com" + main_url: https://www.ronaldlangeveld.com + url: https://www.ronaldlangeveld.com categories: - Blog - Web Development @@ -6835,9 +6835,9 @@ - Marketing featured: false - title: Hayato KAJIYAMA - Portfolio - main_url: "https://hyakt.dev" - url: "https://hyakt.dev" - source_url: "https://github.com/hyakt/hyakt.github.io" + main_url: https://hyakt.dev + url: https://hyakt.dev + source_url: https://github.com/hyakt/hyakt.github.io featured: false categories: - Portfolio @@ -6955,15 +6955,15 @@ description: >- Recipes and videos with the best of Ecuadorian cuisine. Collectable recipes from Diario El Universo. - main_url: "https://recetas-eu.netlify.com/" - url: "https://recetas-eu.netlify.com/" + main_url: https://recetas-eu.netlify.com/ + url: https://recetas-eu.netlify.com/ featured: false categories: - Blog - WordPress - Food built_by: Ramón Chancay - built_by_url: "https://ramonchancay.me/" + built_by_url: https://ramonchancay.me/ - title: Third and Grove url: https://www.thirdandgrove.com main_url: https://www.thirdandgrove.com @@ -7340,7 +7340,7 @@ url: https://arvind.io source_url: https://github.com/EnKrypt/arvind.io built_by: Arvind Kumar - built_by_url: "https://arvind.io/" + built_by_url: https://arvind.io/ description: > A blog about writing code, making music and studying the skies. featured: false @@ -7369,7 +7369,7 @@ - Community - eCommerce built_by: Little & Big - built_by_url: "https://www.littleandbig.com.au/" + built_by_url: https://www.littleandbig.com.au/ featured: false - title: Guus van de Wal | Drupal Front-end specialist url: https://guusvandewal.nl @@ -7433,7 +7433,7 @@ - Business - Technology built_by: Peter Hironaka - built_by_url: "https://peterhironaka.com" + built_by_url: https://peterhironaka.com featured: false - title: Up Your A11y url: https://www.upyoura11y.com/ @@ -7454,15 +7454,15 @@ - title: Roman Kravets description: > Portfolio of Roman Kravets. Web Developer, HTML & CSS Coder. - main_url: "https://romkravets.netlify.com/" - url: "https://romkravets.netlify.com/" + main_url: https://romkravets.netlify.com/ + url: https://romkravets.netlify.com/ categories: - Portfolio - Open Source - Web Development - Blog built_by: Roman Kravets - built_by_url: "https://github.com/romkravets/dev-page" + built_by_url: https://github.com/romkravets/dev-page featured: false - title: Phil Tietjen Portfolio url: https://www.philtietjen.dev/ @@ -7480,15 +7480,15 @@ - title: Gatsby Bomb description: > A fan made version of the website Giantbomb, fully static and powered by Gatsby JS and the GiantBomb API. - main_url: "https://gatsbybomb.netlify.com" - url: "https://gatsbybomb.netlify.com" + main_url: https://gatsbybomb.netlify.com + url: https://gatsbybomb.netlify.com categories: - App - Entertainment - Media - Video built_by: Phil Tietjen - built_by_url: "https://github.com/Phizzard" + built_by_url: https://github.com/Phizzard featured: false - title: Divyanshu Maithani main_url: https://divyanshu013.dev @@ -7637,15 +7637,15 @@ built_by: Sagar Hani built_by_url: http://sagarhani.in/about - title: Arturo Alviar's Portfolio - main_url: "https://arturoalviar.com" - url: "https://arturoalviar.com" - source_url: "https://github.com/arturoalviar/portfolio" + main_url: https://arturoalviar.com + url: https://arturoalviar.com + source_url: https://github.com/arturoalviar/portfolio categories: - Portfolio - Open Source - Web Development built_by: Arturo Alviar - built_by_url: "https://github.com/arturoalviar" + built_by_url: https://github.com/arturoalviar featured: false - title: Pearly url: https://www.pearlyplan.com @@ -7699,8 +7699,8 @@ built_by: Ender Bonnet built_by_url: https://enbonnet.me/ - title: Edenspiekermann - url: "https://www.edenspiekermann.com/eu/" - main_url: "https://www.edenspiekermann.com/eu/" + url: https://www.edenspiekermann.com/eu/ + main_url: https://www.edenspiekermann.com/eu/ description: > Hello. We are Edenspiekermann, an independent global creative agency. categories: @@ -7710,8 +7710,8 @@ - Portfolio featured: true - title: IBM Design - url: "https://www.ibm.com/design/" - main_url: "https://www.ibm.com/design/" + url: https://www.ibm.com/design/ + main_url: https://www.ibm.com/design/ description: > At IBM, our design philosophy is to help guide people so they can do their best work. Our human-centered design practices help us deliver on that goal. categories: @@ -7734,8 +7734,8 @@ built_by: We Do Plugins built_by_url: https://wedoplugins.com - title: Mevish Aslam, business coach - url: "https://mevishaslam.com/" - main_url: "https://mevishaslam.com/" + url: https://mevishaslam.com/ + main_url: https://mevishaslam.com/ description: > Mevish Aslam helps women build a life they love and coaches women to launch and grow businesses. categories: @@ -7746,12 +7746,12 @@ - Marketing - Portfolio built_by: Rou Hun Fan - built_by_url: "https://flowen.me" + built_by_url: https://flowen.me featured: false - title: Principles of wealth - url: "https://principlesofwealth.net" - main_url: "https://principlesofwealth.net" - source_url: "https://github.com/flowen/principlesofwealth" + url: https://principlesofwealth.net + main_url: https://principlesofwealth.net + source_url: https://github.com/flowen/principlesofwealth description: > Principles of wealth. How to get rich without being lucky, a summary of Naval Ravikant's tweets and podcast.` categories: @@ -7767,7 +7767,7 @@ - Productivity - Science built_by: Rou Hun Fan - built_by_url: "https://flowen.me" + built_by_url: https://flowen.me featured: false - title: Problem studio url: https://problem.studio @@ -7840,21 +7840,21 @@ - Food featured: true - title: Haxzie, Portfolio and Blog - url: "https://haxzie.com/" - main_url: "https://haxzie.com/" - source_url: "https://github.com/haxzie/haxzie.com" + url: https://haxzie.com/ + main_url: https://haxzie.com/ + source_url: https://github.com/haxzie/haxzie.com description: > Haxzie.com is the portfolio and personal blog of Musthaq Ahamad, UX Engineer and Visual Designer categories: - Blog - Portfolio built_by: Musthaq Ahamad - built_by_url: "https://haxzie.com" + built_by_url: https://haxzie.com featured: false - title: GBT - url: "https://yangmuzi.com/" - main_url: "https://yangmuzi.com/" - source_url: "https://github.com/yangnianbing/blog-by-gatsby" + url: https://yangmuzi.com/ + main_url: https://yangmuzi.com/ + source_url: https://github.com/yangnianbing/blog-by-gatsby description: > It is a basic Gatsby site project categories: @@ -7863,16 +7863,16 @@ built_by: yangnianbing featured: false - title: Robin Wieruch's Blog - url: "https://www.robinwieruch.de/" - main_url: "https://www.robinwieruch.de/" + url: https://www.robinwieruch.de/ + main_url: https://www.robinwieruch.de/ categories: - Blog - Education featured: false - title: Roger Ramos Development Journal - url: "https://rogerramos.me/" - main_url: "https://rogerramos.me/" - source_url: "https://github.com/rogerramosme/rogerramos.me/" + url: https://rogerramos.me/ + main_url: https://rogerramos.me/ + source_url: https://github.com/rogerramosme/rogerramos.me/ description: > Personal development journal made with Netlify CMS categories: @@ -7881,8 +7881,8 @@ built_by_url: https://rogerramos.me/ featured: false - title: Global Adviser Alpha - main_url: "https://globaladviseralpha.com" - url: "https://globaladviseralpha.com" + main_url: https://globaladviseralpha.com + url: https://globaladviseralpha.com description: > Lead by David Haintz, Global Adviser Alpha transforms advice business into world class firms. categories: @@ -7960,9 +7960,9 @@ - Education - Blog - title: RegexGuide - main_url: "https://regex.guide" - url: "https://regex.guide/playground" - source_url: "https://github.com/pacdiv/regex.guide" + main_url: https://regex.guide + url: https://regex.guide/playground + source_url: https://github.com/pacdiv/regex.guide description: > The easiest way to learn regular expressions! The RegexGuide is a playground helping developers to discover regular expressions. Trying it is adopting regular expressions! categories: @@ -8054,8 +8054,8 @@ built_by_url: https://twitter.com/_kentaro_m featured: false - title: MotionThat - main_url: "https://motionthat.com.au" - url: "https://motionthat.com.au" + main_url: https://motionthat.com.au + url: https://motionthat.com.au description: > MotionThat was created to fill a void in Tabletop Product shooting, whereby the need for consistency, repetition and flexibility was required to eliminate the many variables and inaccuracies that slow the filming process down. categories: @@ -8067,8 +8067,8 @@ built_by_url: https://www.hellohandsome.com.au featured: false - title: TEN ALPHAS - main_url: "https://tenalphas.com.au" - url: "https://tenalphas.com.au" + main_url: https://tenalphas.com.au + url: https://tenalphas.com.au description: > TEN ALPHAS is a content production company based in Sydney and Wollongong, telling stories through moving image and beautiful design. categories: @@ -8079,8 +8079,8 @@ built_by_url: https://www.hellohandsome.com.au featured: false - title: SalesGP - main_url: "https://salesgp.io" - url: "https://salesgp.io" + main_url: https://salesgp.io + url: https://salesgp.io description: > SalesGP is a specialist Sales and Operations partner offering expert skill-sets and decades of experience to companies entering the Australia, NZ (ANZ) and South East Asian (SEA) markets. categories: @@ -8091,8 +8091,8 @@ built_by_url: https://www.hellohandsome.com.au featured: false - title: Source Separation Systems - main_url: "https://sourceseparationsystems.com.au" - url: "https://sourceseparationsystems.com.au" + main_url: https://sourceseparationsystems.com.au + url: https://sourceseparationsystems.com.au description: > Innovative waste diversion products, designed to connect Australians to a more sustainable world. categories: @@ -8113,8 +8113,8 @@ built_by_url: https://demieville-codes.herokuapp.com/portfolio featured: false - title: Open Techiz - main_url: "https://www.opentechiz.com/" - url: "https://www.opentechiz.com/" + main_url: https://www.opentechiz.com/ + url: https://www.opentechiz.com/ featured: false description: > An agile software development company in Vietnam, providing wide range service from ecommerce development, mobile development, automation testing and cloud deployment with kubernets @@ -8123,7 +8123,7 @@ - Mobile Development - Technology built_by: Open Techiz - built_by_url: "https://www.opentechiz.com/" + built_by_url: https://www.opentechiz.com/ - title: Leave Me Alone url: https://leavemealone.app main_url: https://leavemealone.app @@ -8226,8 +8226,8 @@ - title: Binaria description: > Digital product connecting technics & creativity. - main_url: "https://binaria.com/en/" - url: "https://binaria.com/en/" + main_url: https://binaria.com/en/ + url: https://binaria.com/en/ categories: - Web Development - Agency @@ -8236,7 +8236,7 @@ - Consulting - User Experience built_by: Binaria - built_by_url: "https://binaria.com/" + built_by_url: https://binaria.com/ - title: Quema Labs url: https://quemalabs.com/ main_url: https://quemalabs.com/ @@ -8271,8 +8271,8 @@ built_by_url: https://www.powerboard.co.nz/clients featured: false - title: Wealthsimple - url: "https://www.wealthsimple.com/" - main_url: "https://www.wealthsimple.com/en-us/" + url: https://www.wealthsimple.com/ + main_url: https://www.wealthsimple.com/en-us/ description: > The simple way to grow your money like the world's most sophisticated investors. Zero-maintenance portfolios, expert advisors and low fees. categories: @@ -8283,15 +8283,15 @@ - title: To Be Created description: > tbc is a London based styling agency that champions a modernised minimal aesthetic for both personal clients and brands. - main_url: "https://to-be-created.com" - url: "https://to-be-created.com" + main_url: https://to-be-created.com + url: https://to-be-created.com categories: - Web Development - Agency - Portfolio - Freelance built_by: Sam Goddard - built_by_url: "https://samgoddard.dev/" + built_by_url: https://samgoddard.dev/ - title: Kosmos Platform main_url: https://kosmosplatform.com url: https://kosmosplatform.com @@ -8380,7 +8380,7 @@ - Community - Learning built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ featured: false - title: Anurag Hazra's Portfolio url: https://anuraghazra.github.io/ @@ -8394,7 +8394,7 @@ - Open Source - JavaScript built_by: Anurag Hazra - built_by_url: "https://github.com/anuraghazra" + built_by_url: https://github.com/anuraghazra - title: VeganWorks url: https://veganworks.com/ main_url: https://veganworks.com/ @@ -8415,15 +8415,15 @@ built_by_url: https://codesundar.com featured: false - title: Nordic Microfinance Initiative - url: "https://www.nmimicro.no/" - main_url: "https://www.nmimicro.no/" + url: https://www.nmimicro.no/ + main_url: https://www.nmimicro.no/ description: Nordic Microfinance Initiative's (NMI) vision is to contribute to the empowerment of poor people in developing countries and to the creation of jobs and wealth on a sustainable basis. featured: false categories: - Finance - Business built_by: Othermachines - built_by_url: "https://othermachines.com" + built_by_url: https://othermachines.com - title: Subscribe Pro Documentation url: https://docs.subscribepro.com/ main_url: https://docs.subscribepro.com/ @@ -8449,8 +8449,8 @@ built_by_url: https://github.com/swdotcom/ featured: false - title: WTL Studio Website Builder - main_url: "https://wtlstudio.com/" - url: "https://wtlstudio.com/" + main_url: https://wtlstudio.com/ + url: https://wtlstudio.com/ description: > Cloud-based, SEO focused website builder - helping local businesses and startups reach audiences faster. featured: false @@ -8950,14 +8950,14 @@ Join thousands of developers from everywhere and access to job offers from hundreds of companies worldwide right at your inbox for free. - main_url: "https://reeemoter.com/" - url: "https://reeemoter.com/" + main_url: https://reeemoter.com/ + url: https://reeemoter.com/ featured: false categories: - Technology - Web Development built_by: Ramón Chancay - built_by_url: "https://ramonchancay.me/" + built_by_url: https://ramonchancay.me/ - title: Ananya Neogi main_url: https://ananyaneogi.com url: https://ananyaneogi.com @@ -9005,8 +9005,8 @@ built_by: Nima Habibkhoda featured: false - title: Thomas Wang's Blog - main_url: "https://www.thomaswang.io" - url: "https://www.thomaswang.io" + main_url: https://www.thomaswang.io + url: https://www.thomaswang.io description: >- Technical blog by Thomas Wang built_by: Thomas Wang @@ -9016,8 +9016,8 @@ - Blog - Web Development - title: Engleezi - main_url: "https://www.myengleezi.com" - url: "https://myengleezi.com/teachers/" + main_url: https://www.myengleezi.com + url: https://myengleezi.com/teachers/ description: >- Affordable, accessible and fun, Engleezi is an English tutoring service that aims to make your child a better and more fluent English speaker. Our unique online approach gets your children learning English one-on-one from a native English teacher from the comfort of your home. built_by: Suleiman Mayow @@ -9028,9 +9028,9 @@ - Learning - Technology - title: The Rebigulator - main_url: "https://www.rebigulator.org/" - source_url: "https://github.com/Me4502/Rebigulator/" - url: "https://rebigulator.org/" + main_url: https://www.rebigulator.org/ + source_url: https://github.com/Me4502/Rebigulator/ + url: https://rebigulator.org/ description: A quote-based via game powered by Frinkiac built_by: Matthew Miller built_by_url: https://matthewmiller.dev/ @@ -9163,7 +9163,7 @@ main_url: https://mallik.in url: https://mallik.in built_by: Arvind Kumar - built_by_url: "https://arvind.io/" + built_by_url: https://arvind.io/ description: > Mallikarjun Katakol is an Advertising, Architecture, Editorial, Fashion and Lifestyle Photographer based in Bangalore, India. Shoots Corporate & Business headshots, Portfolios for Models and Actors, Documents Projects for Architects, Fashion & Interior Designers @@ -9422,8 +9422,8 @@ built_by_url: https://github.com/AkashRajpurohit featured: false - title: See Kids Dream - url: "https://seekidsdream.org/" - main_url: "https://seekidsdream.org/" + url: https://seekidsdream.org/ + main_url: https://seekidsdream.org/ description: > A not-for-profit organization dedicated to empower youth with the skills, motivation and confidence. categories: @@ -9664,8 +9664,8 @@ built_by_url: https://github.com/lhorak featured: false - title: Alexandra Thomas - main_url: "https://alexandracthomas.com/" - url: "https://alexandracthomas.com/" + main_url: https://alexandracthomas.com/ + url: https://alexandracthomas.com/ description: > A portfolio site for Alexandra Thomas, a front-end developer with creative super powers based in Charlotte, NC. categories: @@ -9674,8 +9674,8 @@ - Web Development featured: false - title: Storto Productions - main_url: "https://www.storto-productions.com/" - url: "https://www.storto-productions.com/about/" + main_url: https://www.storto-productions.com/ + url: https://www.storto-productions.com/about/ featured: false description: > A portfolio site for a video production company based out of Phoenix, AZ. @@ -9685,7 +9685,7 @@ - Portfolio - Business built_by: Alexandra Thomas - built_by_url: "https://alexandracthomas.com/" + built_by_url: https://alexandracthomas.com/ - title: Zatsuzen Blog url: https://blog.zatsuzen.com main_url: https://blog.zatsuzen.com @@ -9696,14 +9696,14 @@ built_by: Akane built_by_url: https://twitter.com/akanewz - title: Matthew Mesa - url: "https://matthewmesa.com" - main_url: "https://matthewmesa.com" + url: https://matthewmesa.com + main_url: https://matthewmesa.com description: > Portfolio website for freelance digital specialist Matthew Mesa. categories: - Portfolio built_by: Matthew Mesa - built_by_url: "https://matthewmesa.com" + built_by_url: https://matthewmesa.com - title: Taskade main_url: https://taskade.com url: https://taskade.com @@ -9752,8 +9752,8 @@ built_by_url: https://ramonak.io/ featured: false - title: React JS Developer - main_url: "https://reacter.dev/" - url: "https://reacter.dev/" + main_url: https://reacter.dev/ + url: https://reacter.dev/ featured: false categories: - App @@ -9761,7 +9761,7 @@ - Web Development - Agency built_by: App Design - built_by_url: "https://appdesign.dev/" + built_by_url: https://appdesign.dev/ - title: Guillermo Gómez-Peña url: https://www.guillermogomezpena.com/ main_url: https://www.guillermogomezpena.com/ @@ -9823,8 +9823,8 @@ built_by: Alexandre Valsamou-Stanislawski built_by_url: https://www.noima.xyz - title: ProjectManager.tools - main_url: "https://projectmanager.tools/" - url: "https://projectmanager.tools/" + main_url: https://projectmanager.tools/ + url: https://projectmanager.tools/ featured: false categories: - App @@ -9832,7 +9832,7 @@ - Design - Agency built_by: App Design - built_by_url: "https://appdesign.dev/" + built_by_url: https://appdesign.dev/ - title: 1902 Software url: https://1902software.com/ main_url: https://1902software.com/ @@ -9882,14 +9882,14 @@ built_by_url: https://talentpoint.co featured: false - title: Marathon Oil - main_url: "https://www.marathonoil.com/" - url: "https://www.marathonoil.com/" + main_url: https://www.marathonoil.com/ + url: https://www.marathonoil.com/ featured: false categories: - Business - Marketing built_by: Corey Ward - built_by_url: "http://www.coreyward.me/" + built_by_url: http://www.coreyward.me/ - title: Gene url: https://www.geneglobal.com/work main_url: https://www.geneglobal.com @@ -9919,8 +9919,8 @@ built_by: medignition built_by_url: https://medignition.com/ - title: Dynobase - url: "https://dynobase.dev/" - main_url: "https://dynobase.dev/" + url: https://dynobase.dev/ + main_url: https://dynobase.dev/ description: > Professional GUI Client for DynamoDB. categories: @@ -9928,7 +9928,7 @@ - Programming - Web Development built_by: Rafal Wilinski - built_by_url: "https://rwilinski.me/" + built_by_url: https://rwilinski.me/ featured: false - title: Vaktija.eu url: https://vaktija.eu @@ -9960,37 +9960,37 @@ - title: Messi vs Ronaldo description: > The biggest debate in football - but who is the best, Messi or Ronaldo? This website provides all the goals and stats to help you reach your own conclusion. - main_url: "https://www.messivsronaldo.app/" - url: "https://www.messivsronaldo.app/" + main_url: https://www.messivsronaldo.app/ + url: https://www.messivsronaldo.app/ categories: - Sports - Data - App built_by: Stephen Greig - built_by_url: "http://ste.digital/" + built_by_url: http://ste.digital/ - title: Em Em Recipes - url: "https://ememrecipes.com" - main_url: "https://ememrecipes.com" + url: https://ememrecipes.com + main_url: https://ememrecipes.com description: > Finally, a recipe website that gets straight to the point. categories: - Blog - Food built_by: Matthew Mesa - built_by_url: "https://matthewmesa.com" + built_by_url: https://matthewmesa.com - title: Yuuniworks Portfolio / Blog - main_url: "https://www.yuuniworks.com/" - url: "https://www.yuuniworks.com/" - source_url: "https://github.com/junkboy0315/gatsby-portfolio-blog" + main_url: https://www.yuuniworks.com/ + url: https://www.yuuniworks.com/ + source_url: https://github.com/junkboy0315/gatsby-portfolio-blog featured: false categories: - Portfolio - Web Development - Blog - title: Jun Chen Portfolio - url: "https://www.junchenjun.me" - main_url: "https://www.junchenjun.me" - source_url: "https://github.com/junchenjun/junchenjun.me" + url: https://www.junchenjun.me + main_url: https://www.junchenjun.me + source_url: https://github.com/junchenjun/junchenjun.me description: > Get to know Jun. categories: @@ -9998,10 +9998,10 @@ - Blog - Web Development built_by: Jun Chen - built_by_url: "https://www.junchenjun.me" + built_by_url: https://www.junchenjun.me - title: Xavier Mirabelli-Montan - url: "https://xavie.mirmon.co.uk" - main_url: "https://xavie.mirmon.co.uk" + url: https://xavie.mirmon.co.uk + main_url: https://xavie.mirmon.co.uk source_url: https://github.com/xaviemirmon/xavier-developer-site description: > The developer portfolio and blog for Xavier Mirabelli-Montan. Built using TinaCMS Grande hosted on Gatsby Cloud. @@ -10011,8 +10011,8 @@ - Programming featured: false - title: MPG Calculator - url: "https://www.mpg-calculator.co.uk" - main_url: "https://www.mpg-calculator.co.uk" + url: https://www.mpg-calculator.co.uk + main_url: https://www.mpg-calculator.co.uk description: > A website which allows you to calculate the MPG of your vehicle. categories: @@ -10020,7 +10020,7 @@ - Accessibility - Blog built_by: PJ - built_by_url: "https://pjsachdev.me" + built_by_url: https://pjsachdev.me - title: Softblues main_url: https://softblues.io url: https://softblues.io From 7ef06208e0949b096325f7a179241bdb07cdd762 Mon Sep 17 00:00:00 2001 From: Michael <184316+muescha@users.noreply.github.com> Date: Wed, 18 Mar 2020 23:50:59 +0100 Subject: [PATCH 26/34] remove unused import in blog post (#22173) --- .../index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md b/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md index a59f2907802e1..ac2763414975a 100644 --- a/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md +++ b/docs/blog/2019-04-30-how-to-build-a-blog-with-wordpress-and-gatsby-part-2/index.md @@ -270,7 +270,6 @@ The code below pulls in the data for blog posts from WordPress and creates a pag // You can delete this file if you're not using it const path = require(`path`) -const { createFilePath } = require(`gatsby-source-filesystem`) exports.createPages = async ({ graphql, actions, reporter }) => { const { createPage } = actions From 49059da2e40b9873278780bfa480130956e54809 Mon Sep 17 00:00:00 2001 From: Jonas Reitmann Date: Wed, 18 Mar 2020 23:52:41 +0100 Subject: [PATCH 27/34] Add link to gatsby-plugin-meta-redirect (#22163) --- packages/gatsby/src/redux/actions/public.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index 0751cda1f1937..5a6db72d66266 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -1367,7 +1367,9 @@ const maybeAddPathPrefix = (path, pathPrefix) => { * of the box. You must have a plugin setup to integrate the redirect data with * your hosting technology e.g. the [Netlify * plugin](/packages/gatsby-plugin-netlify/), or the [Amazon S3 - * plugin](/packages/gatsby-plugin-s3/). + * plugin](/packages/gatsby-plugin-s3/). Alternatively, you can use + * [this plugin](/packages/gatsby-plugin-meta-redirect/) to generate meta redirect + * html files for redirecting on any static file host. * * @param {Object} redirect Redirect data * @param {string} redirect.fromPath Any valid URL. Must start with a forward slash From d2d32d4f61619da5200f2dd15a034cd51f5e9932 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 15:54:24 -0700 Subject: [PATCH 28/34] chore(release): Publish - gatsby-source-contentful@2.1.100 - gatsby-source-drupal@3.3.30 - gatsby-source-filesystem@2.1.57 - gatsby-source-shopify@3.0.53 - gatsby-source-wordpress@3.1.74 - gatsby-theme-blog-core@1.2.32 - gatsby-theme-blog@1.3.34 - gatsby-theme-notes@1.1.30 - gatsby@2.19.48 --- packages/gatsby-source-contentful/CHANGELOG.md | 4 ++++ packages/gatsby-source-contentful/package.json | 4 ++-- packages/gatsby-source-drupal/CHANGELOG.md | 4 ++++ packages/gatsby-source-drupal/package.json | 4 ++-- packages/gatsby-source-filesystem/CHANGELOG.md | 6 ++++++ packages/gatsby-source-filesystem/package.json | 2 +- packages/gatsby-source-shopify/CHANGELOG.md | 4 ++++ packages/gatsby-source-shopify/package.json | 4 ++-- packages/gatsby-source-wordpress/CHANGELOG.md | 4 ++++ packages/gatsby-source-wordpress/package.json | 4 ++-- packages/gatsby-theme-blog-core/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog-core/package.json | 6 +++--- packages/gatsby-theme-blog/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog/package.json | 6 +++--- packages/gatsby-theme-notes/CHANGELOG.md | 4 ++++ packages/gatsby-theme-notes/package.json | 6 +++--- packages/gatsby/CHANGELOG.md | 4 ++++ packages/gatsby/package.json | 2 +- 18 files changed, 57 insertions(+), 19 deletions(-) diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 0b0503eb7abef..7220f3782e248 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.100](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@2.1.99...gatsby-source-contentful@2.1.100) (2020-03-18) + +**Note:** Version bump only for package gatsby-source-contentful + ## [2.1.99](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@2.1.98...gatsby-source-contentful@2.1.99) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 20aba450e92c9..7d61d470f1841 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.1.99", + "version": "2.1.100", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.0.34", "gatsby-plugin-sharp": "^2.4.13", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "is-online": "^8.2.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.15", diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index d24673b83b065..93f074f3b8e5d 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@3.3.29...gatsby-source-drupal@3.3.30) (2020-03-18) + +**Note:** Version bump only for package gatsby-source-drupal + ## [3.3.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@3.3.28...gatsby-source-drupal@3.3.29) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 9bb23a6b331a1..0c34b746f7f71 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "3.3.29", + "version": "3.3.30", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "axios": "^0.19.2", "bluebird": "^3.7.2", "body-parser": "^1.19.0", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "lodash": "^4.17.15", "tiny-async-pool": "^1.1.0" }, diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index d262f28506806..bdc896dc09011 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.57](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.1.56...gatsby-source-filesystem@2.1.57) (2020-03-18) + +### Features + +- **gatsby-source-filesystem:** Unify publicURL ([#22328](https://github.com/gatsbyjs/gatsby/issues/22328)) ([756d386](https://github.com/gatsbyjs/gatsby/commit/756d386)) + ## [2.1.56](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@2.1.55...gatsby-source-filesystem@2.1.56) (2020-03-16) **Note:** Version bump only for package gatsby-source-filesystem diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index ff7d83256480b..06c0242c7ad9b 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby plugin which parses files within a directory for further parsing by other plugins", - "version": "2.1.56", + "version": "2.1.57", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index 7a8150498ddf0..d29f27ad8105a 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.53](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@3.0.52...gatsby-source-shopify@3.0.53) (2020-03-18) + +**Note:** Version bump only for package gatsby-source-shopify + ## [3.0.52](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@3.0.51...gatsby-source-shopify@3.0.52) (2020-03-16) **Note:** Version bump only for package gatsby-source-shopify diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index af49cc7502d24..73f9636e6467e 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "3.0.52", + "version": "3.0.53", "description": "Gatsby source plugin for building websites using Shopfiy as a data source.", "scripts": { "build": "babel src --out-dir . --ignore **/__tests__", @@ -36,7 +36,7 @@ "babel-preset-gatsby-package": "^0.2.18", "chalk": "^2.4.2", "gatsby-node-helpers": "^0.3.0", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "graphql-request": "^1.8.2", "lodash": "^4.17.15", "p-iteration": "^1.1.8", diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 95254abe31e5c..c2141a1ddd7f3 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.74](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@3.1.73...gatsby-source-wordpress@3.1.74) (2020-03-18) + +**Note:** Version bump only for package gatsby-source-wordpress + ## [3.1.73](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@3.1.72...gatsby-source-wordpress@3.1.73) (2020-03-18) ### Bug Fixes diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index d93ef13f746f8..11b088d029b41 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-wordpress", "description": "Gatsby source plugin for building websites using the WordPress CMS as a data source.", - "version": "3.1.73", + "version": "3.1.74", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "bluebird": "^3.7.2", "deep-map": "^1.5.0", "deep-map-keys": "^1.2.0", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.15", "minimatch": "^3.0.4", diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index 5d8fe7ba895f4..b06cd24603393 100644 --- a/packages/gatsby-theme-blog-core/CHANGELOG.md +++ b/packages/gatsby-theme-blog-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.32](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.31...gatsby-theme-blog-core@1.2.32) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.2.31](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.30...gatsby-theme-blog-core@1.2.31) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog-core diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json index c0ef4adc67f05..54dfe0f7c0b81 100644 --- a/packages/gatsby-theme-blog-core/package.json +++ b/packages/gatsby-theme-blog-core/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog-core", - "version": "1.2.31", + "version": "1.2.32", "main": "index.js", "author": "christopherbiscardi (@chrisbiscardi)", "license": "MIT", @@ -24,13 +24,13 @@ "gatsby-remark-copy-linked-files": "^2.1.40", "gatsby-remark-images": "^3.1.50", "gatsby-remark-smartypants": "^2.1.23", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "gatsby-transformer-sharp": "^2.3.19", "remark-slug": "^5.1.2" }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.19.47", + "gatsby": "^2.19.48", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index b1062c2de4720..fee37d1b8ab9c 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.34](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.33...gatsby-theme-blog@1.3.34) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.3.33](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.32...gatsby-theme-blog@1.3.33) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index 0e5ae6c9c4e70..6a4c88b413d3b 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.3.33", + "version": "1.3.34", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -29,7 +29,7 @@ "gatsby-plugin-react-helmet": "^3.1.24", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.1.21", - "gatsby-theme-blog-core": "^1.2.31", + "gatsby-theme-blog-core": "^1.2.32", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.19.47", + "gatsby": "^2.19.48", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md index 04a25d4ce97aa..24f000bc11415 100644 --- a/packages/gatsby-theme-notes/CHANGELOG.md +++ b/packages/gatsby-theme-notes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.29...gatsby-theme-notes@1.1.30) (2020-03-18) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.1.29](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.28...gatsby-theme-notes@1.1.29) (2020-03-18) **Note:** Version bump only for package gatsby-theme-notes diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index ad0845b33f102..324e48a67e61c 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.1.29", + "version": "1.1.30", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.19.47", + "gatsby": "^2.19.48", "react": "^16.12.0", "react-dom": "^16.12.0" }, @@ -44,7 +44,7 @@ "gatsby-plugin-og-image": "0.0.1", "gatsby-plugin-redirects": "^1.0.0", "gatsby-plugin-theme-ui": "^0.2.53", - "gatsby-source-filesystem": "^2.1.56", + "gatsby-source-filesystem": "^2.1.57", "is-present": "^1.0.0", "react-feather": "^1.1.6", "theme-ui": "^0.2.52", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index d55b86d625ceb..b04d5b91a6835 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.19.48](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.47...gatsby@2.19.48) (2020-03-18) + +**Note:** Version bump only for package gatsby + ## [2.19.47](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.46...gatsby@2.19.47) (2020-03-18) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 85803152fa15c..ebe7f3e0b7f90 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "2.19.47", + "version": "2.19.48", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/bin/gatsby.js" From 9a783f4334aac08e2bd8c1ecf3732c64a6ad7d88 Mon Sep 17 00:00:00 2001 From: Yuki Takemoto Date: Thu, 19 Mar 2020 13:11:04 +0900 Subject: [PATCH 29/34] chore(gatsby): Convert create-schema-customization to typescript (#22392) --- packages/gatsby/src/bootstrap/index.js | 3 ++- packages/gatsby/src/commands/develop.ts | 2 +- ...tomization.js => create-schema-customization.ts} | 13 ++++++++++--- 3 files changed, 13 insertions(+), 5 deletions(-) rename packages/gatsby/src/utils/{create-schema-customization.js => create-schema-customization.ts} (50%) diff --git a/packages/gatsby/src/bootstrap/index.js b/packages/gatsby/src/bootstrap/index.js index a32983bce70ab..471cf5acc7569 100644 --- a/packages/gatsby/src/bootstrap/index.js +++ b/packages/gatsby/src/bootstrap/index.js @@ -12,6 +12,7 @@ const telemetry = require(`gatsby-telemetry`) const apiRunnerNode = require(`../utils/api-runner-node`) import { getBrowsersList } from "../utils/browserslist" +import { createSchemaCustomization } from "../utils/create-schema-customization" const { store, emitter } = require(`../redux`) const loadPlugins = require(`./load-plugins`) const loadThemes = require(`./load-themes`) @@ -434,7 +435,7 @@ module.exports = async (args: BootstrapArgs) => { parentSpan: bootstrapSpan, }) activity.start() - await require(`../utils/create-schema-customization`)({ + await createSchemaCustomization({ parentSpan: bootstrapSpan, }) activity.end() diff --git a/packages/gatsby/src/commands/develop.ts b/packages/gatsby/src/commands/develop.ts index 23253c8d09901..9e89fe1afcc12 100644 --- a/packages/gatsby/src/commands/develop.ts +++ b/packages/gatsby/src/commands/develop.ts @@ -36,7 +36,7 @@ import bootstrapPageHotReloader from "../bootstrap/page-hot-reloader" import { developStatic } from "./develop-static" import withResolverContext from "../schema/context" import sourceNodes from "../utils/source-nodes" -import createSchemaCustomization from "../utils/create-schema-customization" +import { createSchemaCustomization } from "../utils/create-schema-customization" import websocketManager from "../utils/websocket-manager" import getSslCert from "../utils/get-ssl-cert" import { slash } from "gatsby-core-utils" diff --git a/packages/gatsby/src/utils/create-schema-customization.js b/packages/gatsby/src/utils/create-schema-customization.ts similarity index 50% rename from packages/gatsby/src/utils/create-schema-customization.js rename to packages/gatsby/src/utils/create-schema-customization.ts index bdecb11ef7e30..cd4e28be78a93 100644 --- a/packages/gatsby/src/utils/create-schema-customization.js +++ b/packages/gatsby/src/utils/create-schema-customization.ts @@ -1,7 +1,14 @@ -const apiRunnerNode = require(`./api-runner-node`) -const { store } = require(`../redux`) +import apiRunnerNode from "./api-runner-node" +import { store } from "../redux" +import { Span } from "opentracing" -module.exports = async ({ refresh = false, parentSpan }) => { +export const createSchemaCustomization = async ({ + refresh = false, + parentSpan, +}: { + refresh?: boolean + parentSpan?: Span +}): Promise => { if (refresh) { store.dispatch({ type: `CLEAR_SCHEMA_CUSTOMIZATION` }) } From d4d347b94a6fed0339b2ab55a6f9483c0f63f029 Mon Sep 17 00:00:00 2001 From: Yuki Takemoto Date: Thu, 19 Mar 2020 13:13:11 +0900 Subject: [PATCH 30/34] chore(gatsby): Convert built-in-types to typescript (#22391) --- .../schema/types/{built-in-types.js => built-in-types.ts} | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) rename packages/gatsby/src/schema/types/{built-in-types.js => built-in-types.ts} (94%) diff --git a/packages/gatsby/src/schema/types/built-in-types.js b/packages/gatsby/src/schema/types/built-in-types.ts similarity index 94% rename from packages/gatsby/src/schema/types/built-in-types.js rename to packages/gatsby/src/schema/types/built-in-types.ts index dde7c19faccbd..f538d5a70461e 100644 --- a/packages/gatsby/src/schema/types/built-in-types.js +++ b/packages/gatsby/src/schema/types/built-in-types.ts @@ -1,4 +1,4 @@ -const { parse } = require(`graphql`) +import { parse, DocumentNode } from "graphql" const fileType = ` type File implements Node @infer { @@ -82,9 +82,5 @@ const sitePageType = ` } ` -const builtInTypeDefinitions = () => +export const builtInTypeDefinitions = (): DocumentNode[] => [fileType, directoryType, sitePageType].map(type => parse(type)) - -module.exports = { - builtInTypeDefinitions, -} From 3380e89529675583b370fb918ef0a6046e43da1a Mon Sep 17 00:00:00 2001 From: Blaine Kasten Date: Wed, 18 Mar 2020 23:28:44 -0500 Subject: [PATCH 31/34] chore(gatsby): Increase chances of seeing feedback request 5x (#22393) --- packages/gatsby/src/utils/feedback.ts | 32 +++++++++++++++++++-------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/packages/gatsby/src/utils/feedback.ts b/packages/gatsby/src/utils/feedback.ts index 8c4e42ad5f6fe..1cf5268c9962a 100644 --- a/packages/gatsby/src/utils/feedback.ts +++ b/packages/gatsby/src/utils/feedback.ts @@ -22,14 +22,7 @@ export function showFeedbackRequest(): void { report.log(`\nGive us your feedback here: https://gatsby.dev/feedback\n\n`) } -// We are only showing feedback requests to users in if they pass a few checks: -// 1. They pass a Math.random() check. This is a skateboard version of not sending out all requests in one day. -// 2. They haven't disabled the feedback mechanism -// 3. They don't have the environment variable to disable feedback present -// 4. It's been at least 3 months since the last feedback request -// 5. They are on the most recent version of Gatsby -export async function userPassesFeedbackRequestHeuristic(): Promise { - // Heuristic 1 +const randomChanceToBeTrue = (): boolean => { // This is spreading the request volume over the quarter. // We are grabbing a randomNumber within the spread of a first day // of a quarter, to the last day @@ -41,7 +34,28 @@ export async function userPassesFeedbackRequestHeuristic(): Promise { ) const randomNumberWithinQuarter = randomNumber * currentQuarter - if (randomNumberWithinQuarter !== getDayOfYear(new Date())) { + return randomNumberWithinQuarter === getDayOfYear(new Date()) +} + +// We are only showing feedback requests to users in if they pass a few checks: +// 1. They pass a Math.random() check. This is a skateboard version of not sending out all requests in one day. +// 2. They haven't disabled the feedback mechanism +// 3. They don't have the environment variable to disable feedback present +// 4. It's been at least 3 months since the last feedback request +// 5. They are on the most recent version of Gatsby +export async function userPassesFeedbackRequestHeuristic(): Promise { + // Heuristic 1 + // We originally wrote this to have a single chance of hitting. + // We wanted to up the chance by 5x, so this is our crude - temporary - + // way of giving the user 5 chances to passing. + const randomlyPassingHeuristic = + randomChanceToBeTrue() || + randomChanceToBeTrue() || + randomChanceToBeTrue() || + randomChanceToBeTrue() || + randomChanceToBeTrue() + + if (!randomlyPassingHeuristic) { return false } From e4cd2f135cd2385cc9ba1dd78cb3f3d457c5b6d3 Mon Sep 17 00:00:00 2001 From: Daiki Ihara Date: Thu, 19 Mar 2020 13:33:10 +0900 Subject: [PATCH 32/34] chore(gatsby): migrate webpack-error-utils to TypeScript (#22278) * chore(gatsby): migrate webpack-error-utils to TypeScript * fix pointed out --- packages/gatsby/src/commands/build.js | 2 +- ...-error-utils.js => webpack-error-utils.ts} | 30 ++++++++++++++++--- 2 files changed, 27 insertions(+), 5 deletions(-) rename packages/gatsby/src/utils/{webpack-error-utils.js => webpack-error-utils.ts} (67%) diff --git a/packages/gatsby/src/commands/build.js b/packages/gatsby/src/commands/build.js index 2cd19207a2ae6..dc4930d7539f6 100644 --- a/packages/gatsby/src/commands/build.js +++ b/packages/gatsby/src/commands/build.js @@ -16,7 +16,7 @@ const { store, readState } = require(`../redux`) const queryUtil = require(`../query`) import * as appDataUtil from "../utils/app-data" import * as WorkerPool from "../utils/worker/pool" -const { structureWebpackErrors } = require(`../utils/webpack-error-utils`) +import { structureWebpackErrors } from "../utils/webpack-error-utils" import { userPassesFeedbackRequestHeuristic, showFeedbackRequest, diff --git a/packages/gatsby/src/utils/webpack-error-utils.js b/packages/gatsby/src/utils/webpack-error-utils.ts similarity index 67% rename from packages/gatsby/src/utils/webpack-error-utils.js rename to packages/gatsby/src/utils/webpack-error-utils.ts index 9a692f1505198..6920af0cbbbf3 100644 --- a/packages/gatsby/src/utils/webpack-error-utils.js +++ b/packages/gatsby/src/utils/webpack-error-utils.ts @@ -1,12 +1,31 @@ const reporter = require(`gatsby-cli/lib/reporter`) +import { Stats } from "webpack" const stageCodeToReadableLabel = { "build-javascript": `Generating JavaScript bundles`, "build-html": `Generating SSR bundle`, develop: `Generating development JavaScript bundle`, -} +} as const + +type Stage = keyof typeof stageCodeToReadableLabel +type StageLabel = typeof stageCodeToReadableLabel[Stage] -const transformWebpackError = (stage, webpackError) => { +interface ITransformedWebpackError { + id: "98123" + filePath?: string + location?: { + start: string + } + context: { + stage: Stage + stageLabel: StageLabel + message?: string + } +} +const transformWebpackError = ( + stage: keyof typeof stageCodeToReadableLabel, + webpackError: any +): ITransformedWebpackError => { return { id: `98123`, filePath: webpackError?.module?.resource, @@ -30,7 +49,10 @@ const transformWebpackError = (stage, webpackError) => { } } -exports.structureWebpackErrors = (stage, webpackError) => { +export const structureWebpackErrors = ( + stage: Stage, + webpackError: any +): ITransformedWebpackError[] | ITransformedWebpackError => { if (Array.isArray(webpackError)) { return webpackError.map(e => transformWebpackError(stage, e)) } @@ -38,7 +60,7 @@ exports.structureWebpackErrors = (stage, webpackError) => { return transformWebpackError(stage, webpackError) } -exports.reportWebpackWarnings = stats => { +export const reportWebpackWarnings = (stats: Stats): void => { stats.compilation.warnings.forEach(webpackWarning => { if (webpackWarning.warning) { // grab inner Exception if it exists From 541c3b96853c734f3c570f9e7de753eb5651d81f Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 18 Mar 2020 21:59:37 -0700 Subject: [PATCH 33/34] chore(release): Publish - gatsby-theme-blog-core@1.2.33 - gatsby-theme-blog@1.3.35 - gatsby-theme-notes@1.1.31 - gatsby@2.19.49 --- packages/gatsby-theme-blog-core/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog-core/package.json | 4 ++-- packages/gatsby-theme-blog/CHANGELOG.md | 4 ++++ packages/gatsby-theme-blog/package.json | 6 +++--- packages/gatsby-theme-notes/CHANGELOG.md | 4 ++++ packages/gatsby-theme-notes/package.json | 4 ++-- packages/gatsby/CHANGELOG.md | 4 ++++ packages/gatsby/package.json | 2 +- 8 files changed, 24 insertions(+), 8 deletions(-) diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index b06cd24603393..3a034739f8fa6 100644 --- a/packages/gatsby-theme-blog-core/CHANGELOG.md +++ b/packages/gatsby-theme-blog-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.33](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.32...gatsby-theme-blog-core@1.2.33) (2020-03-19) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.2.32](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.2.31...gatsby-theme-blog-core@1.2.32) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog-core diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json index 54dfe0f7c0b81..88e54da656f06 100644 --- a/packages/gatsby-theme-blog-core/package.json +++ b/packages/gatsby-theme-blog-core/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog-core", - "version": "1.2.32", + "version": "1.2.33", "main": "index.js", "author": "christopherbiscardi (@chrisbiscardi)", "license": "MIT", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.19.48", + "gatsby": "^2.19.49", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index fee37d1b8ab9c..4dd8c4c78c31d 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.35](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.34...gatsby-theme-blog@1.3.35) (2020-03-19) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.3.34](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.3.33...gatsby-theme-blog@1.3.34) (2020-03-18) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index 6a4c88b413d3b..5964cb89bbf2d 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.3.34", + "version": "1.3.35", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -29,7 +29,7 @@ "gatsby-plugin-react-helmet": "^3.1.24", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.1.21", - "gatsby-theme-blog-core": "^1.2.32", + "gatsby-theme-blog-core": "^1.2.33", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.19.48", + "gatsby": "^2.19.49", "prettier": "^1.19.1", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md index 24f000bc11415..c2b698d7cd5a5 100644 --- a/packages/gatsby-theme-notes/CHANGELOG.md +++ b/packages/gatsby-theme-notes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.31](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.30...gatsby-theme-notes@1.1.31) (2020-03-19) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.1.30](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.1.29...gatsby-theme-notes@1.1.30) (2020-03-18) **Note:** Version bump only for package gatsby-theme-notes diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 324e48a67e61c..8ed957443c08a 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.1.30", + "version": "1.1.31", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.19.48", + "gatsby": "^2.19.49", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index b04d5b91a6835..8bde7b1f65259 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.19.49](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.48...gatsby@2.19.49) (2020-03-19) + +**Note:** Version bump only for package gatsby + ## [2.19.48](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.19.47...gatsby@2.19.48) (2020-03-18) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index ebe7f3e0b7f90..6f94c5f633319 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "2.19.48", + "version": "2.19.49", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/bin/gatsby.js" From 19feaa67d8dd170bd036885de8f70e8789acb862 Mon Sep 17 00:00:00 2001 From: shyamlohar-ai <62055498+shyamlohar-ai@users.noreply.github.com> Date: Thu, 19 Mar 2020 14:25:55 +0530 Subject: [PATCH 34/34] chore(starters): Add gatsby-attila-theme-starter to starters (#22175) Co-authored-by: gatsbybot --- docs/starters.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/starters.yml b/docs/starters.yml index 303dc2ea6abdb..639a4e471d8fb 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5588,6 +5588,28 @@ - Robots.txt - Sitemap - PWA +- url: https://gatsby-attila.netlify.com/ + repo: https://github.com/armada-inc/gatsby-attila-theme-starter + description: A Gatsby starter for creating blogs from headless Ghost CMS. + tags: + - Blog + - CMS:Headless + - SEO + - Styling:SCSS + - Pagination + features: + - Attila standard Ghost theme + - Data sourcing from headless Ghost + - Responsive design + - SEO optimized + - OpenGraph structured data + - Twitter Cards meta + - Sitemap Generation + - XML Sitemaps + - Progressive Web App + - Offline Support + - RSS Feed + - Composable and extensible - url: https://gatsby-contentful-portfolio.netlify.com/ repo: https://github.com/wkocjan/gatsby-contentful-portfolio description: Gatsby portfolio theme integrated with Contentful