nodejs / node-addon-examples

Node.js C++ addon examples from http://nodejs.org/docs/latest/api/addons.html
Other
2.48k stars 602 forks source link

Bump the all group across 1 directory with 42 updates #543

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 2 weeks ago

Bumps the all group with 42 updates in the /website directory:

Package From To
@reach/skip-nav 0.3.0 0.18.0
babel-plugin-styled-components 1.13.3 2.1.4
gatsby 2.32.13 5.13.7
gatsby-plugin-canonical-urls 2.10.0 5.13.1
gatsby-plugin-catch-links 2.10.0 5.13.1
gatsby-plugin-netlify 2.11.1 5.1.1
gatsby-plugin-netlify-cache 1.2.0 2.0.0
gatsby-plugin-react-helmet 3.10.0 6.13.1
gatsby-plugin-sharp 2.14.4 5.13.1
gatsby-plugin-styled-components 3.10.0 6.13.1
gatsby-plugin-typescript 2.12.1 5.13.1
gatsby-remark-autolink-headers 2.11.0 6.13.1
gatsby-remark-copy-linked-files 2.10.0 6.13.2
gatsby-remark-embed-snippet 4.10.0 8.13.1
gatsby-remark-images 3.11.1 7.13.2
gatsby-remark-prismjs 3.13.0 7.13.2
gatsby-remark-relative-images 0.2.3 2.0.5
gatsby-remark-responsive-iframe 2.11.0 6.13.2
gatsby-remark-smartypants 2.10.0 6.13.1
gatsby-source-filesystem 2.11.1 5.13.1
gatsby-transformer-json 2.11.0 5.13.1
gatsby-transformer-remark 2.16.1 6.13.1
gatsby-transformer-sharp 2.12.1 5.13.1
polished 3.7.2 4.3.1
react 16.10.2 18.3.1
react-dom 16.10.2 18.3.1
react-helmet 5.2.1 6.1.0
rehype-react 3.1.0 8.0.0
styled-components 4.4.1 6.1.13
typescript 3.6.4 5.6.2
@types/history 4.7.11 5.0.0
@types/node 20.16.5 22.5.5
@types/react 16.14.61 18.3.8
@types/react-dom 16.9.24 18.3.0
@types/react-helmet 5.0.27 6.1.11
@types/styled-components 4.4.3 5.1.34
gh-pages 2.2.0 6.1.1
prettier 1.19.1 3.3.3
rimraf 2.7.1 6.0.1
serve 11.3.2 14.2.3
tslint 5.20.1 6.1.3
tslint-react 4.2.0 5.0.0

Updates @reach/skip-nav from 0.3.0 to 0.18.0

Release notes

Sourced from @​reach/skip-nav's releases.

v0.18.0

Changes for individual packages can now be found in the CHANGELOG.md file in the root of the affected package. GitHub releases will be used to document changes affecting all or several packages in the repo.

BREAKING Changes

  • All default exports have been removed. Replace all default imports with the appropriate documented named export.
  • The output directory structure has changed slightly. Module files are now named reach-<pkg>.mjs instead of reach-<pkg>.esm.js.

Minor Changes

  • We have simplified our build setup to remove a boatload of dependencies. Build output for all packages may look slightly different, though functionally packages that don't have explicit changes marked in the release notes have not changed.

    This may affect you if you use patch-package to modify output code. If you need support for legacy browsers, the new bundle may not transpile the same ECMA features as before. In that case you may want to transpile Reach packages directly.

  • We no longer check that our internal styles are included by looking for a defined CSS custom property. You can still include our base styles as before, but this removes the need to define --reach-<pkg> in your own stylesheets to silence dev warnings.

v0.17.0

💔 Breaking Changes

  • disclosure
    • In uncontrolled disclosures, previously we would render the disclosure as open on the first render, regardless of the defaultOpen prop's value. This was done as a progressive enhancement to ensure content was visible to users without JavaScript, but in most cases it just meant that the user might see a flash before the state would change, causing unwanted layout shift.
    • We simplified this by simply respecting the defaultOpen prop's value on the initial render. If you want the old behavior, control the state of your disclosures and ensure that the initial open state is always set to true, then set the desired state for the following render in useEffect.
  • tabs
    • Removed the isSelected from from the Tab component. This prop was useful before we had hooks, but we can now get the selected tab from context without using render props. (2dd0aec73c4cc2a9a1936cb6c3e43933b2d2765f)

🐛 Bugfixes

  • auto-id
    • Use the user-provided ID beyond the first render for deterministic behavior (b2f3bc010091a0bc7a99985657137101a58036ef)
  • tabs
    • Stop managing focus on mouse clicks to fix :focus-visible
  • listbox
    • Update submit button querySelector specificity to fix incorrect button clicks (#903)
  • menu-button, combobox, listbox
    • Skip rendering of portaled popovers before hydration. This prevents unwanted layout shift when the server-rendered popover mounts to a temporary DOM node (a8f38a497c0481156a4da1fecef955f398101327).

🤜🤛 8 Committers

v0.16.5

In @reach/combobox, we added a data-expanded attribute to the parent wrapper and popover for simpler styling based on the expanded state of the input.

v0.16.4

This release fixes a bug in Combobox where the selection in a controlled combobox input would trigger a flash with the stale value. We should always defer to the user's value when the input is controlled (Thanks @​arackaf!) -- #865

... (truncated)

Changelog

Sourced from @​reach/skip-nav's changelog.

0.18.0

Minor Changes

BREAKING Changes

  • All default exports have been removed. Replace all default imports with the appropriate documented named export.
  • The output directory structure has changed slightly. Module files are now named reach-<pkg>.mjs instead of reach-<pkg>.esm.js.

Minor Changes

  • We have simplified our build setup to remove a boatload of dependencies. Build output for all packages may look slightly different, though functionally packages that don't have explicit changes marked in the release notes have not changed.

    This may affect you if you use patch-package to modify output code. If you need support for legacy browsers, the new bundle may not transpile the same ECMA features as before. In that case you may want to transpile Reach packages directly.

  • We no longer check that our internal styles are included by looking for a defined CSS custom property. You can still include our base styles as before, but this removes the need to define --reach-<pkg> in your own stylesheets to silence dev warnings.

Patch Changes

  • Updated dependencies:
    • @reach/polymorphic@0.18.0
Commits
  • 43f450d bump versions for release
  • 12baab7 chore: Update version for release (pre) (#977)
  • 2fa6593 chore: Update version for release (pre) (#976)
  • 69df3a0 breaking: remove
  • e0f6dab refactor: move polymorphic types into a separate package
  • e968505 chore: Update version for release (pre) (#975)
  • 3335ce3 chore: Update version for release (pre) (#974)
  • 8f75df9 chore: Update version for release (pre) (#973)
  • be9438a refactor: rename source to map to existing output files
  • 81cc3b0 chore: bump versions for release
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by chancestrickland, a new releaser for @​reach/skip-nav since your current version.


Updates babel-plugin-styled-components from 1.13.3 to 2.1.4

Release notes

Sourced from babel-plugin-styled-components's releases.

v2.1.4

Full Changelog: https://github.com/styled-components/babel-plugin-styled-components/compare/v2.1.3...v2.1.4

v2.1.3

What's Changed

New Contributors

Full Changelog: https://github.com/styled-components/babel-plugin-styled-components/compare/v2.1.1...v2.1.3

v2.1.1

What's Changed

New Contributors

Full Changelog: https://github.com/styled-components/babel-plugin-styled-components/compare/v2.0.7...v2.1.1

v2.0.7

What's Changed

New Contributors

Full Changelog: https://github.com/styled-components/babel-plugin-styled-components/compare/v2.0.6...v2.0.7

v2.0.6

Revert change from 2.0.5 that lead to a major build performance regression.

Full Changelog: https://github.com/styled-components/babel-plugin-styled-components/compare/v2.0.5...v2.0.6

v2.0.5

... (truncated)

Commits
  • 4e2eb38 chore: bump version [skip ci]
  • 50b83af chore: upgrade dependencies
  • 2376fc2 chore: migrate to @​babel/plugin-syntax-jsx
  • 384aeec Bump ansi-regex from 5.0.0 to 5.0.1 (#391)
  • 911fc09 chore: update babel deps and jest
  • b8d2954 When testing import paths, only use string literals. (#389)
  • f8e9fb4 chore: v2.1.1
  • dacdac6 Bump json5 from 2.2.0 to 2.2.3 (#382)
  • fcc830b chore: adjust workflow
  • 99bad61 chore: modernize node matrix
  • Additional commits viewable in compare view


Updates gatsby from 2.32.13 to 5.13.7

Release notes

Sourced from gatsby's releases.

v5.13.0

Welcome to gatsby@5.13.0 release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to gatsby@5.12.0 release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to gatsby@5.11.0 release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to gatsby@5.10.0 release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to gatsby@5.9.0 release (April 2023 #1)

... (truncated)

Commits


Updates gatsby-plugin-canonical-urls from 2.10.0 to 5.13.1

Release notes

Sourced from gatsby-plugin-canonical-urls's releases.

v5.13.0

Welcome to gatsby@5.13.0 release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to gatsby@5.12.0 release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to gatsby@5.11.0 release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to gatsby@5.10.0 release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to gatsby@5.9.0 release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-canonical-urls's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-canonical-urls

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-canonical-urls

5.6.0 (2023-02-07)

🧾 Release notes

... (truncated)

Commits


Updates gatsby-plugin-catch-links from 2.10.0 to 5.13.1

Release notes

Sourced from gatsby-plugin-catch-links's releases.

v5.13.0

Welcome to gatsby@5.13.0 release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to gatsby@5.12.0 release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to gatsby@5.11.0 release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to gatsby@5.10.0 release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to gatsby@5.9.0 release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-catch-links's changelog.

5.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-catch-links

5.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-catch-links

5.6.0 (2023-02-07)

🧾 Release notes

... (truncated)

Commits


Updates gatsby-plugin-netlify from 2.11.1 to 5.1.1

Release notes

Sourced from gatsby-plugin-netlify's releases.

v5.1.1

5.1.1 (2023-09-25)

Bug Fixes

  • apply caching headers to all produced assets (#217) (31e9249)
  • deps: update dependency fs-extra to v11 (#256) (aa3184c)
  • add path to transformHeaders (#276)

gatsby-plugin-netlify v5.1.0

Features

Bug Fixes

  • deps: update dependency @​babel/runtime to v7.19.4 (#186) (0f51e02)
  • deps: update dependency @​babel/runtime to v7.20.0 (#192) (214e991)

gatsby-plugin-netlify v5.0.1

Bug Fixes

  • deps: update dependency fs-extra to v10.1.0 (#145) (1e4cdf5)

gatsby-plugin-netlify v5.0.0

⚠ BREAKING CHANGES

  • Remove script preloading (#134)

Features

gatsby-plugin-netlify v4.4.0

Features

gatsby-plugin-netlify v4.3.1

... (truncated)

Changelog

Sourced from gatsby-plugin-netlify's changelog.

5.1.1 (2023-09-25)

Bug Fixes

  • apply caching headers to all produced assets (#217) (31e9249)
  • deps: update dependency fs-extra to v11 (#256) (aa3184c)
  • add path to transformHeaders (#276)

5.1.0 (2022-11-30)

Features

Bug Fixes

  • deps: update dependency @​babel/runtime to v7.19.4 (#186) (0f51e02)
  • deps: update dependency @​babel/runtime to v7.20.0 (#192) (214e991)

5.0.1 (2022-07-25)

Bug Fixes

  • deps: update dependency fs-extra to v10.1.0 (#145) (1e4cdf5)

5.0.0 (2022-05-24)

⚠ BREAKING CHANGES

  • Remove script preloading (#134)

Features

4.4.0 (2022-05-18)

Features

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by netlify-bot, a new releaser for gatsby-plugin-netlify since your current version.


Updates gatsby-plugin-netlify-cache from 1.2.0 to 2.0.0

Commits


Updates gatsby-plugin-react-helmet from 3.10.0 to 6.13.1

Release notes

Sourced from gatsby-plugin-react-helmet's releases.

v5.13.0

Welcome to gatsby@5.13.0 release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to gatsby@5.12.0 release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to gatsby@5.11.0 release (June 2023 #1)

Key highlights of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.10.0

Welcome to gatsby@5.10.0 release (May 2023 #1)

This release focused on bug fixes and perf improvements. Check out notable bugfixes and improvements.

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

Full changelog

v5.9.0

Welcome to gatsby@5.9.0 release (April 2023 #1)

... (truncated)

Changelog

Sourced from gatsby-plugin-react-helmet's changelog.

6.13.1 (2024-01-23)

Note: Version bump only for package gatsby-plugin-react-helmet

6.13.0 (2023-12-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.12.0 (2023-08-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.10.0 (2023-05-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-react-helmet

6.6.0 (2023-02-07)

🧾 Release notes

... (truncated)

Commits


Updates gatsby-plugin-sharp from 2.14.4 to 5.13.1

Release notes

Sourced from gatsby-plugin-sharp's releases.

v5.13.0

Welcome to gatsby@5.13.0 release (December 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.12.0

Welcome to gatsby@5.12.0 release (August 2023 #1)

Key highlight of this release:

Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.

Previous release notes

v5.11.0

Welcome to gatsby@5.11.0 release (June 2023 #1)

Key highlights of this release:

dependabot[bot] commented 1 week ago

Superseded by #545.