Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2025

Bumps the npm-dependencies group with 7 updates in the /landing-pages directory:

Package From To
p5 2.0.5 2.1.1
autoprefixer 10.4.21 10.4.22
babel-loader 9.2.1 10.0.0
cross-env 7.0.3 10.1.0
globals 15.15.0 16.5.0
sass 1.93.2 1.94.0
stylelint-config-standard-scss 13.1.0 16.0.0

Updates p5 from 2.0.5 to 2.1.1

Release notes

Sourced from p5's releases.

v2.1.1

Use this link to load the library: https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js

What's new in p5.js 2.1 🌱

   let bgColor, fg1Color, fg2Color, msg1, msg2;
   function setup() {
     createCanvas(100, 100);
     bgColor = color(0);
     fg1Color = color(100);
     fg2Color = color(220);
 if(bgColor.contrast(fg1Color)){
   msg1 = 'good';
 }else{
   msg1 = 'bad';
 }
if(bgColor.contrast(fg2Color)){
msg2 = 'good';
}else{
msg2 = 'bad';
}
describe('A black canvas with a faint grey word saying "bad" at the top left and a brighter light grey word saying "good" in the middle of the canvas.');

}
function draw(){
background(bgColor);
 textSize(18);
fill(fg1Color);
text(msg1, 10, 30);
fill(fg2Color);
text(msg2, 10, 60);

}

oneColor.contrast(anotherColor) checks the contrast between two colors. This method returns a boolean value to indicate if the two color has enough contrast. true means that the colors has enough contrast to be used as background color and body text color. false means there is not enough contrast.

A second argument can be passed to the method, options , which defines the algorithm to be used. The algorithms currently supported are WCAG 2.1 ('WCAG21') or APCA ('APCA'). The default is WCAG 2.1. If a value of 'all' is passed to the options argument, an object containing more details is returned. The details object will include the calculated contrast value of the colors and different passing criteria.

... (truncated)

Commits

Updates autoprefixer from 10.4.21 to 10.4.22

Release notes

Sourced from autoprefixer's releases.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.
Changelog

Sourced from autoprefixer's changelog.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.
Commits

Updates babel-loader from 9.2.1 to 10.0.0

Release notes

Sourced from babel-loader's releases.

v10.0.0

What's Changed

Breaking Changes

New Features

Bug Fixes

Docs

Dependencies

Internal

New Contributors

Full Changelog: babel/babel-loader@v9.1.3...v10.0.0

Commits

Updates cross-env from 7.0.3 to 10.1.0

Release notes

Sourced from cross-env's releases.

v10.1.0

10.1.0 (2025-09-29)

Features

  • add support for default value syntax (152ae6a)

For example:

"dev:server": "cross-env wrangler dev --port ${PORT:-8787}",

If PORT is already set, use that value, otherwise fallback to 8787.

Learn more about Shell Parameter Expansion

v10.0.0

10.0.0 (2025-07-25)

TL;DR: You should probably not have to change anything if:

  • You're using a modern maintained version of Node.js (v20+ is tested)
  • You're only using the CLI (most of you are as that's the intended purpose)

In this release (which should have been v8 except I had some issues with automated releases 🙈), I've updated all the things and modernized the package. This happened in #261

Was this needed? Not really, but I just thought it'd be fun to modernize this package.

Here's the highlights of what was done.

  • Replace Jest with Vitest for testing
  • Convert all source files from .js to .ts with proper TypeScript types
  • Use zshy for ESM-only builds (removes CJS support)
  • Adopt @​epic-web/config for TypeScript, ESLint, and Prettier
  • Update to Node.js >=20 requirement
  • Remove kcd-scripts dependency
  • Add comprehensive e2e tests with GitHub Actions matrix testing
  • Update GitHub workflow with caching and cross-platform testing
  • Modernize documentation and remove outdated sections
  • Update all dependencies to latest versions
  • Add proper TypeScript declarations and exports

The tool maintains its original functionality while being completely modernized with the latest tooling and best practices

BREAKING CHANGES

  • This is a major rewrite that changes the module format from CommonJS to ESM-only. The package now requires Node.js >=20 and only exports ESM modules (not relevant in most cases).
Commits
  • 152ae6a feat: add support ofr default value syntax
  • bd70d1a chore: upgrade zshy
  • 8e0b190 chore(ci): get coverage
  • 8635e80 fix(release): manually release a major version
  • 3a58f22 chore: fix npmrc registry
  • b70bfff chore(ci): add names to steps and workflows
  • cc5759d fix(release): manually release a major version
  • 080a859 chore: remove publish script
  • 31e5bc7 chore(ci): restore built files
  • 81e9c34 chore(ci): add back semantic-release
  • Additional commits viewable in compare view

Updates globals from 15.15.0 to 16.5.0

Release notes

Sourced from globals's releases.

