Bump the production-dependencies group across 2 directories with 51 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 1
(about 2 months ago)
(about 2 months ago)
dependencies javascript
Bumps the production-dependencies group with 50 updates in the / directory:
Bumps the production-dependencies group with 4 updates in the /src/api directory: argon2, pino, stripe and uuid.
Updates @acm-uiuc/js-shared from 3.1.0 to 3.2.1
Release notes
Sourced from @acm-uiuc/js-shared's releases.
v3.2.1
Full Changelog: https://github.com/acm-uiuc/js-shared/compare/v3.2.0...v3.2.1
v3.2.0
Add org colors
Full Changelog: https://github.com/acm-uiuc/js-shared/compare/v3.1.0...v3.2.0
Commits
ca65621Update NPM in the publish script088c462Use Github OIDC token to publish package58942b5Add org colors- See full diff in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @acm-uiuc/js-shared since your current version.
Updates esbuild from 0.25.8 to 0.25.11
Release notes
Sourced from esbuild's releases.
v0.25.11
Add support for
with { type: 'bytes' }imports (#4292)The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing
binaryloader. Here's an example:import data from './image.png' with { type: 'bytes' } const view = new DataView(data.buffer, 0, 24) const width = view.getInt32(16) const height = view.getInt32(20) console.log('size:', width + '\xD7' + height)Lower CSS media query range syntax (#3748, #4293)
With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using
min-/max-prefixes for older browsers. For example, the following CSS:@media (640px <= width <= 960px) { main { display: flex; } }will be transformed like this with a target such as
--target=chrome100(or more specifically with--supported:media-range=falseif desired):@media (min-width: 640px) and (max-width: 960px) { main { display: flex; } }v0.25.10
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefinedin this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):function identity(x) { return x } identity({ y: identity(123) })Fix
@supportsnested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholderfor correctness. The CSS nesting specification says the following:The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.25.11
Add support for
with { type: 'bytes' }imports (#4292)The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing
binaryloader. Here's an example:import data from './image.png' with { type: 'bytes' } const view = new DataView(data.buffer, 0, 24) const width = view.getInt32(16) const height = view.getInt32(20) console.log('size:', width + '\xD7' + height)Lower CSS media query range syntax (#3748, #4293)
With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using
min-/max-prefixes for older browsers. For example, the following CSS:@media (640px <= width <= 960px) { main { display: flex; } }will be transformed like this with a target such as
--target=chrome100(or more specifically with--supported:media-range=falseif desired):@media (min-width: 640px) and (max-width: 960px) { main { display: flex; } }0.25.10
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefinedin this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):function identity(x) { return x } identity({ y: identity(123) })Fix
@supportsnested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholderfor correctness. The CSS nesting specification says the following:
... (truncated)
Commits
6b7c4f2publish 0.25.11 to npm7295c1acss: also parse media queries in@importrulese3991ddcss: some adjustments to@importparsing8bb82cafix #3748, fix #4293: lower css media range syntaxd8c3f87css: parse and print media queries6e75bc7runmake update-compat-table8f506d5fix #4292: supportwith { type: bytes }d6b668fpublish 0.25.10 to npm5088c19refactor: use strings.Builder (#4290)755da31runmake update-compat-table- Additional commits viewable in compare view
Updates @aws-sdk/client-cloudfront-keyvaluestore from 3.896.0 to 3.914.0
Release notes
Sourced from @aws-sdk/client-cloudfront-keyvaluestore's releases.
v3.914.0
3.914.0(2025-10-21)
Chores
- codegen: smithy version update (#7448) (387386bd)
- deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
- update dev dependencies (#7441) (45e73050)
- region-config-resolver: use region functions from smithy (#7440) (f269213e)
New Features
- clients: update client endpoints as of 2025-10-21 (1164402e)
- client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
- client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
- client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
- nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
- cloudfront-signer: encode uri components in base url (#7437) (8458bab0)
For list of updated packages, view updated-packages.md in assets-3.914.0.zip
v3.913.0
3.913.0(2025-10-17)
Chores
- build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
- deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
- client-ec2: Documentation updates for Amazon EC2. (2ce38470)
- client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
- clients: update client endpoints as of 2025-10-17 (ea0970e0)
- client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
- client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
- client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
- client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
- client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
- client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)
... (truncated)
Changelog
Sourced from @aws-sdk/client-cloudfront-keyvaluestore's changelog.
3.914.0 (2025-10-21)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore3.913.0 (2025-10-17)
Features
- client-cloudfront-keyvaluestore: Update endpoint ruleset parameters casing (5fcd5f7)
3.911.0 (2025-10-15)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore3.910.0 (2025-10-14)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore3.908.0 (2025-10-10)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore3.907.0 (2025-10-09)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
... (truncated)
Commits
25418b3Publish v3.914.0387386bchore(codegen): smithy version update (#7448)c02462cPublish v3.913.05fcd5f7feat(client-cloudfront-keyvaluestore): Update endpoint ruleset parameters casing7cf6665Publish v3.911.0e8539aePublish v3.910.0c8809d4chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...c5dbfc6Publish v3.908.0511167dchore(codegen): sync for bowser removal, lstat fixes (#7418)20bfe7dPublish v3.907.0- Additional commits viewable in compare view
Updates @aws-sdk/client-dynamodb from 3.896.0 to 3.914.0
Release notes
Sourced from @aws-sdk/client-dynamodb's releases.
v3.914.0
3.914.0(2025-10-21)
Chores
- codegen: smithy version update (#7448) (387386bd)
- deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
- update dev dependencies (#7441) (45e73050)
- region-config-resolver: use region functions from smithy (#7440) (f269213e)
New Features
- clients: update client endpoints as of 2025-10-21 (1164402e)
- client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
- client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
- client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
- nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
- cloudfront-signer: encode uri components in base url (#7437) (8458bab0)
For list of updated packages, view updated-packages.md in assets-3.914.0.zip
v3.913.0
3.913.0(2025-10-17)
Chores
- build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
- deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
- client-ec2: Documentation updates for Amazon EC2. (2ce38470)
- client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
- clients: update client endpoints as of 2025-10-17 (ea0970e0)
- client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
- client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
- client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
- client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
- client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
- client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)
... (truncated)
Changelog
Sourced from @aws-sdk/client-dynamodb's changelog.
3.914.0 (2025-10-21)
Features
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed85)
3.913.0 (2025-10-17)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.911.0 (2025-10-15)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.910.0 (2025-10-14)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.908.0 (2025-10-10)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.907.0 (2025-10-09)
Note: Version bump only for package
@aws-sdk/client-dynamodb
... (truncated)
Commits
25418b3Publish v3.914.0e23ed85feat(client-dynamodb): Add AccountID based endpoint metric to endpoint rules.387386bchore(codegen): smithy version update (#7448)c02462cPublish v3.913.07cf6665Publish v3.911.0e8539aePublish v3.910.0c8809d4chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...c5dbfc6Publish v3.908.0511167dchore(codegen): sync for bowser removal, lstat fixes (#7418)20bfe7dPublish v3.907.0- Additional commits viewable in compare view
Updates @aws-sdk/client-lambda from 3.896.0 to 3.914.0
Release notes
Sourced from @aws-sdk/client-lambda's releases.
v3.914.0
3.914.0(2025-10-21)
Chores
- codegen: smithy version update (#7448) (387386bd)
- deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
- update dev dependencies (#7441) (45e73050)
- region-config-resolver: use region functions from smithy (#7440) (f269213e)
New Features
- clients: update client endpoints as of 2025-10-21 (1164402e)
- client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
- client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
- client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
- nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
- cloudfront-signer: encode uri components in base url (#7437) (8458bab0)
For list of updated packages, view updated-packages.md in assets-3.914.0.zip
v3.913.0
3.913.0(2025-10-17)
Chores
- build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
- deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
- client-ec2: Documentation updates for Amazon EC2. (2ce38470)
- client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
- clients: update client endpoints as of 2025-10-17 (ea0970e0)
- client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
- client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
- client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
- client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
- client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
- client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)
... (truncated)
Changelog
Sourced from @aws-sdk/client-lambda's changelog.
3.914.0 (2025-10-21)
Note: Version bump only for package
@aws-sdk/client-lambda3.913.0 (2025-10-17)
Note: Version bump only for package
@aws-sdk/client-lambda3.911.0 (2025-10-15)
Note: Version bump only for package
@aws-sdk/client-lambda3.910.0 (2025-10-14)
Note: Version bump only for package
@aws-sdk/client-lambda3.908.0 (2025-10-10)
Features
- client-lambda: Add InvokedViaFunctionUrl context key to limit invocations to only FURL invokes. (cf1e3be)
3.907.0 (2025-10-09)
Note: Version bump only for package
@aws-sdk/client-lambda
... (truncated)
Commits
25418b3Publish v3.914.0387386bchore(codegen): smithy version update (#7448)c02462cPublish v3.913.07cf6665Publish v3.911.0e8539aePublish v3.910.0c8809d4chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...c5dbfc6Publish v3.908.0cf1e3befeat(client-lambda): Add InvokedViaFunctionUrl context key to limit invocatio...511167dchore(codegen): sync for bowser removal, lstat fixes (#7418)20bfe7dPublish v3.907.0- Additional commits viewable in compare view
Updates @aws-sdk/client-secrets-manager from 3.896.0 to 3.914.0
Release notes
Sourced from @aws-sdk/client-secrets-manager's releases.
v3.914.0
3.914.0(2025-10-21)
Chores
- codegen: smithy version update (#7448) (387386bd)
- deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
- update dev dependencies (#7441) (45e73050)
- region-config-resolver: use region functions from smithy (#7440) (f269213e)
New Features
- clients: update client endpoints as of 2025-10-21 (1164402e)
- client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
- client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
- client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
- nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
- cloudfront-signer: encode uri components in base url (#7437) (8458bab0)
For list of updated packages, view updated-packages.md in assets-3.914.0.zip
v3.913.0
3.913.0(2025-10-17)
Chores
- build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
- deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
- client-ec2: Documentation updates for Amazon EC2. (2ce38470)
- client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
- clients: update client endpoints as of 2025-10-17 (ea0970e0)
- client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
- client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
- client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
- client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
- client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
- client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)
... (truncated)
Changelog
Sourced from @aws-sdk/client-secrets-manager's changelog.
3.914.0 (2025-10-21)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.913.0 (2025-10-17)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.911.0 (2025-10-15)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.910.0 (2025-10-14)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.908.0 (2025-10-10)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.907.0 (2025-10-09)
Note: Version bump only for package
@aws-sdk/client-secrets-manager3.906.0 (2025-10-08)
... (truncated)
Commits
25418b3Publish v3.914.0387386bchore(codegen): smithy version update (#7448)c02462cPublish v3.913.07cf6665Publish v3.911.0e8539aePublish v3.910.0c8809d4chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...c5dbfc6Publish v3.908.0511167dchore(codegen): sync for bowser removal, lstat fixes (#7418)20bfe7dPublish v3.907.08f16327Publish v3.906.0- Additional commits viewable in compare view
Updates @aws-sdk/client-ses from 3.896.0 to 3.914.0
Release notes
Sourced from @aws-sdk/client-ses's releases.
v3.914.0
3.914.0(2025-10-21)
Chores
- codegen: smithy version update (#7448) (387386bd)
- deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
- update dev dependencies (#7441) (45e73050)
- region-config-resolver: use region functions from smithy (#7440) (f269213e)
New Features
- clients: update client endpoints as of 2025-10-21 (1164402e)
- client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
- client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
- client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
- client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
- nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
- cloudfront-signer: encode uri components in base url (#7437) (8458bab0)
For list of updated packages, view updated-packages.md in assets-3.914.0.zip
v3.913.0
3.913.0(2025-10-17)
Chores
- build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
- deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
- client-ec2: Documentation updates for Amazon EC2. (2ce38470)
- client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
- clients: update client endpoints as of 2025-10-17 (ea0970e0)
- client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
- client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
- client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
- client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
- client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
- client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)
... (truncated)
Changelog
Sourced from @aws-sdk/client-ses's changelog.
3.914.0 (2025-10-21)
Note: Version bump only for package
@aws-sdk/client-ses3.913.0 (2025-10-17)
Note: Version bump only for package
@aws-sdk/client-ses3.911.0 (2025-10-15)
Note: Version bump only for package
@aws-sdk/client-ses3.910.0 (2025-10-14)
Note: Version bump only for package
@aws-sdk/client-ses3.908.0 (2025-10-10)
Note: Version bump only for package
@aws-sdk/client-ses3.907.0 (2025-10-09)
Note: Version bump only for package
@aws-sdk/client-ses3.906.0 (2025-10-08)
... (truncated)
Commits
25418b3Publish v3.914.0387386bchore(codegen): smithy version update (#7448)c02462cPublish v3.913.07cf6665Publish v3.911.0e8539aePublish v3.910.0c8809d4chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...c5dbfc6Publish v3.908.0511167dchore(codegen): sync for bowser removal, lstat fixes (#7418)20bfe7dPublish v3.907.08f16327Publish v3.906.0- Additional commits viewable in compare view
Updates @aws-sdk/client-sqs from 3.896.0 to 3.914.0
Package Dependencies
@aws-sdk/client-dynamodb
npm
3.896.0 → 3.914.0
Minor
@aws-sdk/client-secrets-manager
npm
3.896.0 → 3.914.0
Minor
@aws-sdk/client-firehose
npm
3.896.0 → 3.914.0
Minor
@aws-sdk/signature-v4-crt
npm
3.896.0 → 3.914.0
Minor
npm
3.896.0 → 3.914.0
Minor
@middy/sqs-partial-batch-failure
npm
6.4.1 → 6.4.5
Patch
Technical Details
| ID: | 10471885 |
| UUID: | 3543166260 |
| Node ID: | PR_kwDOMfoAbc6vL-N8 |
| Host: | GitHub |
| Repository: | acm-uiuc/core |