s-thom / ourflags.lgbt

🏳️‍🌈 A reference website for the flags used by the rainbow community, with some extra sprinkles on top.
https://ourflags.lgbt
Mozilla Public License 2.0
1 stars 1 forks source link

Bump the all group with 25 updates #36

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 10 months ago

Bumps the all group with 25 updates:

Package From To
@fontsource-variable/inter 5.0.8 5.0.15
@fontsource/inter 5.0.8 5.0.15
@next/font 13.5.3 14.0.1
@resvg/resvg-js 2.4.1 2.6.0
@types/node 20.8.0 20.8.10
@types/react 18.2.23 18.2.33
@types/react-dom 18.2.8 18.2.14
@vercel/og 0.5.17 0.5.20
eslint 8.50.0 8.52.0
eslint-config-next 13.5.3 14.0.1
lucide-react 0.279.0 0.291.0
next 13.5.3 14.0.1
unified 11.0.3 11.0.4
zod 3.22.2 3.22.4
zod-validation-error 1.5.0 2.1.0
@testing-library/jest-dom 6.1.3 6.1.4
@types/common-tags 1.8.2 1.8.3
@types/culori 2.0.1 2.0.3
@types/jest 29.5.5 29.5.7
@typescript-eslint/eslint-plugin 6.7.3 6.9.1
@typescript-eslint/parser 6.7.3 6.9.1
eslint-plugin-prettier 5.0.0 5.0.1
prettier-plugin-tailwindcss 0.5.4 0.5.6
tailwindcss 3.3.3 3.3.5
tsx 3.13.0 3.14.0

Updates @fontsource-variable/inter from 5.0.8 to 5.0.15

Commits


Updates @fontsource/inter from 5.0.8 to 5.0.15

Commits


Updates @next/font from 13.5.3 to 14.0.1

Release notes

Sourced from @​next/font's releases.

v14.0.1

Core Changes

  • Add Next.js 14 codemods to CLI output.: #57552
  • OpenTelemetry: propagate a configured context(s) to root requests: #57084
  • debug: Add tags to next build traces to track build configuration in the .next/trace file: #56965
  • [Traces] Await the flush of the trace write stream to make sure trace file is written: #57641
  • Add node-pty to externals list: #57640
  • fix: move logging config validation out of experimental: #57530
  • Update font data: #57728
  • Support viewport export via TS Plugin: #57554
  • Fix: Build compilation warning when using middleware: #57685
  • chore: Update flight-client-entry-plugin.ts typo: #57734
  • Improve error for missing default export in dynamic metadata routes: #57711
  • fix gsp tracing issue: #57766
  • fix(turbopack): don't match empty route groups: #57647
  • Update React from 8c8ee9ee6 to 0c6348758 and types: #57772

Documentation Changes

  • Add missing dot in codemod command: #57536
  • docs(fix): example text unescaped entities: #57255
  • doc: Clarify built-in support for sass after installation: #57279
  • Update docs with a Good to know box about using redirect in client components: #56966
  • docs: fix 02-dynamic-routes.mdx: #57029
  • Fix incorrect link in GTM docs: #57547
  • Fix typos: #57592
  • Add apostrophe 07-error-handling.mdx: #57626
  • Fix: codemods.mdx Incorrect heading structure of next-og-import, meta…: #57605
  • Typo fix, version "13" to "14": #57723
  • Fix Google Tag Manager URL in Third Party Libraries documentation: #57731

Example Changes

  • Fix: Call cookies function from route to flag as dynamic: #57494
  • (Examples) Add with-youtube-embed example: #57367
  • (Examples) Add with-google-maps-embed example: #57365
  • update @​types/react version in examples: #57259
  • docs: fix broken link to demo: #57229
  • (example update) Update example with-Clerk: #57050
  • active-class-name example style js has not taken effect: #56136
  • add inngest next.js example: #56049
  • fix inngest example for 3.x sdk: #57712

Misc Changes

  • update manifest: #57523
  • update next/third-parties to use Next 14 or 13 as a peer dependency, instead of just 13: #57515
  • Modify tailwindcss related dependency of create-next-app: #57262
  • Remove extra CI step and lock Node.js version: #57769

... (truncated)

Commits


Updates @resvg/resvg-js from 2.4.1 to 2.6.0

Release notes

Sourced from @​resvg/resvg-js's releases.

v2.6.0

What's Changed

🚀 Up to 115x faster for very large SVG files

Now resvg has been upgraded from v0.29.0 to v0.34.0, bringing with it a host of new SVG features and performance improvements.

  • Support SVG2 mask-type property.

  • Allows quadratic Bézier curves: text might render slightly differently (better?). This is because TrueType fonts contain only quadratic curves and we were converting them to cubic before.

  • Clipping and masking is up to 20% faster.

  • Reduces the peak memory usage for SVGs with large paths (in terms of the number of segments).

  • A new rendering algorithm. When rendering isolated groups, aka layers, we have to know the layer bounding box beforehand, which is ridiculously hard in SVG. Previously, resvg would simply use the canvas size for all the layers. This means that to render a 10x10px layer on a 1000x1000px canvas, we would have to allocate and then blend a 1000x1000px layer, which is just a waste of CPU cycles. The new rendering algorithm is able to calculate layer bounding boxes, which dramatically improves performance when rendering a lot of tiny layers on a large canvas. Moreover, it makes performance more linear with a canvas size increase. The paris-30k.svg sample from google/forma is rendered 115 times faster on M1 Pro now. From ~33760ms down to ~290ms. 5269x3593px canvas. If we restrict the canvas to 1000x1000px, which would contain only the actual paris-30k.svg content, then we're 13 times faster. From ~3252ms down to ~253ms.

Added

Full Changelog: https://github.com/yisibl/resvg-js/compare/v2.5.0...v2.6.0

v2.5.0

What's Changed

Added

Now we can finally loading custom fonts in Wasm, including the WOFF2 format (see playground), thanks to the high-performance woff2-rs.

In addition, we implemented smarter default font family fallback. the defaultFontFamily option can now be omitted. We'll read the font-family from the incoming fonts and set it to the default.