v16.5.0

  • Update globals (2025-11-01) (#316) 6d441ca
  • Add Vue, Svelte, and Astro globals (#314) ea31521

sindresorhus/globals@v16.4.0...v16.5.0

v16.4.0

  • Update globals (#309) 8b8a2d6

sindresorhus/globals@v16.3.0...v16.4.0

v16.3.0

  • Update globals (#304) 8c029d9

sindresorhus/globals@v16.2.0...v16.3.0

v16.2.0

  • Add new greasemonkey globals (#299) e4f6e8c

sindresorhus/globals@v16.1.0...v16.2.0

v16.1.0

  • Update globals (#293) 5c58875

sindresorhus/globals@v16.0.0...v16.1.0

v16.0.0

Breaking

  • The serviceworker globals are now generated from browsers (#281) 039ed51
    • It's a breaking change as a few globals have been removed.

sindresorhus/globals@v15.15.0...v16.0.0

Commits

Updates sass from 1.93.2 to 1.94.0

Release notes

Sourced from sass's releases.

Dart Sass 1.94.0

To install Sass 1.94.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking compatibility fix: @function rules whose names begin with -- are now parsed as unknown at-rules to support the plain CSS @function rule. Within this rule, the result property is parsed as raw CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin with -- are now errors. These are not yet parsed as unknown at-rules because no browser currently supports CSS mixins.

See the full changelog for changes in earlier releases.

Dart Sass 1.93.3

To install Sass 1.93.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a performance regression that was introduced in 1.92.0.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.94.0

  • Potentially breaking compatibility fix: @function rules whose names begin with -- are now parsed as unknown at-rules to support the plain CSS @function rule. Within this rule, the result property is parsed as raw CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin with -- are now errors. These are not yet parsed as unknown at-rules because no browser currently supports CSS mixins.

1.93.3

  • Fix a performance regression that was introduced in 1.92.0.
Commits
  • bfccce8 Parse selectors in the sass-parser package (#2670)
  • 795557c Add support for plain-CSS @function rules (#2655)
  • 2c9d3c8 Track offsets instead of locations in InterpolationMap (#2674)
  • d8d7f9c Add a separate StylesheetParser.interpolatedStringToken() method (#2675)
  • 9d68793 Make sure all source spans use interpolation maps (#2673)
  • 20a59ee Update release workflows to support npm trusted publshing (#2669)
  • 10442ab Bump actions/download-artifact from 5 to 6 (#2664)
  • 9d40aba Bump actions/upload-artifact from 4 to 5 (#2665)
  • 4e5bd25 Stop holding onto stack traces for every CSS declaration (#2666)
  • 65b77ee Bump analyzer, protobuf, protoc_plugin and dartdoc (#2660)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for sass since your current version.


Updates stylelint-config-standard-scss from 13.1.0 to 16.0.0

Release notes

Sourced from stylelint-config-standard-scss's releases.

16.0.0

15.0.1

  • Fixed: change minimum supported Node.js version to 20.

15.0.0

  • Changed: updated to [email protected].
  • Changed: updated to [email protected]
  • Removed: stylelint less than 16.18.0 from peer dependencies.
  • Removed: Node.js less than 22 support.
  • Fixed: length-zero-no-unit allow mixin/function argument default values with unit (#221).

14.0.0

  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.11.0 from peer dependencies.
Changelog

Sourced from stylelint-config-standard-scss's changelog.

16.0.0

15.0.1

  • Fixed: change minimum supported Node.js version to 20.

15.0.0

  • Changed: updated to [email protected].
  • Changed: updated to [email protected]
  • Removed: stylelint less than 16.18.0 from peer dependencies.
  • Removed: Node.js less than 22 support.
  • Fixed: length-zero-no-unit allow mixin/function argument default values with unit (#221).

14.0.0

  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.11.0 from peer dependencies.
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-dependencies group with 7 updates in the /landing-pages directory:

| Package | From | To |
| --- | --- | --- |
| [p5](https://github.com/processing/p5.js) | `2.0.5` | `2.1.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.22` |
| [babel-loader](https://github.com/babel/babel-loader) | `9.2.1` | `10.0.0` |
| [cross-env](https://github.com/kentcdodds/cross-env) | `7.0.3` | `10.1.0` |
| [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `16.5.0` |
| [sass](https://github.com/sass/dart-sass) | `1.93.2` | `1.94.0` |
| [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss) | `13.1.0` | `16.0.0` |



Updates `p5` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/processing/p5.js/releases)
- [Changelog](https://github.com/processing/p5.js/blob/main/contributor_docs/release_process.md)
- [Commits](processing/p5.js@v2.0.5...v2.1.1)

Updates `autoprefixer` from 10.4.21 to 10.4.22
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.21...10.4.22)

Updates `babel-loader` from 9.2.1 to 10.0.0
- [Release notes](https://github.com/babel/babel-loader/releases)
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
- [Commits](babel/babel-loader@v9.2.1...v10.0.0)

Updates `cross-env` from 7.0.3 to 10.1.0
- [Release notes](https://github.com/kentcdodds/cross-env/releases)
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md)
- [Commits](kentcdodds/cross-env@v7.0.3...v10.1.0)

Updates `globals` from 15.15.0 to 16.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.15.0...v16.5.0)

Updates `sass` from 1.93.2 to 1.94.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.93.2...1.94.0)

Updates `stylelint-config-standard-scss` from 13.1.0 to 16.0.0
- [Release notes](https://github.com/stylelint-scss/stylelint-config-standard-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-standard-scss@v13.1.0...v16.0.0)

---
updated-dependencies:
- dependency-name: p5
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: babel-loader
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: cross-env
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: globals
  dependency-version: 16.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: sass
  dependency-version: 1.94.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: stylelint-config-standard-scss
  dependency-version: 16.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants