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

build(deps): bump ember-resources from 6.2.1 to 6.3.1 #540

Merged
merged 1 commit into from
Aug 3, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 31, 2023

Bumps ember-resources from 6.2.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)

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ember-resources-6.3.1 branch 4 times, most recently from ecc8511 to 0333365 Compare August 3, 2023 12:46
Bumps [ember-resources](https://github.com/NullVoxPopuli/ember-resources) from 6.2.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 force-pushed the dependabot/npm_and_yarn/ember-resources-6.3.1 branch from 0333365 to da6bb0f Compare August 3, 2023 13:02
@elpoelma elpoelma merged commit 59513d6 into master Aug 3, 2023
@elpoelma elpoelma deleted the dependabot/npm_and_yarn/ember-resources-6.3.1 branch August 3, 2023 14:53
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.

1 participant