Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update devDependencies #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update devDependencies #129

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@typescript-eslint/eslint-plugin (source) 8.19.0 -> 8.19.1 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) 8.19.0 -> 8.19.1 age adoption passing confidence devDependencies patch
ember-cli (source) 5.8.0 -> 5.12.0 age adoption passing confidence devDependencies minor
ember-data (source) ~4.8.0 -> ~4.12.0 age adoption passing confidence devDependencies minor
eslint-plugin-node ^11.1.0 -> ^14.0.0 devDependencies replacement
typescript (source) 5.7.2 -> 5.7.3 age adoption passing confidence devDependencies patch

This is a special PR that replaces eslint-plugin-node with the community suggested minimal stable replacement version.


Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.19.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] handle literal types (#​10523)
  • eslint-plugin: [no-deprecated] doesn't report on shorthand property in an object expression (#​10550)
  • eslint-plugin: [strict-boolean-expressions] remove remaining (unsafe) autofixes (#​10548)
  • eslint-plugin: [no-shadow] report correctly on parameters of functions declared with the declare keyword (#​10543)
  • eslint-plugin: [no-base-to-string] check array generic type (#​10437)
❤️ Thank You
  • Kirk Waiblinger
  • mdm317
  • Ronen Amiel
  • Yukihiro Hasegawa @​y-hsgw

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.19.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

ember-cli/ember-cli (ember-cli)

v5.12.0

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

v5.11.0

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

v5.10.0

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

v5.9.0

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

v5.8.1

Compare Source

Blueprint Changes
Changelog

Thank you to all who took the time to contribute!

emberjs/data (ember-data)

v4.12.8: | Backstreet's Back, Alright!

Compare Source

v4.12.8 (2024-05-08)

🚀 Enhancement
Committers: 1

v4.12.7

Compare Source

v4.12.6

Compare Source

v4.12.5: | Paw Patrol is on a Roll

Compare Source

Changelog (2023-12-04)
🚀 Enhancement
🐛 Bug Fix
Committers: 1

v4.12.4: | Old age is just around the bend

Compare Source

Changelog (2023-10-19)

🐛 Bug Fix
🥅 Test
Committers: 1

v4.12.3

Compare Source

🐛 Bug Fix
Committers: 1

v4.12.2: LTS - v4.12.2 | With our head above the clouds, fallin' stupid like we're kids

Compare Source

Changelog (2023-07-07)

🚀 Enhancement
🐛 Bug Fix
Committers: 1

v4.12.1

Compare Source

🐛 Bug Fix
Committers: 2

v4.12.0: - Can't Cache This!

Compare Source

MC Hammer Dancing to Can't Touch

It might be the last release of the cycle, but this release comes packed with goodies, so here we'll try to unpack a bit of what's changed.

A Big Step Towards Modern Javascript Build Tooling Support

First, while all addons are still shipping as v1-addons, they now look a lot like v2-addons. We're referring to this as "v1-lite". We pre-build them with rollup leaving only the most minimal babel step to be done when included in your app. Generally this should result in applications seeing improved build times and vastly improved embroider support.

There are still a few blocking issues in ember-auto-import and embroider before EmberData will be able to flip the switch and ship its packages as v2-addons, but that's what is left at this point: a switch to flip. Many thanks to @​richgt for his efforts to help us on this journey.

Documentation

Numerous APIs associated with the Cache, Notifications, Identity Management, and Record Lifecycle have new or improved docs. All packages have had their package overviews updated (some extensively, a few just a bit -- for now), and all packages now have a detailed README.

Deprecation documentation is now written inline alongside the flags that may be used to control granular deprecation stripping. Deprecation documentation will also continue to be added to the deprecation guides, though as of yet the 4.x guides have not been added there (we'd love help with this!).

A major focus of the 5.x cycle will be on refining and polishing the documentation for Polaris. A Quest issue has been opened and we'd love your help!

@​ember-data/request has its first Stable Release!

This package introduces the RequestManager, a package that can be used independently (but also comes bundled with ember-data) that re-envisions how data fetching is managed for both EmberData and applications more broadly.

You may want to peruse the RFC or head over and read its documentation

With this release, all existing request flows in EmberData utilize the RequestManager. While Adapters and Serializers will continue to work via the legacy-handler, these concepts are now entirely optional and users should expect that over the course of the 5.x series as the new request management story is further polished that these legacy concepts will be deprecated and removed from the recommended experience. They will, however, likely live on much longer since their implementation is now as an integration into the request-pipeline of the future and as such is something an application could choose to integrate and continue using.

The Notifications Service has Expanded Capabilities

In addition to subscribing to notifications for individual resources, the notification service now enables subscribing to resource added/removed events and Document added/removed events.

Promises are now Native Promises

EmberData now uses native promises for all promise APIs instead of RSVP Promises. This can have some unexpected timing affects, there's an overview here

The Cache 2.1 Spec is Implemented

What this means in effect is that store.request is now a much ... much more powerful API than store.query. Requests are capable of providing a cache-key or being cached by URL, with full lifecycle control and notification subscriptions. Documents are a first-class citizen of the Cache and EmberData more broadly, we are no longer just a resource-cache. For the full motivations and a discussion of all the various capabilities this unlocks we recommend reading the RFC

To go with this, the JSON:API cache previously provided by @ember-data/record-data is now upgraded to the 2.1 spec and available as the @ember-data/json-api package. While this cache does not yet implement the full suite of cache 2.1 APIs, support for all Cache 2.1 APIs has been added to the store.

Changelog

🚀 Enhancement
🐛 Bug Fix
🚿 Deprecation Removal
📝 Documentation
🥅 Test
🏠 Internal
Committers: 9

v4.11.3: - Roads? Where We're Going ...

Compare Source

Fixes a memory leak in SSR/Tests and Infinite Recursion bug in develop when yielded/awaited in an ember-concurrency task.

v4.11.2: - Roads Untraveled

Compare Source

Bugfixes to resolve major upgrade blockages (computed chains not recalcing, failing builds)

v4.11.1

Compare Source

v4.11.0

Compare Source

This is a re-release of 4.10.0

v4.10.0

Compare Source

v4.9.1: Sea Legs

Compare Source

4.9.1 (2022-12-03)

Note: RequestManager was marked private as a package prior to publishing and did not ship with this version.

🐛 Bug Fix
📝 Documentation
Committers: 3

v4.9.0

Compare Source

microsoft/TypeScript (typescript)

v5.7.3

Compare Source


Configuration

📅 Schedule: Branch creation - "after 9pm on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Feb 4, 2024
Copy link

stackblitz bot commented Feb 4, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 8cbacfb to a9fbc5a Compare February 25, 2024 22:17
@renovate renovate bot force-pushed the renovate/devdependencies branch from a9fbc5a to f5eff96 Compare March 3, 2024 21:39
@renovate renovate bot force-pushed the renovate/devdependencies branch from f5eff96 to e1e4557 Compare March 10, 2024 21:44
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 3d3dffd to 49564e1 Compare March 17, 2024 22:07
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from c33efd2 to 272cc29 Compare March 31, 2024 23:00
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 0c0df30 to 5d9a43f Compare April 14, 2024 21:05
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 67b005d to d71281d Compare April 28, 2024 21:51
@renovate renovate bot changed the title Update devDependencies Replace dependency eslint-plugin-node with eslint-plugin-n ^14.0.0 Apr 28, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch from d71281d to 1ab8a08 Compare May 5, 2024 22:40
@renovate renovate bot changed the title Replace dependency eslint-plugin-node with eslint-plugin-n ^14.0.0 Update devDependencies May 5, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch from 1ab8a08 to 9e507ac Compare May 5, 2024 22:41
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 7c4bfa5 to 09fd128 Compare May 26, 2024 21:25
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 590a933 to a379e09 Compare June 9, 2024 21:40
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 5cb91f5 to 5db18eb Compare June 23, 2024 21:15
@renovate renovate bot force-pushed the renovate/devdependencies branch 3 times, most recently from 5742ab2 to d45ee3d Compare July 7, 2024 21:06
@renovate renovate bot force-pushed the renovate/devdependencies branch from d45ee3d to e62ddac Compare July 14, 2024 21:35
@renovate renovate bot force-pushed the renovate/devdependencies branch from e62ddac to 8696e11 Compare July 14, 2024 21:37
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 0429fea to d27fa46 Compare July 28, 2024 22:46
@renovate renovate bot force-pushed the renovate/devdependencies branch from d27fa46 to a7629af Compare August 4, 2024 21:33
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from ecd9e74 to 9aeb324 Compare August 18, 2024 21:35
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 636d5b6 to 694332b Compare September 1, 2024 21:14
@renovate renovate bot force-pushed the renovate/devdependencies branch from 694332b to fcd14c6 Compare September 8, 2024 21:02
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 387ae84 to 6f5ca7b Compare September 15, 2024 22:14
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 8156d33 to c1be6e3 Compare September 29, 2024 21:26
@renovate renovate bot force-pushed the renovate/devdependencies branch from c1be6e3 to bea04ab Compare October 6, 2024 22:06
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from f84ec7e to 6367da7 Compare October 20, 2024 22:23
@renovate renovate bot force-pushed the renovate/devdependencies branch from 6367da7 to bc14785 Compare October 27, 2024 22:43
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 89005c4 to a156243 Compare November 10, 2024 22:16
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 1c924f7 to 1b0da46 Compare November 24, 2024 21:55
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 6cbfede to 5071b2b Compare December 8, 2024 22:08
@renovate renovate bot force-pushed the renovate/devdependencies branch from 5071b2b to 5971709 Compare December 15, 2024 21:51
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from b41ea79 to ba02648 Compare December 29, 2024 22:36
@renovate renovate bot force-pushed the renovate/devdependencies branch from ba02648 to f5b86be Compare January 5, 2025 22:18
@renovate renovate bot force-pushed the renovate/devdependencies branch from f5b86be to b78a7b2 Compare January 12, 2025 21:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants