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 flipper-active_record from 0.24.1 to 0.28.3 #138

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Bumps flipper-active_record from 0.24.1 to 0.28.3.

Changelog

Sourced from flipper-active_record's changelog.

0.28.3

  • Updated cloud config to ensure that poll adapter ONLY syncs from cloud to local adapter (and never back to cloud). Shouldn't affect anyone other than making things more safe if an incorrect response is received from the cloud poll endpoint. (jnunemaker/flipper#740)

0.28.2

Additions/Changes

0.28.1

Additions/Changes

0.28.0

Additions/Changes

  • Allow multiple actors for Flipper.enabled?. Improves performance of feature flags for multiple actors and simplifies code for users of flipper. This likely breaks things for anyone using Flipper internal classes related to actors, but that isn't likely you so you should be fine.
    - [user, user.team, user.org].any? { |actor| Flipper.enabled?(:my_feature, actor) }
    + Flipper.enabled?(:my_feature, user, user.team, user.org)
  • If you currently use actor.thing in a group, you'll need to change it to actor.actor.
    - Flipper.register(:our_group) do |actor|
    -   actor.thing.is_a?(OurClassName)
    - end
    + Flipper.register(:our_group) do |actor|
    +   actor.actor.is_a?(OurClassName)
    + end
  • If you currently use context.thing in a group or elsewhere, you'll need to change it to context.actors.
    - Flipper.register(:our_group) do |actor, context|
    -   context.thing.is_a?(OurClassName)
    - end
    + Flipper.register(:our_group) do |actor, context|
    +   context.actors.any? { |actor| actor.is_a?(OurClassName) }
    + end

Deprecations

  • :thing in enabled? instrumentation payload. Use :actors instead.
    ActiveSupport::Notifications.subscribe('enabled?.feature_operation.flipper') do |name, start, finish, id, payload|

... (truncated)

Commits
  • 3363e51 Release 0.28.3
  • 32b26d7 Update changelog
  • 41341b5 Remove sync interval from cloud config sync
  • 45ef4ab Avoid any possibility of sync writing back to remote
  • aef3275 Release v0.28.2
  • ac7c459 UI: fix path to bundled assets when mapped to a prefix
  • a3cc493 Prepare for 0.28.1
  • 9d9a6cd Update changelog
  • 8a6b5c9 Merge pull request #736 from natematykiewicz/logger_performance
  • b6625ed Improve performance of color_name function in log subscriber
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

confirmordeny and others added 2 commits June 18, 2023 09:28
"send" is clearer than "file". The term "file" could mean (a) submitting it to a public authority or (b) placing the request in a storage system.
Bumps [flipper-active_record](https://github.com/jnunemaker/flipper) from 0.24.1 to 0.28.3.
- [Changelog](https://github.com/jnunemaker/flipper/blob/main/Changelog.md)
- [Commits](flippercloud/flipper@v0.24.1...v0.28.3)

---
updated-dependencies:
- dependency-name: flipper-active_record
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jul 24, 2023
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 ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant