KevinBongart / cards_against_humanity

An unofficial online version of the Cards Against Humanity game.
https://www.cardiganshumility.online
Other
41 stars 13 forks source link

Bump flipper-redis, flipper and flipper-ui #766

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 11 months ago

Bumps flipper-redis, flipper and flipper-ui. These dependencies needed to be updated together. Updates flipper-redis from 0.28.3 to 1.1.1

Release notes

Sourced from flipper-redis's releases.

1.1.0

Flipper 1.1.0 - a "minor" update with a bunch of improvements and a couple fun surprises!

Read more about the Flipper 1.1.0 release on The Friday Deploy

Additions/Changes

  • Better read-only mode for UI (flippercloud/flipper#772).
  • Allow configuring preload via a block similar to memoize (flippercloud/flipper#771).
    Rails.application.configure do
      # don't preload features for /assets/* but do for everything else
      config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
    end
    
  • Added strict configuration to warn when accessing a feature that doesn't exist (flippercloud/flipper#760, flippercloud/flipper#763)
    Rails.application.configure do
      # Setting to `true` or `:raise` will raise error when a feature doesn't exist.
      # Use `:warn` to log a warning instead.
      config.flipper.strict = !Rails.env.production?
    end
    
  • Handle deprecation of Rack::File in Rack 3.1 (flippercloud/flipper#773).
  • Human readable actor names in flipper-ui (flippercloud/flipper#737).
  • Expressions are now available and considered "alpha". They are not yet documented, but you can see examples in https://github.com/flippercloud/flipper/blob/HEAD/examples/expressions.rb. Those using the flipper-active_record adapter will want to migrate the database so it can store JSON expressions (flippercloud/flipper#692)
    $ rails generate migration change_flipper_gates_value_to_text
    
    change_column :flipper_gates, :value, :text
    
  • Allow head requests to api (flippercloud/flipper#759)
  • Cloud Telemetry alpha (flippercloud/flipper#775).
  • Easier statsd setup (flippercloud/flipper#779).
    # You can now just do this in your configure block and it'll require the files and configure the client.
    Flipper.configure do |conf|
      conf.statsd = my_client
    end
    
  • Load cloud secrets from Rails credentials (flippercloud/flipper#782)
    $ rails credentials:edit
    
    flipper:
      cloud_token: <your-cloud-token>
      cloud_sync_secret: <your-webhook-secret>
    

... (truncated)

Changelog

Sourced from flipper-redis's changelog.

v1.1.1

Bug Fixes

  • Whoops! Anyone not using flipper-active_record would hit a missing require because of our fancy gemspecs (flippercloud/flipper#785).

v1.1.0

Additions/Changes

... (truncated)

Commits
  • 4e34ee7 Release 1.1.1
  • ae5ae62 Update changelog
  • c020f74 Merge pull request #785 from flippercloud/fix-ar-ext-require
  • 01d4e0c Remove cloud checks
  • 9021aae Ensure that flipper itself has the extensions for active record
  • 5a3587b Update changelog for v1.1.0
  • 4473ee5 Include expressions migration in changelog
  • 9a40d46 Prepare for v1.1.0 release
  • 3a8ad72 Add environment to changelog
  • 6979bc7 Merge pull request #782 from flippercloud/rails-credentials
  • Additional commits viewable in compare view


Updates flipper from 0.28.3 to 1.1.1

Release notes

Sourced from flipper's releases.

1.1.0

Flipper 1.1.0 - a "minor" update with a bunch of improvements and a couple fun surprises!

Read more about the Flipper 1.1.0 release on The Friday Deploy

Additions/Changes

  • Better read-only mode for UI (flippercloud/flipper#772).
  • Allow configuring preload via a block similar to memoize (flippercloud/flipper#771).
    Rails.application.configure do
      # don't preload features for /assets/* but do for everything else
      config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
    end
    
  • Added strict configuration to warn when accessing a feature that doesn't exist (flippercloud/flipper#760, flippercloud/flipper#763)
    Rails.application.configure do
      # Setting to `true` or `:raise` will raise error when a feature doesn't exist.
      # Use `:warn` to log a warning instead.
      config.flipper.strict = !Rails.env.production?
    end
    
  • Handle deprecation of Rack::File in Rack 3.1 (flippercloud/flipper#773).
  • Human readable actor names in flipper-ui (flippercloud/flipper#737).
  • Expressions are now available and considered "alpha". They are not yet documented, but you can see examples in https://github.com/flippercloud/flipper/blob/HEAD/examples/expressions.rb. Those using the flipper-active_record adapter will want to migrate the database so it can store JSON expressions (flippercloud/flipper#692)
    $ rails generate migration change_flipper_gates_value_to_text
    
    change_column :flipper_gates, :value, :text
    
  • Allow head requests to api (flippercloud/flipper#759)
  • Cloud Telemetry alpha (flippercloud/flipper#775).
  • Easier statsd setup (flippercloud/flipper#779).
    # You can now just do this in your configure block and it'll require the files and configure the client.
    Flipper.configure do |conf|
      conf.statsd = my_client
    end
    
  • Load cloud secrets from Rails credentials (flippercloud/flipper#782)
    $ rails credentials:edit
    
    flipper:
      cloud_token: <your-cloud-token>
      cloud_sync_secret: <your-webhook-secret>
    

... (truncated)

Changelog

Sourced from flipper's changelog.

v1.1.1

Bug Fixes

  • Whoops! Anyone not using flipper-active_record would hit a missing require because of our fancy gemspecs (flippercloud/flipper#785).

v1.1.0

Additions/Changes

... (truncated)

Commits
  • 4e34ee7 Release 1.1.1
  • ae5ae62 Update changelog
  • c020f74 Merge pull request #785 from flippercloud/fix-ar-ext-require
  • 01d4e0c Remove cloud checks
  • 9021aae Ensure that flipper itself has the extensions for active record
  • 5a3587b Update changelog for v1.1.0
  • 4473ee5 Include expressions migration in changelog
  • 9a40d46 Prepare for v1.1.0 release
  • 3a8ad72 Add environment to changelog
  • 6979bc7 Merge pull request #782 from flippercloud/rails-credentials
  • Additional commits viewable in compare view


Updates flipper-ui from 0.28.3 to 1.1.1

Release notes

Sourced from flipper-ui's releases.

1.1.0

Flipper 1.1.0 - a "minor" update with a bunch of improvements and a couple fun surprises!

Read more about the Flipper 1.1.0 release on The Friday Deploy

Additions/Changes

  • Better read-only mode for UI (flippercloud/flipper#772).
  • Allow configuring preload via a block similar to memoize (flippercloud/flipper#771).
    Rails.application.configure do
      # don't preload features for /assets/* but do for everything else
      config.flipper.preload = ->(request) { !request.path.start_with?('/assets') }
    end
    
  • Added strict configuration to warn when accessing a feature that doesn't exist (flippercloud/flipper#760, flippercloud/flipper#763)
    Rails.application.configure do
      # Setting to `true` or `:raise` will raise error when a feature doesn't exist.
      # Use `:warn` to log a warning instead.
      config.flipper.strict = !Rails.env.production?
    end
    
  • Handle deprecation of Rack::File in Rack 3.1 (flippercloud/flipper#773).
  • Human readable actor names in flipper-ui (flippercloud/flipper#737).
  • Expressions are now available and considered "alpha". They are not yet documented, but you can see examples in https://github.com/flippercloud/flipper/blob/HEAD/examples/expressions.rb. Those using the flipper-active_record adapter will want to migrate the database so it can store JSON expressions (flippercloud/flipper#692)
    $ rails generate migration change_flipper_gates_value_to_text
    
    change_column :flipper_gates, :value, :text
    
  • Allow head requests to api (flippercloud/flipper#759)
  • Cloud Telemetry alpha (flippercloud/flipper#775).
  • Easier statsd setup (flippercloud/flipper#779).
    # You can now just do this in your configure block and it'll require the files and configure the client.
    Flipper.configure do |conf|
      conf.statsd = my_client
    end
    
  • Load cloud secrets from Rails credentials (flippercloud/flipper#782)
    $ rails credentials:edit
    
    flipper:
      cloud_token: <your-cloud-token>
      cloud_sync_secret: <your-webhook-secret>
    

... (truncated)

Changelog

Sourced from flipper-ui's changelog.

v1.1.1

Bug Fixes

  • Whoops! Anyone not using flipper-active_record would hit a missing require because of our fancy gemspecs (flippercloud/flipper#785).

v1.1.0

Additions/Changes

... (truncated)

Commits
  • 4e34ee7 Release 1.1.1
  • ae5ae62 Update changelog
  • c020f74 Merge pull request #785 from flippercloud/fix-ar-ext-require
  • 01d4e0c Remove cloud checks
  • 9021aae Ensure that flipper itself has the extensions for active record
  • 5a3587b Update changelog for v1.1.0
  • 4473ee5 Include expressions migration in changelog
  • 9a40d46 Prepare for v1.1.0 release
  • 3a8ad72 Add environment to changelog
  • 6979bc7 Merge pull request #782 from flippercloud/rails-credentials
  • Additional commits viewable in compare view


You can trigger a rebase of this PR by commenting @dependabot rebase.

Dependabot will merge this PR once it's up-to-date and CI passes on it, as requested by @KevinBongart.


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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@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.

KevinBongart commented 10 months ago

@dependabot merge

KevinBongart commented 10 months ago

@dependabot merge