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

chore(deps): bump ember-resources from 6.1.1 to 6.3.1 #701

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2023

Bumps ember-resources from 6.1.1 to 6.3.1.

Release notes

Sourced from ember-resources's releases.

[email protected]

Patch Changes

  • #960 77d54e6 Thanks @​NullVoxPopuli! - Resolves: NullVoxPopuli/ember-resources#958

    used Resources can now be immediately returned from other resources.

    const Clock = resource(({ use }) => {
      return use(Instant({ intervalMs: 1000 });
    });
    const Stopwatch = resource(({ use }) => {
    return use(Instant({ intervalMs: 0 });
    });
    <template>
    <time>{{Clock}}</time>
    MS since Epoch: {{Stopwatch}}
    
    </template>

[email protected]

Minor Changes

  • #952 1551b33 Thanks @​NullVoxPopuli! - Introduce resources as modifiers. This brings alignment with Starbeam's plans for modifiers as a universal primitive.

    In ember-resources, using modifiers as resources looks like this:

    import { resource } from 'ember-resources';
    import { modifier } from 'ember-resources/modifier';
    const wiggle = modifier((element, arg1, arg2, namedArgs) => {
    return resource(({ on }) => {
    let animation = element.animate([
    { transform: translateX(${arg1}px) },
    { transform: translateX(-${arg2}px) },
    ], {
    duration: 100,
    iterations: Infinity,
    });
        on.cleanup(() =&gt; animation.cancel());
    });
    
    });
    &lt;template>

... (truncated)

Commits
  • d98bc19 Merge pull request #962 from NullVoxPopuli/changeset-release/main
  • 0d3344a chore(deps): update pnpm to v8.6.10
  • 7874dfe Version Packages
  • 3f19818 Merge pull request #960 from NullVoxPopuli/provide-the-ability-to-immediately...
  • cc363c2 Fix triple-nested composed resources
  • 48f981c Fix glint types
  • 77d54e6 Resolves #958
  • 3002ec8 Merge pull request #954 from NullVoxPopuli/changeset-release/main
  • 61b5b86 Version Packages
  • 4b1f708 Merge pull request #952 from NullVoxPopuli/modifiers
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [ember-resources](https://github.com/NullVoxPopuli/ember-resources) from 6.1.1 to 6.3.1.
- [Release notes](https://github.com/NullVoxPopuli/ember-resources/releases)
- [Commits](https://github.com/NullVoxPopuli/ember-resources/compare/[email protected]@6.3.1)

---
updated-dependencies:
- dependency-name: ember-resources
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 6, 2023
@dependabot dependabot bot requested review from derrabauke and velrest August 6, 2023 22:10
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 13, 2023

Superseded by #703.

@dependabot dependabot bot closed this Aug 13, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ember-resources-6.3.1 branch August 13, 2023 22:45
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants