plugins

Monorepo for plugins in the Gatsby User Collective.

MIT License

Downloads
50.1K
Stars
58
Committers
42

Bot releases are visible (Hide)

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Major Changes

  • #331 5eed071 Thanks @laurenskling! - The Strapi company has decided to transfer maintenance for gatsby-source-strapi to the community. The Gatsby User Collective has taken upon itself the task to maintain and release this plugin from now on.

    Changes made:

    Because of these changes, in ownership and in code, we've released this version as a major. It should not contain any breaking changes and upgrading should be possible without any issues.

    Are you dependent on this plugin? Come join us and help grow this plugin as a maintainer.

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #321 fa6aa14 Thanks @moonmeister! - FEAT: Added ability to configure Fastify server options from plugin config. As a part of this effort several non-critical defaults have been changed. While debating this change it was relized these defaults were more for development ease than good production defaults.

    1. Request logging is now on by default as is normal in Fastify.
    2. Logging is no longer "pretty" when NODE_ENV=development.

    If you'd like to restore either of the functionalities see:

    //gatsby-config.js
    module.exports = {
      /* Site config */
      plugins: [
        /* Rest of the plugins */
        {
          resolve: `gatsby-plugin-fastify`,
          /* Default option value shown */
          options: {
            fastify: {
              logger: {
                level: logLevel,
                transport:
                  process.env.NODE_ENV === "development"
                    ? {
                        target: "pino-pretty",
                        options: {
                          translateTime: "HH:MM:ss Z",
                          ignore: "pid,hostname",
                        },
                      }
                    : undefined,
              },
              disableRequestLogging: ["trace", "debug"].includes(logLevel) ? false : true,
            },
          },
        },
      ],
    };
    

    To restore pretty printing you'll also need to install pino-pretty from npm.

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Major Changes

  • #318 2c527dc Thanks @moonmeister! - Moved into the Gatsby User Collective. Should be no breaking changes but the maintainers and build/release process have been updated. Gatsby v5 has also been added to the peerDeps.
plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #306 c109eb2 Thanks @moonmeister! - We've changed the default redirect codes to 307/308 from 301/302. See the redirects docs for more info. This won't break most use cases, unless you were expecting a specific response code. You may uses Gatsby's "statusCode" field to explicitly set the satus code back to 301/302 when creating the redirect.

Patch Changes

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Bumping dependencies to match Gatsby v5 related changes. We will only be testing against Gatsby v5, so there's no promisses for Gatsby v4, though there's no known breaking changes.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.
plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Bumping dependencies to match Gatsby v5 related changes. We will only be testing against Gatsby v5, so there's no promisses for Gatsby v4, though there's no known breaking changes.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.

  • #303 bae3266 Thanks @renovate! - Adding Gatsby v5 to peer dependencies now that testing has been done.

  • #288 0a047a8 Thanks @moonmeister! - chore(repo): node 18 version bumps and testing

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Major Changes

  • #303 bae3266 Thanks @renovate! - Dropping Gatsby v2/v3 peer dependency support as these versions of Gatsby are EOL. Please update to a supported version of Gatsby, v4 or v5.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.
plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Bumping dependencies to match Gatsby v5 related changes. We will only be testing against Gatsby v5, so there's no promisses for Gatsby v4, though there's no known breaking changes.

Patch Changes

  • #304 7bfdd1c Thanks @renovate! - chore(packages): update dependency cypress to v11

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.

  • #288 0a047a8 Thanks @moonmeister! - chore(repo): node 18 version bumps and testing

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Adding Gatsby v4 and v5 as peer dependencies. As these are they only supported versions of Gatsby.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.

  • #288 0a047a8 Thanks @moonmeister! - chore(repo): node 18 version bumps and testing

plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Bumping dependencies to match Gatsby v5 related changes. We will only be testing against Gatsby v5, so there's no promisses for Gatsby v4, though there's no known breaking changes.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.
plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Major Changes

  • #303 bae3266 Thanks @renovate! - Dropping Gatsby v2/v3 peer dependency support as these versions of Gatsby are EOL. Please update to a supported version of Gatsby, v4 or v5.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.
plugins - [email protected]

Published by gatsby-uc-bot almost 2 years ago

Minor Changes

  • #303 bae3266 Thanks @renovate! - Adding Gatsby v4 and v5 as peer dependencies. As these are they only supported versions of Gatsby.

Patch Changes

  • #305 97af0d6 Thanks @moonmeister! - ADded ESLint configs and updated packages to lint rules. Don't expect any functional changes but code was changed. Please open an issue if you notice any change in behavior.
Package Rankings
Top 3.19% on Npmjs.org
Related Projects