aleph
aleph copied to clipboard
Bump the dev group across 1 directory with 6 updates
Bumps the dev group with 6 updates in the /ui directory:
| Package | From | To |
|---|---|---|
| @formatjs/cli | 6.2.0 |
6.2.12 |
| @testing-library/jest-dom | 6.1.3 |
6.4.5 |
| @testing-library/react | 12.1.5 |
15.0.7 |
| @testing-library/user-event | 14.5.1 |
14.5.2 |
| prettier | 3.0.3 |
3.2.5 |
| sass | 1.68.0 |
1.77.4 |
Updates @formatjs/cli from 6.2.0 to 6.2.12
Release notes
Sourced from @formatjs/cli's releases.
@formatjs/cli@6.2.126.2.12 (2024-05-19)
Note: Version bump only for package
@formatjs/cli
@formatjs/cli@6.2.116.2.11 (2024-05-18)
Note: Version bump only for package
@formatjs/cli
@formatjs/cli@6.2.106.2.10 (2024-05-05)
Bug Fixes
@formatjs/cli@6.2.96.2.9 (2024-03-27)
Bug Fixes
@formatjs/cli@6.2.86.2.8 (2024-03-24)
Note: Version bump only for package
@formatjs/cli
@formatjs/cli@6.2.76.2.7 (2024-01-26)
Note: Version bump only for package
@formatjs/cli
Commits
cfb3f44build: publish753bfeafeat(@formatjs/intl-locale): update impl to match stage-3763c6b6chore: add missing patch filesa841c6dchore: update glimmer stuff086d27cchore(deps): update dependency aspect_rules_ts to v2.4.0 (#4438)bdfb9b0chore(deps): update swc monorepo (#4100)8efffdefix(deps): update dependency@types/hoist-non-react-staticsto v3.3.5 (#4427)ea248c2chore(deps): update dependency@glimmer/interfacesto v0.92.0 (#4429)ffc0e72chore(deps): update dependency@bazel/ibazelto 0.25 (#4428)9f6d522chore(deps): update dependency@glimmer/referenceto v0.92.0 (#4430)- Additional commits viewable in compare view
Updates @testing-library/jest-dom from 6.1.3 to 6.4.5
Release notes
Sourced from @testing-library/jest-dom's releases.
v6.4.5
6.4.5 (2024-05-03)
Bug Fixes
v6.4.4
6.4.4 (2024-05-03)
Bug Fixes
v6.4.3
6.4.3 (2024-05-03)
Bug Fixes
v6.4.2
6.4.2 (2024-02-05)
Bug Fixes
- Remove errant export of GetByRoleMatcher, fixing type checking in some TS configurations (#575) (a93c0c4)
v6.4.1
6.4.1 (2024-02-01)
Bug Fixes
v6.4.0
6.4.0 (2024-01-30)
Features
v6.3.0
6.3.0 (2024-01-24)
... (truncated)
Commits
e8c8b13fix: add js suffix to isEqualWith import (#599)f03a582fix(infra): codecoverage token addition (#600)20aca33fix: Updates role support for aria-required attribute intoBeRequired(#590)bd82f64refactor: replace lodash with own implementation when possible (#593)a93c0c4fix: Remove errant export of GetByRoleMatcher, fixing type checking in some T...c5c4e8ddocs: add Dennis273 as a contributor for code (#581)978e3d4docs: add kryops as a contributor for bug, code, and test (#580)73ad847docs: add SteKoe as a contributor for bug, and code (#579)d829ed9docs: add jakeboone02 as a contributor for code, and test (#578)16499cfdocs: add fpapado as a contributor for code, doc, and test (#573)- Additional commits viewable in compare view
Updates @testing-library/react from 12.1.5 to 15.0.7
Release notes
Sourced from @testing-library/react's releases.
v15.0.7
15.0.7 (2024-05-07)
Bug Fixes
v15.0.6
15.0.6 (2024-05-01)
Bug Fixes
v15.0.5
15.0.5 (2024-04-26)
Bug Fixes
v15.0.4
15.0.4 (2024-04-23)
Bug Fixes
v15.0.3
15.0.3 (2024-04-23)
Bug Fixes
v15.0.2
15.0.2 (2024-04-13)
Bug Fixes
v15.0.1
15.0.1 (2024-04-11)
... (truncated)
Commits
c1f2957fix: Ensureactis notanywhenReact.actis not declared (#1323)b6e59f7fix: export new act when available (#1319)f6a1677chore: Adjust tests to workaround 18.3.0 bug (#1315)d143f46fix: Stop restrictingcontaineroption based onhydrate(#1313)48282c2fix: EnsurerenderHookoptions extend options forrender(#1308)067d0c6fix: Don't raise TypeScript errors when hydatingdocument(#1304)c63b873fix: ImprovelegacyRooterror message (#1301)1645d21fix: Stop using nullish coalescing (#1299)787cb85Release: 15.0.0 (#1295)9c4a46dfeat: Add support for React 19 Canary (#1294)- Additional commits viewable in compare view
Updates @testing-library/user-event from 14.5.1 to 14.5.2
Release notes
Sourced from @testing-library/user-event's releases.
v14.5.2
14.5.2 (2023-12-29)
Bug Fixes
- remove interop and deep DTL imports (6a3c896)
Commits
Updates prettier from 3.0.3 to 3.2.5
Release notes
Sourced from prettier's releases.
3.2.5
3.2.4
- Fix
.eslintrc.jsonformat #159473.2.3
- Format
tsconfig.jsonfile withjsoncparser #159273.2.2
3.2.1
3.2.0
3.1.1
3.1.0
Changelog
Sourced from prettier's changelog.
3.2.5
Support Angular inline styles as single template literal (#15968 by
@sosukesuzuki)Angular v17 supports single string inline styles.
// Input @Component({ template: `<div>...</div>`, styles: `h1 { color: blue; }`, }) export class AppComponent {}// Prettier 3.2.4
@Component({ template:<div>...</div>, styles:h1 { color: blue; }, }) export class AppComponent {}// Prettier 3.2.5
@Component({ template:<div>...</div>, styles:h1 { color: blue; }, }) export class AppComponent {}Unexpected embedded formatting for Angular template (#15969 by
@JounQin)Computed template should not be considered as Angular component template
// Input const template = "foobar";
@Component({ [template]:<h1>{{ hello }}</h1>, }) export class AppComponent {} </tr></table>
... (truncated)
Commits
7142cf3Release 3.2.58cbee2echore(deps): update glimmer to v0.88.1 (#15991)45baee0chore(deps): update dependency magic-string to v0.30.6 (#16022)9fb32a1Minor refactor to property print (#15924)08f1940Update install script for husky v9 (#16000)6d0b1d2Update yarn to v4.1.0 (#16021)c8ba8dbchore(deps): update dependency@angular/compilerto v17.1.2 (#16018)e2250ecchore(deps): update typescript-eslint to v6.20.0 (#16015)02865f6chore(deps): update dependency npm-run-all2 to v6.1.2 (#16017)014ee5dchore(deps): update dependency hermes-parser to v0.19.0 (#16014)- Additional commits viewable in compare view
Updates sass from 1.68.0 to 1.77.4
Release notes
Sourced from sass's releases.
Dart Sass 1.77.4
To install Sass 1.77.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Embedded Sass
Support passing
Versioninput forfatalDeprecationsas string over embedded protocol.Fix a bug in the JS Embedded Host where
Versioncould be incorrectly accepted as input forsilenceDeprecationsandfutureDeprecationsin pure JS.See the full changelog for changes in earlier releases.
Dart Sass 1.77.3
To install Sass 1.77.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Dart API
Deprecation.duplicateVariableFlagshas been deprecated and replaced withDeprecation.duplicateVarFlagsto make it consistent with theduplicate-var-flagsname used on the command line and in the JS API.See the full changelog for changes in earlier releases.
Dart Sass 1.77.2
To install Sass 1.77.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Don't emit deprecation warnings for functions and mixins beginning with
__.Allow user-defined functions whose names begin with
_and otherwise look like vendor-prefixed functions with special CSS syntax.Command-Line Interface
Properly handle the
--silence-deprecationflag.Handle the
--fatal-deprecationand--future-deprecationflags for--interactivemode.See the full changelog for changes in earlier releases.
... (truncated)
Changelog
Sourced from sass's changelog.
1.77.4
Embedded Sass
Support passing
Versioninput forfatalDeprecationsas string over embedded protocol.Fix a bug in the JS Embedded Host where
Versioncould be incorrectly accepted as input forsilenceDeprecationsandfutureDeprecationsin pure JS.1.77.3
Dart API
Deprecation.duplicateVariableFlagshas been deprecated and replaced withDeprecation.duplicateVarFlagsto make it consistent with theduplicate-var-flagsname used on the command line and in the JS API.1.77.2
Don't emit deprecation warnings for functions and mixins beginning with
__.Allow user-defined functions whose names begin with
_and otherwise look like vendor-prefixed functions with special CSS syntax.Command-Line Interface
Properly handle the
--silence-deprecationflag.Handle the
--fatal-deprecationand--future-deprecationflags for--interactivemode.1.77.1
- Fix a crash that could come up with importers in certain contexts.
1.77.0
- Don't throw errors for at-rules in keyframe blocks.
1.76.0
Throw errors for misplaced statements in keyframe blocks.
Mixins and functions whose names begin with
--are now deprecated for forwards-compatibility with the in-progress CSS functions and mixins spec. This deprecation is namedcss-function-mixin.1.75.0
... (truncated)
Commits
21eeb4dParse Deprecation.forVersion on compiler side (#2248)1073c7bGenerate deprecations list from the language repo (#2253)fc24fecUsepubspec_parsedependency equality (#2254)5121eb1Don't treat underscores as hyphens for the purpose of error checking (#2247)bdc08fdMerge pull request #2246 from sass/deprecation-cli9a9e483Add a test to ensure the sass_api dartdoc version matches sass8c48a01Expand dartdoc range for sass_api to match sassc9f0d3fFix deprecation flags in the CLI and add tests54a6decBump lints from 3.0.0 to 4.0.0 (#2242)372f15cFixMapExtensions.getOption()for nullable types (#2241)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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