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

Bump flipper-active_record, flipper and flipper-ui #545

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

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

Release notes

Sourced from flipper-active_record'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>
Changelog

Sourced from flipper-active_record'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 1.0.0 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>
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 1.0.0 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>
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

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 show <dependency name> 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)

Bumps [flipper-active_record](https://github.com/flippercloud/flipper), [flipper](https://github.com/flippercloud/flipper) and [flipper-ui](https://github.com/flippercloud/flipper). These dependencies needed to be updated together.

Updates `flipper-active_record` from 1.0.0 to 1.1.1
- [Release notes](https://github.com/flippercloud/flipper/releases)
- [Changelog](https://github.com/flippercloud/flipper/blob/main/Changelog.md)
- [Commits](flippercloud/flipper@v1.0.0...v1.1.1)

Updates `flipper` from 1.0.0 to 1.1.1
- [Release notes](https://github.com/flippercloud/flipper/releases)
- [Changelog](https://github.com/flippercloud/flipper/blob/main/Changelog.md)
- [Commits](flippercloud/flipper@v1.0.0...v1.1.1)

Updates `flipper-ui` from 1.0.0 to 1.1.1
- [Release notes](https://github.com/flippercloud/flipper/releases)
- [Changelog](https://github.com/flippercloud/flipper/blob/main/Changelog.md)
- [Commits](flippercloud/flipper@v1.0.0...v1.1.1)

---
updated-dependencies:
- dependency-name: flipper-active_record
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: flipper
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: flipper-ui
  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 Dec 11, 2023
@santib santib merged commit 4b5941b into main Dec 12, 2023
3 checks passed
@santib santib deleted the dependabot/bundler/flipper-active_record-and-flipper-and-flipper-ui-1.1.1 branch December 12, 2023 22:46
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.

1 participant