<script src="https://unpkg.com/@resvg/resvg-wasm"></script>
<script>
  (async function () {
    await resvg.initWasm(fetch('https://unpkg.com/@resvg/resvg-wasm/index_bg.wasm'))
const font = await fetch('./fonts/Pacifico-Regular.woff2')

</tr></table>

... (truncated)

Changelog

Sourced from @​resvg/resvg-js's changelog.

[2.6.0] - 2023-10-20

🚀 Up to 115x faster for very large SVG files

Now resvg has been upgraded from v0.29.0 to v0.34.0, bringing with it a host of new SVG features and performance improvements.

  • Support SVG2 mask-type property.

  • Allows quadratic Bézier curves: text might render slightly differently (better?). This is because TrueType fonts contain only quadratic curves and we were converting them to cubic before.

  • Clipping and masking is up to 20% faster.

  • Reduces the peak memory usages for SVGs with large paths (in terms of the number of segments).

  • A new rendering algorithm. When rendering isolated groups, aka layers, we have to know the layer bounding box beforehand, which is ridiculously hard in SVG. Previously, resvg would simply use the canvas size for all the layers. Meaning that to render a 10x10px layer on a 1000x1000px canvas, we would have to allocate and then blend a 1000x1000px layer, which is just a waste of CPU cycles. The new rendering algorithm is able to calculate layer bounding boxes, which dramatically improves performance when rendering a lot of tiny layers on a large canvas. Moreover, it makes performance more linear with a canvas size increase. The paris-30k.svg sample from google/forma is rendered 115 times faster on M1 Pro now. From ~33760ms down to ~290ms. 5269x3593px canvas. If we restrict the canvas to 1000x1000px, which would contain only the actual paris-30k.svg content, then we're 13 times faster. From ~3252ms down to ~253ms.

Added

[2.5.0] - 2023-10-16

Added

Now we can finally loading custom fonts in Wasm, including the WOFF2 format (see playground), thanks to the high-performance woff2-rs.

In addition, we implemented smarter default font family fallback. the defaultFontFamily option can now be omitted. We'll read the font-family from the incoming fonts and set it to the default.

<script src="https://unpkg.com/@resvg/resvg-wasm"></script>
<script>
  ;(async function () {
    await resvg.initWasm(fetch('https://unpkg.com/@resvg/resvg-wasm/index_bg.wasm'))
const font = await fetch('./fonts/Pacifico-Regular.woff2')
if (!font.ok) return

const fontData = await font.arrayBuffer()
const buffer = new Uint8Array(fontData)

</tr></table>

... (truncated)

Commits
  • cfca7ad 2.6.0
  • 065b7f4 chore(deps): update actions/checkout action to v4
  • ce9b094 chore(deps): update yarn to v3.6.4
  • 6d3968a doc: updage Readme.md
  • 0337aaa test: fix test and update the example results
  • c041dd5 feat: upgrade to a newer resvg fork
  • de8b059 test: fix fontBuffers test
  • 88595e1 feat: upgrade to usvg/resvg 0.34
  • b07a26f 2.5.0
  • 4e68970 fix(deps): update rust crate svgtypes to 0.12.0
  • Additional commits viewable in compare view


Updates @types/node from 20.8.0 to 20.8.10

Commits


Updates @types/react from 18.2.23 to 18.2.33

Commits


Updates @types/react-dom from 18.2.8 to 18.2.14

Commits


Updates @vercel/og from 0.5.17 to 0.5.20

Updates eslint from 8.50.0 to 8.52.0

Release notes

Sourced from eslint's releases.

v8.52.0

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)

v8.51.0

Features

  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)

Bug Fixes

  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)

Documentation

  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 1866da5 docs: Update README (GitHub Actions Bot)

Chores

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.52.0 - October 20, 2023

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

v8.51.0 - October 6, 2023

  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624) (Milos Djermanovic)
  • f8c7403 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)
  • 2665552 test: fix flat config linter tests to use Linter in flat config mode (#17616) (Milos Djermanovic)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 1866da5 docs: Update README (GitHub Actions Bot)
  • 7b77bcc chore: Refactor CodePathState (#17510) (Nicholas C. Zakas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)
  • bc77c9a chore: Document and refactor ForkContext (#17566) (Nicholas C. Zakas)
  • 24e1f14 chore: Refactor and document CodePath (#17558) (Nicholas C. Zakas)
Commits
  • 331cf62 8.52.0
  • 7dc28ed Build: changelog update for 8.52.0
  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671)
  • d63d4fe chore: package.json update for @​eslint/js release
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666)
  • f30cefe test: fix FlatESLint tests for caching (#17658)
  • ef650cb test: update tests for no-promise-executor-return (#17661)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649)
  • Additional commits viewable in compare view


Updates eslint-config-next from 13.5.3 to 14.0.1

Release notes

Sourced from eslint-config-next's releases.

v14.0.1

Core Changes

  • Add Next.js 14 codemods to CLI output.: #57552
  • OpenTelemetry: propagate a configured context(s) to root requests: #57084
  • debug: Add tags to next build traces to track build configuration in the .next/trace file: #56965
  • [Traces] Await the flush of the trace write stream to make sure trace file is written: #57641
  • Add node-pty to externals list: #57640
  • fix: move logging config validation out of experimental: #57530
  • Update font data: #57728
  • Support viewport export via TS Plugin: #57554
  • Fix: Build compilation warning when using middleware: #57685
  • chore: Update flight-client-entry-plugin.ts typo: #57734
  • Improve error for missing default export in dynamic metadata routes: #57711
  • fix gsp tracing issue: #57766
  • fix(turbopack): don't match empty route groups: #57647
  • Update React from 8c8ee9ee6 to 0c6348758 and types: #57772

Documentation Changes

  • Add missing dot in codemod command: #57536
  • docs(fix): example text unescaped entities: #57255
  • doc: Clarify built-in support for sass after installation: #57279
  • Update docs with a Good to know box about using redirect in client components: #56966
  • docs: fix 02-dynamic-routes.mdx: #57029
  • Fix incorrect link in GTM docs: #57547
  • Fix typos: #57592
  • Add apostrophe 07-error-handling.mdx: #57626
  • Fix: codemods.mdx Incorrect heading structure of next-og-import, meta…: #57605
  • Typo fix, version "13" to "14": #57723
  • Fix Google Tag Manager URL in Third Party Libraries documentation: #57731

Example Changes

  • Fix: Call cookies function from route to flag as dynamic: #57494
  • (Examples) Add with-youtube-embed example: #57367
  • (Examples) Add with-google-maps-embed example: #57365
  • update @​types/react version in examples: #57259
  • docs: fix broken link to demo: #57229
  • (example update) Update example with-Clerk: #57050
  • active-class-name example style js has not taken effect: #56136
  • add inngest next.js example: #56049
  • fix inngest example for 3.x sdk: #57712

Misc Changes

  • update manifest: #57523
  • update next/third-parties to use Next 14 or 13 as a peer dependency, instead of just 13: #57515
  • Modify tailwindcss related dependency of create-next-app: #57262
  • Remove extra CI step and lock Node.js version: #57769

... (truncated)

Commits


Updates lucide-react from 0.279.0 to 0.291.0

Release notes

Sourced from lucide-react's releases.

New icons 0.291.0

Modified Icons 🔨

New icons 0.290.0

New icons 🎨

Modified Icons 🔨

New icons 0.289.0

New icons 🎨

Optimized Icons 🔨

... (truncated)

Commits


Updates next from 13.5.3 to 14.0.1

Release notes

Sourced from next's releases.

v14.0.1

Core Changes

  • Add Next.js 14 codemods to CLI output.: #57552
  • OpenTelemetry: propagate a configured context(s) to root requests: #57084
  • debug: Add tags to next build traces to track build configuration in the .next/trace file: #56965
  • [Traces] Await the flush of the trace write stream to make sure trace file is written: #57641
  • Add node-pty to externals list: #57640
  • fix: move logging config validation out of experimental: #57530
  • Update font data: #57728
  • Support viewport export via TS Plugin: #57554
  • Fix: Build compilation warning when using middleware: #57685
  • chore: Update flight-client-entry-plugin.ts typo: #57734
  • Improve error for missing default export in dynamic metadata routes: #57711
  • fix gsp tracing issue: #57766
  • fix(turbopack): don't match empty route groups: #57647
  • Update React from 8c8ee9ee6 to 0c6348758 and types: #57772

Documentation Changes

  • Add missing dot in codemod command: #57536
  • docs(fix): example text unescaped entities: #57255
  • doc: Clarify built-in support for sass after installation: #57279
  • Update docs with a Good to know box about using redirect in client components: #56966
  • docs: fix 02-dynamic-routes.mdx: #57029
  • Fix incorrect link in GTM docs: #57547
  • Fix typos: #57592
  • Add apostrophe 07-error-handling.mdx: #57626
  • Fix: codemods.mdx Incorrect heading structure of next-og-import, meta…: #57605
  • Typo fix, version "13" to "14": #57723
  • Fix Google Tag Manager URL in Third Party Libraries documentation: #57731

Example Changes

  • Fix: Call cookies function from route to flag as dynamic: #57494
  • (Examples) Add with-youtube-embed example: #57367
  • (Examples) Add with-google-maps-embed example: #57365
  • update @​types/react version in examples: #57259
  • docs: fix broken link to demo: #57229
  • (example update) Update example with-Clerk: #57050
  • active-class-name example style js has not taken effect: #56136
  • add inngest next.js example: #56049
  • fix inngest example for 3.x sdk: #57712

Misc Changes

  • update manifest: #57523
  • update next/third-parties to use Next 14 or 13 as a peer dependency, instead of just 13: #57515
  • Modify tailwindcss related dependency of create-next-app: #57262
  • Remove extra CI step and lock Node.js version: #57769

... (truncated)

Commits
socket-security[bot] commented 10 months ago

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@types/common-tags 1.8.3 None +0 10.8 kB types
zod-validation-error 2.1.0 None +1 658 kB jmike
next 13.5.3...14.0.1 eval +10/-12 1.13 GB vercel-release-bot
@vercel/og 0.5.17...0.5.20 None +3/-2 13.9 MB vercel-release-bot
@types/culori 2.0.1...2.0.3 None +0/-0 86.6 kB types
@fontsource-variable/inter 5.0.8...5.0.15 None +0/-0 864 kB lotusdevshack
eslint-config-next 13.5.3...14.0.1 None +10/-11 1.65 MB vercel-release-bot
@fontsource/inter 5.0.8...5.0.15 None +0/-0 1.64 MB lotusdevshack
@resvg/resvg-js 2.4.1...2.6.0 None +12/-12 42.2 MB yisi
@types/react-dom 18.2.8...18.2.14 None +1/-1 396 kB types
@types/jest 29.5.5...29.5.7 None +2/-1 4.07 MB types
tsx 3.13.0...3.14.0 None +0/-0 389 kB hirokiosame
@types/react 18.2.23...18.2.33 None +0/-0 363 kB types
tailwindcss 3.3.3...3.3.5 filesystem, environment +1/-1 5.66 MB adamwathan
@typescript-eslint/eslint-plugin 6.7.3...6.9.1 None +13/-14 4.46 MB jameshenry
@typescript-eslint/parser 6.7.3...6.9.1 None +8/-9 1.57 MB jameshenry
@types/node 20.8.0...20.8.10 None +1/-0 4 MB types
unified 11.0.3...11.0.4 None +0/-0 147 kB wooorm
eslint-plugin-prettier 5.0.0...5.0.1 None +3/-4 189 kB jounqin
@testing-library/jest-dom 6.1.3...6.1.4 None +3/-2 4.31 MB testing-library-bot
prettier-plugin-tailwindcss 0.5.4...0.5.6 None +0/-0 2.49 MB thecrypticace
zod 3.22.2...3.22.4 None +0/-0 628 kB colinmcd94
lucide-react 0.279.0...0.291.0 None +0/-0 20.5 MB ericfennis

🚮 Removed packages: @next/font@13.5.3, eslint@8.50.0