An open-source, on-prem feature flag solution

Overview

Flipt

An open-source, on-prem feature flag solution


Flipt

Flipt is an open source, on-prem feature flag application that allows you to run experiments across services in your environment.

Flipt can be deployed within your existing infrastructure so that you don't have to worry about your information being sent to a third party or the latency required to communicate across the internet.

Flipt supports use cases such as:

  • Simple on/off feature flags to toggle functionality in your applications
  • Rolling out features to a percentage of your customers
  • Using advanced segmentation to target and serve users based on custom properties that you define

Features

  • Fast. Written in Go. Optimized for performance
  • Stand alone, easy to run and configure
  • Ability to create advanced distribution rules to target segments of users
  • Native GRPC client SDKs to integrate with your applications
  • Simple REST API
  • Modern UI and debug console
  • Support for multiple databases (Postgres, MySQL, SQLite)
  • Data import and export to allow storing your flags as code

Values

  • 🔒 Security - HTTPS support. No data leaves your servers and you don't have to open your systems to the outside world to communicate with Flipt. It all runs within your existing infrastructure.
  • 🚀 Speed - Since Flipt is co-located with your existing services, you do not have to communicate across the internet which can add excessive latency and slow down your applications.
  • Simplicity - Flipt is a single binary with no external dependencies by default.
  • Privacy - No telemetry data is collected or sent by Flipt. Ever.
  • 👍 Compatability - REST, GRPC, MySQL, Postgres, SQLite.. Flipt supports it all.

Examples

Check out the examples to see how Flipt works.

Here's a basic one to get started!

Try It

Flipt Docker

Try Flipt out yourself with Docker:

❯ docker run --rm -p 8080:8080 -p 9000:9000 -t markphelps/flipt:latest

Flipt UI will now be reachable at http://localhost:8080/.

For more permanent methods of running Flipt, see the Installation section.

GRPC Clients

Licensing

There are currently two types of licenses in place for Flipt:

  1. Client License
  2. Server License

Client License

All of the code required to generate GRPC clients in other languages as well as the existing GRPC Go client are licensed under the MIT License.

This code exists in the rpc/ directory.

The client code is the code that you would integrate into your applications, which is why a more permissive license is used.

Server License

The server code is licensed under the GPL 3.0 License.

See LICENSE.

Enterprise

Need more features or support using Flipt within your Enterprise?

Please help me prioritize an Enterprise version of Flipt by filling out this short survey!

Potential Features

  • Business-friendly Licensing
  • User Management and Audit Trail
  • Multiple Environments (ex: dev/staging/prod)

Author

twitter/mark_a_phelps
Mark Phelps

Contributing

I would love your help! Before submitting a PR, please read over the Contributing guide.

No contribution is too small, whether it be bug reports/fixes, feature requests, documentation updates, or anything else that can help drive the project forward.

Contributors

Thanks goes to these wonderful people (emoji key):


Aaron Raff

💻

Rodrigo Chacon

💻

Christopher Diehl

💻

Andrew Z Allen

📖

Sebastien Armand

💻

Dat Tran

💻

Jon Perl

⚠️ 💻

Or Elimelech

💻

giddel

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Comments
  • Postgres sql failure on 1.9.0 and 1.10.0

    Postgres sql failure on 1.9.0 and 1.10.0

    Describe the Bug

    We are running flipt in k8s in multiples environment:

    • locally using rancher desktop k8s.
    • in gcp

    we are in 1.8.3 and everything is working well, but when we try to update to 1.9.0 or 1.10.0 (even on a new db), we got error.

    getting db driver for: postgres: dial tcp: lookup postgres.database.svc.cluster.local: device or resource busy

    Version Info

    1.8.2 -> working 1.8.3 -> working 1.9.0 -> error 1.10.0 -> error

    our posgres sql is postgres:12

    To Reproduce

    we just start the docker image with the env variable FLIPT_DB_URL to postgres://y[email protected]:5432/flipt?sslmode=disable

    I went to the list of change, but I could not see any change related to postgres. Did we miss something or we need to change something ?

    log

    
    Version: 1.9.0
    Commit: 9938aba8e9c67aa4789bf0eec384d4113dd567d1
    Build Date: 2022-08-26T07:05:51Z
    Go Version: go1.17.11
    
    A newer version of Flipt exists at https://github.com/flipt-io/flipt/releases/tag/v1.10.0, 
    please consider updating to the latest version.
    time="2022-08-26T07:05:53Z" level=info msg="shutting down..."
    time="2022-08-26T07:05:53Z" level=error msg="getting db driver for: postgres: dial tcp: lookup postgres.database.svc.cluster.local: device or resource busy"
    
    bug 
    opened by AyWa 18
  • Add redis as storage backend

    Add redis as storage backend

    Is your feature request related to a problem? Please describe. Hi, we actively used redis as storage, and I want to add this feature. I've found this issue https://github.com/markphelps/flipt/issues/174 but it was closes because author inactivity, so can I add?

    Describe the solution you'd like I would like to add Redis as storage

    enhancement help wanted wip 
    opened by slavabobik 15
  • `match` is not returning

    `match` is not returning

    Hey @markphelps—great work.

    I'm thinking about using flipt for a product I'm developing, however, I am not sure if I'm doing something wrong.

    I've created one flag called "test" with a segment that matches on all contexts and a targeting rule on set to 50% and off also set to 50%. I can't seem to get a match: true or match: false back from the server.

    bug 
    opened by andreyvital 14
  • Flag variant attachment

    Flag variant attachment

    Extending variant to support attachment

    • Extend flipt.proto to support attachment in variant
    • Extend DB with the new column
    • Extend UI to support the new field

    closes https://github.com/markphelps/flipt/issues/188

    opened by kevin-ip 13
  • Wired flipt.db init

    Wired flipt.db init

    flipt:latest kubernets cluster

    If I start flipt in our cluster without any modification, the flipt service starts without any problem. After looking into /var/opt/flipt there is a file flipt.db. Doing the same with a mounted pvc/volume, flipt is starting with an error.

    You are currently running the latest version of Flipt [1.9.0]!
    time="2022-07-21T23:24:57Z" level=info msg="shutting down..."
    time="2022-07-21T23:24:58Z" level=error msg="getting db driver for: sqlite3: unable to open database file: no such file or directory"
    

    Using an init container I see hat the flipt.db is not existing while startup the container. It looks like the flipt.db file is created on startup.

    So I assume flipt is creating the flipt.db on startup. BUT it will not create this file inside the mounted volume.

    Maybe flipt expect a mounted volume as an external database and will not create flipt.db?

    Because the file flipt.db is not existing on pod startup, I also cannot use an init container as workaround to copy the file to the mounted volume.

    bug stale 
    opened by ognif 11
  • v1.5.0 breaking change: invalid value for string type: null

    v1.5.0 breaking change: invalid value for string type: null

    Describe the bug When i send this request to flipt /api/v1/evaluate:

    {"flag_key":"profile","entity_id":"ccf4c0a9-fc44-4478-a790-a01762efff01","context":{"cohort":null}}
    

    I'm getting the following response body as status 400:

    {"code":3,"message":"proto: (line 1:102): invalid value for string type: null","details":[]}
    

    This is a bug because this does break the default behavior and was not documented in changelog.

    Version Info version 1.5.0 as docker image.

    To Reproduce The steps are well written in the description

    Expected behavior The response should be status 200, with body similar to this:

    {
        "requestId": "728457c6-7dcd-46ff-9779-73b8988422a0",
        "entity_id":"ccf4c0a9-fc44-4478-a790-a01762efff01"
        "requestContext": {
            "cohort":null
        },
        "match": false,
        "flagKey": "profile",
        "segmentKey": "",
        "timestamp": "2022-01-25T17:13:51.337894649Z",
        "value": "",
        "requestDurationMillis": 3.700846
    }
    
    • Using postgres
    bug 
    opened by hurrycaner 11
  • Allow to match a segment to one of several constraints

    Allow to match a segment to one of several constraints

    Is your feature request related to a problem? Please describe. I need to toggle a feature in response to a certain parameter, e.g. I have 5 admin emails and if the API call sends one of them in the validate call, the feature should be toggled on by responding with true. Currently I create a segment for each with the constraint email to be equal and the flag returns true for these segments. But setting several emails to the segment as constraints, since it checks if the given email is equal to all of them does not work. Only if just one email is provided.

    Describe the solution you'd like Maybe set the option of the segment from always match all to be switchable to match one of. That way, I would only need to create one segment, give them all the emails as constraints and if the email matches one of the constraints, its in that segment and the feature flag would return true.

    Additional context I really enjoy your work and it is a great help. Thank you.

    enhancement ui api 
    opened by Domino987 9
  • Batch evaluation

    Batch evaluation

    Maybe not a top priority right now...but do you think there's a way to batch-evaluate a set of flags?

    I plan to use the REST API instead of grpc—so like, it'd be nice if I could send a single request with a set of flags to be evaluated instead of 1 request per flag. Just to avoid all the roundtrips.

    Thoughts?

    enhancement help wanted 
    opened by andreyvital 9
  • Change test case to show the correct format of multi domains for CORS

    Change test case to show the correct format of multi domains for CORS

    Overview

    The format of cors.allowed_origins config was changed by https://github.com/flipt-io/flipt/pull/1079 refactoring. So I change the test case to explain the format explicitly.

    Explanation

    Before the above change at v1.13.0, the format with white space worked fine since the parameter was parsed by viper.GetStringSlice here. But after the above change, it is parsed by mapstructure.StringToSliceHookFunc(",") here so the expected format was changed. I'm not sure we should fix to parse for the previous format, but changing test case to show the correct format won't be harmful.

    size/XS 
    opened by showwin 8
  • Replaces 0.0.0.0 by 127.0.0.1 on the codebase

    Replaces 0.0.0.0 by 127.0.0.1 on the codebase

    As discussed in #385 this is the step 2: align the codebase to spin up the service and expect it on 127.0.0.1 instead of 0.0.0.0. To be applied whenever @markphelps release a new version, to avoid any back-compatibility issues you may have in mind.

    A new demo.gif is required.

    opened by edumucelli 8
  • Try to upgrade yarn dev dependencies

    Try to upgrade yarn dev dependencies

    Goal

    Upgrade to latest versions of JS dev dependencies

    What I Did

    ~/workspace/flipt/ui yarn-dev-deps
    ❯ yarn version
    yarn version v1.17.0
    

    yarn upgrade-interactive --latest

    To upgrade all dependencies

    What Happens

    When I run yarn dev, it opens the browser but then I get:

    Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
    

    In the console

    What Should Happen

    No JS errors in the console when running yarn dev

    opened by markphelps 8
  • chore: use minted GITHUB_TOKEN for task setup to avoid ratelimits

    chore: use minted GITHUB_TOKEN for task setup to avoid ratelimits

    use fresh minted GITHUB_TOKEN when calling setup-task in workflows to avoid GitHub rate limits causing jobs to fail

    ex: https://github.com/flipt-io/flipt/actions/runs/3832718965/jobs/6523354201#step:6:5

    https://github.com/arduino/setup-task#repo-token

    size/M 
    opened by markphelps 0
  • chore: Release check refactor

    chore: Release check refactor

    • Performs some refactoring i've wanted to do for awhile, moving the release / version check mechanism out of main (mostly) and adding some tests around it
    • Also checks for rc in version to determine if its a proper release or not
    size/L 
    opened by markphelps 0
  • feat(http): support CSRF provention

    feat(http): support CSRF provention

    Fixes FLI-116

    This adds support for a configurable CSRF key to be added and protection to be enforced.

    When configured (non-empty authentication.crsf.key) a CSRF credential will be configured and stored in a cookie when accessing any of the following API prefixes:

    • /api/v1
    • /auth/v1
    • /meta

    Attempts to use non-safe (all bar GET or HEAD) HTTP methods will require an acquired CSRF token be presented. The token is verifiable via the CSRF credentials stored in the cookie (signature verification is used).

    The token can be acquired via a response header obtained on any route beneath /meta. The UI performs a /meta/info request in each load. This is where the current UI is obtaining it and storing it in its Vuex store.

    The UI has been updated to obtain the token and present it on all subsequent API requests. The new UI will need a similar adjustment to be made to support CSRF.

    This method of prevention ensures that a malicious request cannot be crafted from another domain / origin and directed over to Flipt to perform a malicious operation (e.g. delete or update a flag or authentication).

    There is one caveat, and that is the enforcement is only performed when the request contains an Origin header. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin

    This is taken from the MDN link above:


    Broadly speaking, user agents add the Origin request header to:


    This ensures we enforce the policy for browser user-agents. However, not for other clients (e.g. our SDKs). Thereby avoiding having to teach clients to perform the same CSRF prevention, which should be an unnecessary security step for our SDKs. As, the attack is performed by manipulating a user's browser and cookie-based authentication.

    size/L 
    opened by GeorgeMac 1
  • posibility to configure Zap logger keys

    posibility to configure Zap logger keys

    Problem

    Great thing to use Zap as logger. Unfortunately the logger keys are hardcoded in main.go. At least GCP looging cannot understand the logger keys. Alle entries at now are logged at INFO severity. Bildschirmfoto von 2023-01-03 08-32-40

    Ideal Solution

    So it would be great to set the complete Zap logger config like this:

    level: debug
    development: false  # enables stacktrace!
    encoding: json  # or 'console'
    outputPaths:
      - stdout
    errorOutputPaths:
      - stderr
    encoderConfig:
      timeKey: time
      levelKey: level
      messageKey: msg
      levelEncoder: capital  # or 'lower'
      timeEncoder: iso8601  # o 'rfc3339'
      callerEncoder: full
    

    Which then looks like this:
    Bildschirmfoto von 2023-01-03 08-39-47

    enhancement 
    opened by giddel 4
  • chore(deps-dev): bump eslint from 8.28.0 to 8.31.0 in /ui

    chore(deps-dev): bump eslint from 8.28.0 to 8.31.0 in /ui

    Bumps eslint from 8.28.0 to 8.31.0.

    Release notes

    Sourced from eslint's releases.

    v8.31.0

    Features

    • 52c7c73 feat: check assignment patterns in no-underscore-dangle (#16693) (Milos Djermanovic)
    • b401cde feat: add options to check destructuring in no-underscore-dangle (#16006) (Morten Kaltoft)
    • 30d0daf feat: group properties with values in parentheses in key-spacing (#16677) (Francesco Trotta)

    Bug Fixes

    • 35439f1 fix: correct syntax error in prefer-arrow-callback autofix (#16722) (Francesco Trotta)
    • 87b2470 fix: new instance of FlatESLint should load latest config file version (#16608) (Milos Djermanovic)

    Documentation

    • 4339dc4 docs: Update README (GitHub Actions Bot)
    • 4e4049c docs: optimize code block structure (#16669) (Sam Chen)
    • 54a7ade docs: do not escape code blocks of formatters examples (#16719) (Sam Chen)
    • e5ecfef docs: Add function call example for no-undefined (#16712) (Elliot Huffman)
    • a3262f0 docs: Add mastodon link (#16638) (Amaresh S M)
    • a14ccf9 docs: clarify files property (#16709) (Sam Chen)
    • 3b29eb1 docs: fix npm link (#16710) (Abdullah Osama)
    • a638673 docs: fix search bar focus on Esc (#16700) (Shanmughapriyan S)
    • f62b722 docs: country flag missing in windows (#16698) (Shanmughapriyan S)
    • 4d27ec6 docs: display zh-hans in the docs language switcher (#16686) (Percy Ma)
    • 8bda20e docs: remove manually maintained anchors (#16685) (Percy Ma)
    • b68440f docs: User Guide Getting Started expansion (#16596) (Ben Perlmutter)

    Chores

    • 65d4e24 chore: Upgrade @​eslint/eslintrc@​1.4.1 (#16729) (Brandon Mills)
    • 8d93081 chore: fix CI failure (#16721) (Sam Chen)
    • 8f17247 chore: Set up automatic updating of README (#16717) (Nicholas C. Zakas)
    • 4cd87cb ci: bump actions/stale from 6 to 7 (#16713) (dependabot[bot])
    • fd20c75 chore: sort package.json scripts in alphabetical order (#16705) (Darius Dzien)
    • 10a5c78 chore: update ignore patterns in eslint.config.js (#16678) (Milos Djermanovic)

    v8.30.0

    Features

    • 075ef2c feat: add suggestion for no-return-await (#16637) (Daniel Bartholomae)
    • 7190d98 feat: update globals (#16654) (Sébastien Règne)

    Bug Fixes

    • 1a327aa fix: Ensure flat config unignores work consistently like eslintrc (#16579) (Nicholas C. Zakas)
    • 9b8bb72 fix: autofix recursive functions in no-var (#16611) (Milos Djermanovic)

    Documentation

    • 6a8cd94 docs: Clarify Discord info in issue template config (#16663) (Nicholas C. Zakas)
    • ad44344 docs: CLI documentation standardization (#16563) (Ben Perlmutter)
    • 293573e docs: fix broken line numbers (#16606) (Sam Chen)
    • fa2c64b docs: use relative links for internal links (#16631) (Percy Ma)
    • 75276c9 docs: reorder options in no-unused-vars (#16625) (Milos Djermanovic)
    • 7276fe5 docs: Fix anchor in URL (#16628) (Karl Horky)
    • 6bef135 docs: don't apply layouts to html formatter example (#16591) (Tanuj Kanti)
    • dfc7ec1 docs: Formatters page updates (#16566) (Ben Perlmutter)

    ... (truncated)

    Changelog

    Sourced from eslint's changelog.

    v8.31.0 - December 31, 2022

    • 65d4e24 chore: Upgrade @​eslint/eslintrc@​1.4.1 (#16729) (Brandon Mills)
    • 35439f1 fix: correct syntax error in prefer-arrow-callback autofix (#16722) (Francesco Trotta)
    • 87b2470 fix: new instance of FlatESLint should load latest config file version (#16608) (Milos Djermanovic)
    • 8d93081 chore: fix CI failure (#16721) (Sam Chen)
    • 4339dc4 docs: Update README (GitHub Actions Bot)
    • 8f17247 chore: Set up automatic updating of README (#16717) (Nicholas C. Zakas)
    • 4e4049c docs: optimize code block structure (#16669) (Sam Chen)
    • 54a7ade docs: do not escape code blocks of formatters examples (#16719) (Sam Chen)
    • 52c7c73 feat: check assignment patterns in no-underscore-dangle (#16693) (Milos Djermanovic)
    • e5ecfef docs: Add function call example for no-undefined (#16712) (Elliot Huffman)
    • a3262f0 docs: Add mastodon link (#16638) (Amaresh S M)
    • 4cd87cb ci: bump actions/stale from 6 to 7 (#16713) (dependabot[bot])
    • a14ccf9 docs: clarify files property (#16709) (Sam Chen)
    • 3b29eb1 docs: fix npm link (#16710) (Abdullah Osama)
    • fd20c75 chore: sort package.json scripts in alphabetical order (#16705) (Darius Dzien)
    • a638673 docs: fix search bar focus on Esc (#16700) (Shanmughapriyan S)
    • f62b722 docs: country flag missing in windows (#16698) (Shanmughapriyan S)
    • 4d27ec6 docs: display zh-hans in the docs language switcher (#16686) (Percy Ma)
    • 8bda20e docs: remove manually maintained anchors (#16685) (Percy Ma)
    • b401cde feat: add options to check destructuring in no-underscore-dangle (#16006) (Morten Kaltoft)
    • b68440f docs: User Guide Getting Started expansion (#16596) (Ben Perlmutter)
    • 30d0daf feat: group properties with values in parentheses in key-spacing (#16677) (Francesco Trotta)
    • 10a5c78 chore: update ignore patterns in eslint.config.js (#16678) (Milos Djermanovic)

    v8.30.0 - December 16, 2022

    • f2c4737 chore: upgrade @​eslint/eslintrc@​1.4.0 (#16675) (Milos Djermanovic)
    • 1a327aa fix: Ensure flat config unignores work consistently like eslintrc (#16579) (Nicholas C. Zakas)
    • 075ef2c feat: add suggestion for no-return-await (#16637) (Daniel Bartholomae)
    • ba74253 chore: standardize npm script names per #14827 (#16315) (Patrick McElhaney)
    • 6a8cd94 docs: Clarify Discord info in issue template config (#16663) (Nicholas C. Zakas)
    • 0d9af4c ci: fix npm v9 problem with file: (#16664) (Milos Djermanovic)
    • 7190d98 feat: update globals (#16654) (Sébastien Règne)
    • ad44344 docs: CLI documentation standardization (#16563) (Ben Perlmutter)
    • 90c9219 refactor: migrate off deprecated function-style rules in all tests (#16618) (Bryan Mishkin)
    • 9b8bb72 fix: autofix recursive functions in no-var (#16611) (Milos Djermanovic)
    • 293573e docs: fix broken line numbers (#16606) (Sam Chen)
    • fa2c64b docs: use relative links for internal links (#16631) (Percy Ma)
    • 75276c9 docs: reorder options in no-unused-vars (#16625) (Milos Djermanovic)
    • 7276fe5 docs: Fix anchor in URL (#16628) (Karl Horky)
    • 6bef135 docs: don't apply layouts to html formatter example (#16591) (Tanuj Kanti)
    • dfc7ec1 docs: Formatters page updates (#16566) (Ben Perlmutter)
    • 8ba124c docs: update the prefer-const example (#16607) (Pavel)
    • e6cb05a docs: fix css leaking (#16603) (Sam Chen)

    v8.29.0 - December 2, 2022

    • 0311d81 docs: Configuring Plugins page intro, page tweaks, and rename (#16534) (Ben Perlmutter)

    ... (truncated)

    Commits

    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)
    dependencies javascript size/XS 
    opened by dependabot[bot] 1
Releases(v1.17-rc1)
  • v1.17-rc1(Jan 2, 2023)

    💄 Major UI Update / Rewrite !!

    CleanShot 2023-01-02 at 15 42 12@2x

    What's Changed

    • chore: try to fix latest tag/push on release by @markphelps in https://github.com/flipt-io/flipt/pull/1187
    • chore(deps-dev): bump prettier from 2.7.1 to 2.8.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1172
    • chore(deps-dev): bump @playwright/test from 1.28.0 to 1.28.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1170
    • fix: dont print to stdout using color/non json formatted output when running with JSON output logger by @markphelps in https://github.com/flipt-io/flipt/pull/1188
    • chore(deps): bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1193
    • chore(deps): bump DavidAnson/markdownlint-cli2-action from 7 to 8 by @dependabot in https://github.com/flipt-io/flipt/pull/1189
    • chore(deps): bump go.uber.org/zap from 1.23.0 to 1.24.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1194
    • feat(gh): add workflow to trigger grpc client update by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1198
    • chore(gh): deploy latest version of try.flipt.io after flipt release by @markphelps in https://github.com/flipt-io/flipt/pull/1199
    • chore(config): add Json/Cue schema by @markphelps in https://github.com/flipt-io/flipt/pull/1196
    • chore(deps): bump go.opentelemetry.io/otel/sdk from 1.11.1 to 1.11.2 by @dependabot in https://github.com/flipt-io/flipt/pull/1201
    • chore(config): add yaml-lang-server annotations to configs by @markphelps in https://github.com/flipt-io/flipt/pull/1204
    • chore(deps): bump go.opentelemetry.io/otel/exporters/jaeger from 1.11.1 to 1.11.2 by @dependabot in https://github.com/flipt-io/flipt/pull/1202
    • feat: trigger update ruby grpc job on release by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1200
    • chore(build): fix nightly/all builds to install gcc by @markphelps in https://github.com/flipt-io/flipt/pull/1213
    • chore(deps): bump golang.org/x/tools from 0.3.0 to 0.4.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1222
    • chore(deps): bump go.opentelemetry.io/otel/metric from 0.33.0 to 0.34.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1220
    • chore(deps): bump go.opentelemetry.io/otel/sdk/metric from 0.33.0 to 0.34.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1221
    • feat(server/auth): validate flipt_client_token cookie in middleware by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1139
    • feat(rpc/auth): add OIDC auth method service gRPC definition by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1138
    • chore(deps-dev): bump prettier from 2.8.0 to 2.8.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1218
    • chore(deps-dev): bump vite from 3.2.4 to 3.2.5 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1219
    • refactor(main): move grpc and http composition into internal/cmd by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1216
    • chore(deps): bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.36.4 to 0.37.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1203
    • chore: refactor deprecations checking to own method by @markphelps in https://github.com/flipt-io/flipt/pull/1226
    • chore: move migrator back to main so we dont need it in grpc server by @markphelps in https://github.com/flipt-io/flipt/pull/1224
    • feat: deprecate ui enabled by @markphelps in https://github.com/flipt-io/flipt/pull/1227
    • chore(deps): bump goreleaser/goreleaser-action from 3 to 4 by @dependabot in https://github.com/flipt-io/flipt/pull/1228
    • chore(deps): bump github.com/XSAM/otelsql from 0.17.0 to 0.17.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1232
    • feat: support config versioning by @markphelps in https://github.com/flipt-io/flipt/pull/1225
    • feat(auth/oidc): OIDC authentication method support by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1197
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.14.0 to 2.15.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1238
    • chore(deps): bump golang.org/x/net from 0.2.0 to 0.4.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1237
    • feat(auth): public list authentication methods endpoint by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1240
    • chore: rm swagger (openapiv2) self hosted api docs in favor of public api docs by @markphelps in https://github.com/flipt-io/flipt/pull/1241
    • feat(auth): add arbitrary list methods metadata field by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1242
    • chore(schema): update JSON and CUE schemas by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1243
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.14.0 to 2.15.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1244
    • chore(deps): bump github.com/testcontainers/testcontainers-go from 0.15.0 to 0.17.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1245

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.16.0...v1.17-rc1

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(412 bytes)
    flipt_1.17-rc1_linux_arm64.tar.gz(8.59 MB)
    flipt_1.17-rc1_linux_arm64.tar.gz.sbom(94.79 KB)
    flipt_1.17-rc1_linux_x86_64.tar.gz(9.29 MB)
    flipt_1.17-rc1_linux_x86_64.tar.gz.sbom(94.79 KB)
  • v1.16.0(Nov 30, 2022)

    What's Changed

    • chore(deps): bump google.golang.org/grpc from 1.50.1 to 1.51.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1149
    • feat(metrics): move to otel abstractions for metrics recording by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1147
    • feat(server): add metrics around flag evaluations by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1150
    • Add Asphalt logo to users by @cxnky in https://github.com/flipt-io/flipt/pull/1153
    • chore: rm it image by @markphelps in https://github.com/flipt-io/flipt/pull/1152
    • chore(deps-dev): bump eslint from 8.27.0 to 8.28.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1148
    • chore(deps-dev): bump @playwright/test from 1.27.1 to 1.28.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1143
    • chore(deps): bump alpine from 3.16.3 to 3.17.0 in /build by @dependabot in https://github.com/flipt-io/flipt/pull/1154
    • chore: setup nightly builds, allow for pre-release builds by @markphelps in https://github.com/flipt-io/flipt/pull/1158
    • Revert "chore: setup nightly builds, allow for pre-release builds" by @markphelps in https://github.com/flipt-io/flipt/pull/1159
    • chore: nightly builds by @markphelps in https://github.com/flipt-io/flipt/pull/1160
    • chore: refactor/create grpc middleware pkg by @markphelps in https://github.com/flipt-io/flipt/pull/1157
    • chore: add nightly builds section to README by @markphelps in https://github.com/flipt-io/flipt/pull/1162
    • chore(deps): bump github.com/go-redis/cache/v8 from 8.4.3 to 8.4.4 by @dependabot in https://github.com/flipt-io/flipt/pull/1163
    • fix: refactor telemetry, dont log warning if not able to report by @markphelps in https://github.com/flipt-io/flipt/pull/1156
    • fix(auth): mount core auth service via grpc gateway by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1175
    • Change test case to show the correct format of multi domains for CORS by @showwin in https://github.com/flipt-io/flipt/pull/1173
    • docs: add showwin as a contributor for test by @allcontributors in https://github.com/flipt-io/flipt/pull/1174
    • chore(deps-dev): bump eslint-plugin-vue from 9.7.0 to 9.8.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1171
    • fix(config/cors): use strings.Fields for string to string slice fields by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1179
    • chore: update README with additional client SDKs by @markphelps in https://github.com/flipt-io/flipt/pull/1177
    • chore: only tag/push latest Docker for latest semantic tag by @markphelps in https://github.com/flipt-io/flipt/pull/1182
    • fix(sql/testing): use wait.ForSQL when readying cockroach by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1183
    • feat(authentication): per method cleanup process by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1161
    • chore: update to use goreleaser-pro for snapshot build by @markphelps in https://github.com/flipt-io/flipt/pull/1185
    • feat: release v1.16.0 by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1184

    New Contributors

    • @cxnky made their first contribution in https://github.com/flipt-io/flipt/pull/1153
    • @showwin made their first contribution in https://github.com/flipt-io/flipt/pull/1173

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.15.1...v1.16.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.16.0_linux_arm64.tar.gz(9.25 MB)
    flipt_1.16.0_linux_arm64.tar.gz.sbom(86.85 KB)
    flipt_1.16.0_linux_x86_64.tar.gz(9.93 MB)
    flipt_1.16.0_linux_x86_64.tar.gz.sbom(86.85 KB)
  • v1.15.2(Nov 29, 2022)

  • v1.14.1(Nov 29, 2022)

  • v1.15.1(Nov 28, 2022)

  • v1.15.0(Nov 17, 2022)

    What's Changed

    • chore: add markdownlint by @markphelps in https://github.com/flipt-io/flipt/pull/1116
    • chore: update testcontainer for mysql to wait for connection to fix unavailable failures by @markphelps in https://github.com/flipt-io/flipt/pull/1125
    • chore: update to vite3 and official vite-vue-2 plugin by @markphelps in https://github.com/flipt-io/flipt/pull/1126
    • chore: add kodiak config, modify dependabot labels for go to add automerge by @markphelps in https://github.com/flipt-io/flipt/pull/1127
    • chore(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1104
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.12.0 to 2.13.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1123
    • chore(deps): bump github.com/gofrs/uuid from 4.3.0+incompatible to 4.3.1+incompatible by @dependabot in https://github.com/flipt-io/flipt/pull/1121
    • chore(deps): bump github.com/XSAM/otelsql from 0.16.0 to 0.17.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1120
    • chore(deps): bump github.com/spf13/cobra from 1.6.0 to 1.6.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1122
    • chore(deps): bump github.com/spf13/viper from 1.13.0 to 1.14.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1119
    • Bump @playwright/test from 1.26.0 to 1.27.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1069
    • chore(deps-dev): bump eslint from 8.24.0 to 8.27.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1124
    • chore(deps-dev): bump @babel/preset-env from 7.19.4 to 7.20.2 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1118
    • feat: token-based authentication by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1097
    • chore(deps): bump golang.org/x/tools from 0.2.0 to 0.3.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1130
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.12.0 to 2.13.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1134
    • chore(deps): bump github.com/prometheus/client_golang from 1.13.0 to 1.14.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1131
    • feat: authentication service by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1128
    • feat(auth): get and list authentications by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1137
    • test: add additional e2e with authentication required by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1140
    • chore(deps-dev): bump sass from 1.55.0 to 1.56.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1135
    • chore(deps-dev): bump eslint-plugin-vue from 9.6.0 to 9.7.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1133
    • chore: setup codeowners by @markphelps in https://github.com/flipt-io/flipt/pull/1141
    • chore(deps): bump golangci/golangci-lint-action from 3.3.0 to 3.3.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1129
    • chore(deps-dev): bump @vitejs/plugin-vue2 from 2.0.0 to 2.0.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1132
    • chore(deps-dev): bump @babel/core from 7.19.6 to 7.20.2 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1117
    • Bump vue from 2.7.7 to 2.7.13 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1068
    • chore(deps): bump vue from 2.7.13 to 2.7.14 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1146
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.13.0 to 2.14.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1142
    • chore(deps-dev): bump vite from 3.2.3 to 3.2.4 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1145
    • chore(deps): bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.13.0 to 2.14.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1144
    • chore(deps): bump alpine from 3.16.2 to 3.16.3 in /build by @dependabot in https://github.com/flipt-io/flipt/pull/1136

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.14.0...v1.15.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(396 bytes)
    flipt_1.15.0_linux_arm64.tar.gz(9.06 MB)
    flipt_1.15.0_linux_arm64.tar.gz.sbom(91.83 KB)
    flipt_1.15.0_linux_x86_64.tar.gz(9.73 MB)
    flipt_1.15.0_linux_x86_64.tar.gz.sbom(91.83 KB)
    flipt_1.15_linux_arm64.tar.gz(9.06 MB)
    flipt_1.15_linux_arm64.tar.gz.sbom(91.83 KB)
    flipt_1.15_linux_x86_64.tar.gz(9.73 MB)
    flipt_1.15_linux_x86_64.tar.gz.sbom(91.83 KB)
  • v1.14.0(Nov 2, 2022)

    What's Changed

    • Update logo and MIT license by @markphelps in https://github.com/flipt-io/flipt/pull/1052
    • feat: replace opentracing with opentelemetry by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1053
    • Update readme discord link by @markphelps in https://github.com/flipt-io/flipt/pull/1056
    • Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.28.0 to 0.36.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1055
    • fix: initialize shutdown context timeout after interrupt by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1057
    • List token based pagination by @markphelps in https://github.com/flipt-io/flipt/pull/1041
    • Move storage package to internal by @markphelps in https://github.com/flipt-io/flipt/pull/1059
    • Bump google.golang.org/grpc from 1.49.0 to 1.50.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1063
    • Bump tsickert/discord-webhook from 5.2.0 to 5.3.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1048
    • Remove stacktrace from log output by @markphelps in https://github.com/flipt-io/flipt/pull/1066
    • Update favicon, docs link in app by @markphelps in https://github.com/flipt-io/flipt/pull/1067
    • Proposal: configuration refactor by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1058
    • CockroachDB Support by @markphelps in https://github.com/flipt-io/flipt/pull/1064
    • Bump google.golang.org/grpc from 1.50.0 to 1.50.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1074
    • Bump go.opentelemetry.io/otel/trace from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1073
    • Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.36.1 to 0.36.3 by @dependabot in https://github.com/flipt-io/flipt/pull/1076
    • Bump go.opentelemetry.io/otel/sdk from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1072
    • Bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1070
    • Bump go.opentelemetry.io/otel/exporters/jaeger from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1071
    • Run snapshot workflow on release branch by @markphelps in https://github.com/flipt-io/flipt/pull/1077
    • Release/1.13 by @markphelps in https://github.com/flipt-io/flipt/pull/1078
    • Swap to http.Method* Constants by @syntaqx in https://github.com/flipt-io/flipt/pull/1080
    • docs: add syntaqx as a contributor for code by @allcontributors in https://github.com/flipt-io/flipt/pull/1081
    • refactor(config): use viper.Unmarshal capabilities by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1079
    • refactor(server): move server package to internal by @markphelps in https://github.com/flipt-io/flipt/pull/1083
    • Bump go-migrate to more recent version by @markphelps in https://github.com/flipt-io/flipt/pull/1094
    • Bump go.opentelemetry.io/otel/trace from 1.11.0 to 1.11.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1090
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.11.3 to 2.12.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1089
    • refactor(storage/sql): embed migrations into flipt binary by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1096
    • Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.36.3 to 0.36.4 by @dependabot in https://github.com/flipt-io/flipt/pull/1091
    • Bump golangci/golangci-lint-action from 3.2.0 to 3.3.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1085
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.11.3 to 2.12.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1087
    • Bump go.flipt.io/flipt-grpc from 1.0.0 to 1.1.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1086
    • Bump golang.org/x/tools from 0.1.12 to 0.2.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/1088
    • fix(migrations/sqlite3): syntax error in uniqueness constraint on temp table in down operation by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1098
    • chore: fix bootstrap in devcontainer/first build by @markphelps in https://github.com/flipt-io/flipt/pull/1100
    • chore: bump buf, small cleanup by @markphelps in https://github.com/flipt-io/flipt/pull/1101
    • feat: add evalution reason by @markphelps in https://github.com/flipt-io/flipt/pull/1099
    • Bump @babel/core from 7.19.1 to 7.19.6 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1082
    • Bump eslint-plugin-vue from 9.5.1 to 9.6.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1062
    • Bump @babel/preset-env from 7.19.1 to 7.19.4 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1065
    • chore(deps): bump go.opentelemetry.io/otel/sdk from 1.11.0 to 1.11.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1108
    • chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.15 to 1.14.16 by @dependabot in https://github.com/flipt-io/flipt/pull/1106
    • chore(deps): bump go.opentelemetry.io/otel/exporters/jaeger from 1.11.0 to 1.11.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1107
    • chore(deps): bump github.com/testcontainers/testcontainers-go from 0.14.0 to 0.15.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1105
    • fix(config): fix default booleans not being overriden by env vars by @markphelps in https://github.com/flipt-io/flipt/pull/1112
    • chore: add docs/example on openfeature provider/otel hook by @markphelps in https://github.com/flipt-io/flipt/pull/1109
    • fix(config): ensure all expected env vars are bound by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1113
    • chore: switch to goreleaser-pro by @markphelps in https://github.com/flipt-io/flipt/pull/1115

    New Contributors

    • @syntaqx made their first contribution in https://github.com/flipt-io/flipt/pull/1080

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.12.1...v1.14.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.14.0_linux_arm64.tar.gz(9.02 MB)
    flipt_1.14.0_linux_arm64.tar.gz.sbom(92.08 KB)
    flipt_1.14.0_linux_x86_64.tar.gz(9.68 MB)
    flipt_1.14.0_linux_x86_64.tar.gz.sbom(92.08 KB)
  • v1.13.0(Oct 17, 2022)

    What's Changed

    • Update logo and MIT license by @markphelps in https://github.com/flipt-io/flipt/pull/1052
    • feat: replace opentracing with opentelemetry by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1053
    • Update readme discord link by @markphelps in https://github.com/flipt-io/flipt/pull/1056
    • Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.28.0 to 0.36.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1055
    • fix: initialize shutdown context timeout after interrupt by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1057
    • List token based pagination by @markphelps in https://github.com/flipt-io/flipt/pull/1041
    • Move storage package to internal by @markphelps in https://github.com/flipt-io/flipt/pull/1059
    • Bump google.golang.org/grpc from 1.49.0 to 1.50.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1063
    • Bump tsickert/discord-webhook from 5.2.0 to 5.3.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1048
    • Remove stacktrace from log output by @markphelps in https://github.com/flipt-io/flipt/pull/1066
    • Update favicon, docs link in app by @markphelps in https://github.com/flipt-io/flipt/pull/1067
    • Proposal: configuration refactor by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1058
    • CockroachDB Support by @markphelps in https://github.com/flipt-io/flipt/pull/1064
    • Bump google.golang.org/grpc from 1.50.0 to 1.50.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1074
    • Bump go.opentelemetry.io/otel/trace from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1073
    • Bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.36.1 to 0.36.3 by @dependabot in https://github.com/flipt-io/flipt/pull/1076
    • Bump go.opentelemetry.io/otel/sdk from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1072
    • Bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1070
    • Bump go.opentelemetry.io/otel/exporters/jaeger from 1.10.0 to 1.11.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1071
    • Run snapshot workflow on release branch by @markphelps in https://github.com/flipt-io/flipt/pull/1077

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.12.1...v1.13.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.13.0_linux_arm64.tar.gz(8.94 MB)
    flipt_1.13.0_linux_arm64.tar.gz.sbom(88.78 KB)
    flipt_1.13.0_linux_x86_64.tar.gz(9.59 MB)
    flipt_1.13.0_linux_x86_64.tar.gz.sbom(88.78 KB)
  • v1.12.1(Sep 30, 2022)

    What's Changed

    • Bump golangci-lint to 1.49 by @markphelps in https://github.com/flipt-io/flipt/pull/1042
    • Bump eslint from 8.23.1 to 8.24.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1044
    • Testcontainer db by @markphelps in https://github.com/flipt-io/flipt/pull/1045
    • Bump codecov/codecov-action from 3.1.0 to 3.1.1 by @dependabot in https://github.com/flipt-io/flipt/pull/1043
    • Fix parse error for bool/number to not return 500 by @markphelps in https://github.com/flipt-io/flipt/pull/1047

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.12.0...v1.12.1

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.12.1_linux_arm64.tar.gz(8.83 MB)
    flipt_1.12.1_linux_arm64.tar.gz.sbom(69.76 KB)
    flipt_1.12.1_linux_x86_64.tar.gz(9.48 MB)
    flipt_1.12.1_linux_x86_64.tar.gz.sbom(69.76 KB)
  • v1.12.0(Sep 22, 2022)

    What's Changed

    • Bump github.com/spf13/viper from 1.12.0 to 1.13.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1025
    • JSON log output by @markphelps in https://github.com/flipt-io/flipt/pull/1027
    • Bump github.com/testcontainers/testcontainers-go from 0.13.0 to 0.14.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1028
    • Bump github.com/lib/pq from 1.10.6 to 1.10.7 by @dependabot in https://github.com/flipt-io/flipt/pull/1024
    • Marshal custom config types as JSON by @markphelps in https://github.com/flipt-io/flipt/pull/1030
    • feat(logging): forward grpc internal logging to zap by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1029
    • Bump github.com/gofrs/uuid from 4.2.0+incompatible to 4.3.0+incompatible by @dependabot in https://github.com/flipt-io/flipt/pull/1023
    • update yaml config files with defaults for logging changes by @markphelps in https://github.com/flipt-io/flipt/pull/1031
    • Bump golang.org/x/tools from 0.1.11 to 0.1.12 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/973
    • Bump sass from 1.54.8 to 1.54.9 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1021
    • Filtered GitHub webhooks by @tsickert in https://github.com/flipt-io/flipt/pull/1018
    • Mv config internal by @markphelps in https://github.com/flipt-io/flipt/pull/1036
    • Bump buefy from 0.9.21 to 0.9.22 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1022
    • Fix clone icons by @markphelps in https://github.com/flipt-io/flipt/pull/1038
    • Bump @babel/core from 7.19.0 to 7.19.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1032
    • Bump @babel/preset-env from 7.19.0 to 7.19.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1033
    • Bump eslint-plugin-vue from 9.4.0 to 9.5.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1034
    • Bump eslint from 8.23.0 to 8.23.1 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1037
    • Bump @playwright/test from 1.25.2 to 1.26.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1039
    • Bump sass from 1.54.9 to 1.55.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1040

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.11.0...v1.12.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.12.0_linux_arm64.tar.gz(8.83 MB)
    flipt_1.12.0_linux_arm64.tar.gz.sbom(69.76 KB)
    flipt_1.12.0_linux_x86_64.tar.gz(9.48 MB)
    flipt_1.12.0_linux_x86_64.tar.gz.sbom(69.76 KB)
  • v1.11.0(Sep 12, 2022)

    What's Changed

    • Bump @babel/preset-env from 7.18.6 to 7.18.9 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/962
    • Bump google.golang.org/protobuf from 1.28.0 to 1.28.1 by @dependabot in https://github.com/flipt-io/flipt/pull/967
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.3 to 2.11.0 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/958
    • Add redis example; update/add logos by @markphelps in https://github.com/flipt-io/flipt/pull/968
    • Fix playwright by installing in CI by @markphelps in https://github.com/flipt-io/flipt/pull/982
    • Bump alpine from 3.16.1 to 3.16.2 in /build by @dependabot in https://github.com/flipt-io/flipt/pull/981
    • Bump sass from 1.54.0 to 1.54.4 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/983
    • Bump github.com/prometheus/client_golang from 1.12.2 to 1.13.0 by @dependabot in https://github.com/flipt-io/flipt/pull/979
    • Bump eslint-plugin-vue from 9.2.0 to 9.3.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/970
    • Bump eslint from 8.20.0 to 8.22.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/987
    • Bump @babel/core from 7.18.9 to 7.18.10 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/986
    • Bump vite from 2.9.14 to 2.9.15 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/988
    • Bump github.com/mattn/go-sqlite3 from 1.14.14 to 1.14.15 by @dependabot in https://github.com/flipt-io/flipt/pull/990
    • Bump to postgres 12 by @markphelps in https://github.com/flipt-io/flipt/pull/994
    • Fix discord invite URL by @tsickert in https://github.com/flipt-io/flipt/pull/1003
    • docs: add tsickert as a contributor for doc by @allcontributors in https://github.com/flipt-io/flipt/pull/1004
    • Bump sass from 1.54.4 to 1.54.8 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1006
    • Bump google.golang.org/grpc from 1.48.0 to 1.49.0 by @dependabot in https://github.com/flipt-io/flipt/pull/1000
    • Support arm64 builds by @jalaziz in https://github.com/flipt-io/flipt/pull/1005
    • docs: add jalaziz as a contributor for platform by @allcontributors in https://github.com/flipt-io/flipt/pull/1010
    • update buf google apis by @markphelps in https://github.com/flipt-io/flipt/pull/1011
    • Bump vue-router from 3.5.4 to 3.6.5 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1008
    • Bump @babel/preset-env from 7.18.9 to 7.19.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1009
    • Bump @babel/core from 7.18.10 to 7.19.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1012
    • Filter out dependabot PRs from webhooks by @tsickert in https://github.com/flipt-io/flipt/pull/1014
    • Fix filter PR workflow by @tsickert in https://github.com/flipt-io/flipt/pull/1015
    • feat: upgrade to go 1.18 by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1016
    • Bump eslint from 8.22.0 to 8.23.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1013
    • Bump eslint-plugin-vue from 9.3.0 to 9.4.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1007
    • Bump @playwright/test from 1.23.4 to 1.25.2 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/1017
    • Bump google.golang.org/protobuf from 1.28.0 to 1.28.1 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/972
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.11.0 to 2.11.3 by @dependabot in https://github.com/flipt-io/flipt/pull/998
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.11.0 to 2.11.3 in /_tools by @dependabot in https://github.com/flipt-io/flipt/pull/997
    • docs: add GeorgeMac as a contributor for code by @allcontributors in https://github.com/flipt-io/flipt/pull/1019
    • feat: replace logrus with zap by @GeorgeMac in https://github.com/flipt-io/flipt/pull/1020
    • Update CHANGELOG for 1.11 by @markphelps in https://github.com/flipt-io/flipt/pull/1026

    New Contributors

    • @tsickert made their first contribution in https://github.com/flipt-io/flipt/pull/1003
    • @jalaziz made their first contribution in https://github.com/flipt-io/flipt/pull/1005
    • @GeorgeMac made their first contribution in https://github.com/flipt-io/flipt/pull/1016

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.10.1...v1.11.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(404 bytes)
    flipt_1.11.0_linux_arm64.tar.gz(8.82 MB)
    flipt_1.11.0_linux_arm64.tar.gz.sbom(69.76 KB)
    flipt_1.11.0_linux_x86_64.tar.gz(9.47 MB)
    flipt_1.11.0_linux_x86_64.tar.gz.sbom(69.76 KB)
  • v1.10.1(Sep 1, 2022)

  • v1.9.1(Sep 1, 2022)

  • v1.10.0(Jul 27, 2022)

    What's Changed

    • Update refs by @markphelps in https://github.com/flipt-io/flipt/pull/943
    • Bump vite from 2.9.13 to 2.9.14 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/932
    • Bump vite-plugin-vue2 from 2.0.1 to 2.0.2 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/940
    • Bump eslint-plugin-vue from 9.1.1 to 9.2.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/933
    • Bump moment from 2.29.3 to 2.29.4 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/944
    • Bump jest from 28.1.2 to 28.1.3 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/938
    • Bump google.golang.org/grpc from 1.47.0 to 1.48.0 by @dependabot in https://github.com/flipt-io/flipt/pull/937
    • Bump @playwright/test from 1.23.1 to 1.23.4 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/942
    • Update workflows to point to main; gitleaks by @markphelps in https://github.com/flipt-io/flipt/pull/945
    • Bump vue from 2.7.0 to 2.7.7 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/939
    • Bump negroni by @markphelps in https://github.com/flipt-io/flipt/pull/947
    • Bump eslint from 8.19.0 to 8.20.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/949
    • update most remaining namespace refs by @markphelps in https://github.com/flipt-io/flipt/pull/955
    • Build date fix by @markphelps in https://github.com/flipt-io/flipt/pull/956
    • Redis cache impl by @markphelps in https://github.com/flipt-io/flipt/pull/954
    • Bump sass from 1.53.0 to 1.54.0 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/960
    • Bump alpine from 3.16.0 to 3.16.1 in /build by @dependabot in https://github.com/flipt-io/flipt/pull/951
    • Bump @babel/core from 7.18.6 to 7.18.9 in /ui by @dependabot in https://github.com/flipt-io/flipt/pull/957
    • Fix ui button spacing issues and other small issues by @markphelps in https://github.com/flipt-io/flipt/pull/966
    • Bump github.com/sirupsen/logrus from 1.8.1 to 1.9.0 by @dependabot in https://github.com/flipt-io/flipt/pull/952

    Full Changelog: https://github.com/flipt-io/flipt/compare/v1.9.0...v1.10.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(203 bytes)
    flipt_1.10.0_linux_x86_64.tar.gz(9.13 MB)
    flipt_1.10.0_linux_x86_64.tar.gz.sbom(69.40 KB)
  • v1.9.0(Jul 6, 2022)

    What's Changed

    • Bump playwright from 1.20.2 to 1.22.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/854
    • Bump playwright-core from 1.20.2 to 1.22.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/855
    • Bump @playwright/test from 1.20.2 to 1.22.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/856
    • Bump @babel/plugin-proposal-decorators from 7.17.9 to 7.18.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/865
    • Bump github.com/spf13/viper from 1.11.0 to 1.12.0 by @dependabot in https://github.com/markphelps/flipt/pull/866
    • Bump bufbuild/buf-setup-action from 1.4.0 to 1.5.0 by @dependabot in https://github.com/markphelps/flipt/pull/870
    • Bump golang.org/x/tools from 0.1.10 to 0.1.11 in /_tools by @dependabot in https://github.com/markphelps/flipt/pull/882
    • Bump jest-playwright-preset from 1.7.0 to 1.7.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/880
    • Bump @babel/preset-env from 7.16.11 to 7.18.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/879
    • Bump @babel/runtime-corejs2 from 7.17.9 to 7.18.3 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/877
    • Bump buefy from 0.9.20 to 0.9.21 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/885
    • Bump @babel/plugin-transform-runtime from 7.17.0 to 7.18.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/884
    • Bump @webpack-cli/serve from 1.6.1 to 1.7.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/886
    • Bump webpack-cli from 4.9.2 to 4.10.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/888
    • Bump vue-router from 3.5.3 to 3.5.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/887
    • Bump @babel/plugin-syntax-jsx from 7.16.7 to 7.17.12 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/890
    • Bump jpeg-js from 0.4.3 to 0.4.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/889
    • Bump aquasecurity/trivy-action from 0.3.0 to 0.4.1 by @dependabot in https://github.com/markphelps/flipt/pull/891
    • Moving imports to vanity url in prep for move by @markphelps in https://github.com/markphelps/flipt/pull/898
    • Ignore major dependabot upgrades by @markphelps in https://github.com/markphelps/flipt/pull/900
    • Bump github.com/mattn/go-sqlite3 from 1.14.10 to 1.14.13 by @dependabot in https://github.com/markphelps/flipt/pull/901
    • Bump github.com/spf13/cobra from 1.4.0 to 1.5.0 by @dependabot in https://github.com/markphelps/flipt/pull/899
    • Update flipt-grpc-go version and path by @markphelps in https://github.com/markphelps/flipt/pull/906
    • Fix helm chart by @markphelps in https://github.com/markphelps/flipt/pull/907
    • Ignore various filetypes/folders for Actions by @markphelps in https://github.com/markphelps/flipt/pull/908
    • Bump github.com/stretchr/testify from 1.7.2 to 1.7.5 by @dependabot in https://github.com/markphelps/flipt/pull/905
    • WIP: Upgrade to node 18 by @markphelps in https://github.com/markphelps/flipt/pull/911
    • Bump @babel/plugin-proposal-function-sent from 7.17.12 to 7.18.6 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/912
    • Deyarn by @markphelps in https://github.com/markphelps/flipt/pull/916
    • Update Playwright tests by @markphelps in https://github.com/markphelps/flipt/pull/919
    • Bump github.com/mattn/go-sqlite3 from 1.14.13 to 1.14.14 by @dependabot in https://github.com/markphelps/flipt/pull/913
    • Bump github.com/stretchr/testify from 1.7.5 to 1.8.0 by @dependabot in https://github.com/markphelps/flipt/pull/920
    • Bump webpack-dev-server from 4.9.2 to 4.9.3 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/918
    • Bump babel-jest from 28.1.0 to 28.1.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/915
    • Bump axios from 0.26.1 to 0.27.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/896
    • Switching to Vite for UI Dev by @markphelps in https://github.com/markphelps/flipt/pull/924
    • Fix playwright and enable in ITs by @markphelps in https://github.com/markphelps/flipt/pull/925
    • Dont log from telemetry client by @markphelps in https://github.com/markphelps/flipt/pull/926
    • Automate release by @markphelps in https://github.com/markphelps/flipt/pull/927
    • Update Changelog for release by @markphelps in https://github.com/markphelps/flipt/pull/928

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.8.3...v1.9.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.9.0_linux_x86_64.tar.gz(8.68 MB)
    flipt_1.9.0_linux_x86_64.tar.gz.sbom(62.75 KB)
  • v1.8.3(Jun 9, 2022)

    What's Changed

    • Merge Releases/v1.8.2 by @markphelps in https://github.com/markphelps/flipt/pull/837
    • Bump bufbuild/buf-setup-action from 1.3.1 to 1.4.0 by @dependabot in https://github.com/markphelps/flipt/pull/831
    • Bump aquasecurity/trivy-action from 0.2.4 to 0.2.5 by @dependabot in https://github.com/markphelps/flipt/pull/829
    • Bump codecov/codecov-action from 3.0.0 to 3.1.0 by @dependabot in https://github.com/markphelps/flipt/pull/830
    • Bump github/codeql-action from 1 to 2 by @dependabot in https://github.com/markphelps/flipt/pull/838
    • Bump google.golang.org/grpc from 1.45.0 to 1.46.0 by @dependabot in https://github.com/markphelps/flipt/pull/832
    • Bump eslint-plugin-vue from 8.6.0 to 8.7.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/833
    • Bump docker/login-action from 1 to 2 by @dependabot in https://github.com/markphelps/flipt/pull/839
    • Bump docker/build-push-action from 2 to 3 by @dependabot in https://github.com/markphelps/flipt/pull/842
    • Bump docker/setup-buildx-action from 1 to 2 by @dependabot in https://github.com/markphelps/flipt/pull/841
    • Bump docker/setup-qemu-action from 1 to 2 by @dependabot in https://github.com/markphelps/flipt/pull/840
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.0 to 2.10.1 by @dependabot in https://github.com/markphelps/flipt/pull/852
    • Bump github.com/lib/pq from 1.10.5 to 1.10.6 by @dependabot in https://github.com/markphelps/flipt/pull/851
    • Bump github.com/Masterminds/squirrel from 1.5.2 to 1.5.3 by @dependabot in https://github.com/markphelps/flipt/pull/853
    • Bump github.com/prometheus/client_golang from 1.12.1 to 1.12.2 by @dependabot in https://github.com/markphelps/flipt/pull/848
    • Bump aquasecurity/trivy-action from 0.2.5 to 0.3.0 by @dependabot in https://github.com/markphelps/flipt/pull/845
    • Bump golangci/golangci-lint-action from 3.1.0 to 3.2.0 by @dependabot in https://github.com/markphelps/flipt/pull/844
    • Bump babel-loader from 8.2.4 to 8.2.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/834
    • Bump babel-jest from 27.5.1 to 28.1.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/843
    • 1.17 by @markphelps in https://github.com/markphelps/flipt/pull/858
    • Bump webpack-dev-server from 4.8.1 to 4.9.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/860
    • Bump alpine from 3.15.4 to 3.16.0 in /build by @dependabot in https://github.com/markphelps/flipt/pull/862
    • Bump @babel/plugin-proposal-function-sent from 7.16.7 to 7.17.12 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/859
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.1 to 2.10.2 by @dependabot in https://github.com/markphelps/flipt/pull/861
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.1 to 2.10.2 in /_tools by @dependabot in https://github.com/markphelps/flipt/pull/867
    • Bump google.golang.org/grpc from 1.46.2 to 1.47.0 by @dependabot in https://github.com/markphelps/flipt/pull/868
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.2 to 2.10.3 in /_tools by @dependabot in https://github.com/markphelps/flipt/pull/871
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.10.2 to 2.10.3 by @dependabot in https://github.com/markphelps/flipt/pull/869
    • Bump github.com/stretchr/testify from 1.7.1 to 1.7.2 by @dependabot in https://github.com/markphelps/flipt/pull/873
    • Re-allow rules to be created without variants by @markphelps in https://github.com/markphelps/flipt/pull/876

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.8.2...v1.8.3

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.8.3_linux_x86_64.tar.gz(7.99 MB)
    flipt_1.8.3_linux_x86_64.tar.gz.sbom(62.54 KB)
  • v1.8.2(Apr 28, 2022)

  • v1.8.1(Apr 18, 2022)

    What's Changed

    • Bump github.com/lib/pq from 1.10.4 to 1.10.5 by @dependabot in https://github.com/markphelps/flipt/pull/792
    • Bump moment from 2.29.1 to 2.29.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/793
    • Bump aquasecurity/trivy-action from 0.2.2 to 0.2.3 by @dependabot in https://github.com/markphelps/flipt/pull/796
    • Bump @babel/core from 7.17.8 to 7.17.9 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/798
    • Bump eslint-plugin-vue from 8.5.0 to 8.6.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/799
    • Bump eslint-plugin-import from 2.25.4 to 2.26.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/800
    • Bump semver from 7.3.5 to 7.3.6 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/797
    • Bump @babel/plugin-proposal-decorators from 7.17.8 to 7.17.9 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/801
    • Bump codecov/codecov-action from 2.1.0 to 3.0.0 by @dependabot in https://github.com/markphelps/flipt/pull/795
    • Bump actions/setup-go from 2 to 3 by @dependabot in https://github.com/markphelps/flipt/pull/794
    • Upgrade go-chi/chi to commit that handles Vary header properly by @albertchae in https://github.com/markphelps/flipt/pull/803
    • docs: add albertchae as a contributor for code by @allcontributors in https://github.com/markphelps/flipt/pull/804
    • Bump github.com/spf13/viper from 1.10.1 to 1.11.0 by @dependabot in https://github.com/markphelps/flipt/pull/806
    • [Logos] Add Rokt by @pietdaniel in https://github.com/markphelps/flipt/pull/809
    • master->main by @markphelps in https://github.com/markphelps/flipt/pull/815
    • Rename main workflows by @markphelps in https://github.com/markphelps/flipt/pull/816
    • Bump aquasecurity/trivy-action from 0.2.3 to 0.2.4 by @dependabot in https://github.com/markphelps/flipt/pull/810
    • Bump async from 2.6.3 to 2.6.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/808
    • Bump semver from 7.3.6 to 7.3.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/812
    • Bump webpack-dev-server from 4.7.4 to 4.8.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/811
    • Bump buefy from 0.9.19 to 0.9.20 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/818
    • Releases 1.8.1 by @markphelps in https://github.com/markphelps/flipt/pull/821

    New Contributors

    • @albertchae made their first contribution in https://github.com/markphelps/flipt/pull/803

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.8.0...v1.8.1

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.8.1_linux_x86_64.tar.gz(7.97 MB)
    flipt_1.8.1_linux_x86_64.tar.gz.sbom(62.39 KB)
  • v1.8.0(Apr 6, 2022)

    What's Changed

    • Bump node-forge from 1.2.1 to 1.3.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/765
    • Bump @babel/runtime-corejs2 from 7.17.2 to 7.17.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/763
    • Proto v1.28 by @markphelps in https://github.com/markphelps/flipt/pull/768
    • Bump @babel/core from 7.17.5 to 7.17.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/762
    • Bump eslint-config-prettier from 8.3.0 to 8.5.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/761
    • Bump alpine from 3.15.1 to 3.15.2 in /build by @dependabot in https://github.com/markphelps/flipt/pull/769
    • Bump bufbuild/buf-setup-action from 1.1.0 to 1.3.0 by @dependabot in https://github.com/markphelps/flipt/pull/771
    • Bump actions/cache from 2 to 3 by @dependabot in https://github.com/markphelps/flipt/pull/770
    • Bump babel-loader from 8.2.3 to 8.2.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/776
    • Bump @babel/plugin-proposal-decorators from 7.17.2 to 7.17.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/775
    • Bump eslint-plugin-vue from 8.4.1 to 8.5.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/772
    • Bump alpine from 3.15.2 to 3.15.3 in /build by @dependabot in https://github.com/markphelps/flipt/pull/778
    • Helm by @markphelps in https://github.com/markphelps/flipt/pull/777
    • Bump playwright-core from 1.19.2 to 1.20.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/773
    • Bump playwright from 1.19.2 to 1.20.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/774
    • Discord by @markphelps in https://github.com/markphelps/flipt/pull/786
    • Bump alpine from 3.15.3 to 3.15.4 in /build by @dependabot in https://github.com/markphelps/flipt/pull/787
    • Bump prettier from 2.5.1 to 2.6.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/785
    • Bump bufbuild/buf-setup-action from 1.3.0 to 1.3.1 by @dependabot in https://github.com/markphelps/flipt/pull/780
    • Bump chalk from 5.0.0 to 5.0.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/782
    • Bump @babel/plugin-transform-modules-commonjs from 7.16.8 to 7.17.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/781
    • Bump playwright from 1.20.1 to 1.20.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/784
    • Bump @playwright/test from 1.19.2 to 1.20.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/783
    • Anonymous Telemetry by @markphelps in https://github.com/markphelps/flipt/pull/790

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.7.0...v1.8.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.8.0_linux_x86_64.tar.gz(7.94 MB)
    flipt_1.8.0_linux_x86_64.tar.gz.sbom(62.31 KB)
  • v1.7.0(Mar 22, 2022)

    What's Changed

    • fuzz validate; trimpath by @markphelps in https://github.com/markphelps/flipt/pull/722
    • Bump ora from 6.0.1 to 6.1.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/725
    • Bump playwright from 1.18.1 to 1.19.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/709
    • Bump actions/setup-node from 2.5.1 to 3 by @dependabot in https://github.com/markphelps/flipt/pull/723
    • Bump playwright-core from 1.18.1 to 1.19.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/726
    • Bump google.golang.org/grpc from 1.44.0 to 1.45.0 by @dependabot in https://github.com/markphelps/flipt/pull/734
    • Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/markphelps/flipt/pull/731
    • Bump github.com/spf13/cobra from 1.3.0 to 1.4.0 by @dependabot in https://github.com/markphelps/flipt/pull/736
    • Bump bufbuild/buf-setup-action from 1.0.0 to 1.1.0 by @dependabot in https://github.com/markphelps/flipt/pull/730
    • Bump @babel/core from 7.17.2 to 7.17.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/729
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.7.3 to 2.8.0 by @dependabot in https://github.com/markphelps/flipt/pull/728
    • Bump golangci/golangci-lint-action from 2.5.2 to 3.1.0 by @dependabot in https://github.com/markphelps/flipt/pull/724
    • Bump jest-runner from 27.4.6 to 27.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/735
    • create branch for licensed updates by @markphelps in https://github.com/markphelps/flipt/pull/737
    • Bump axios from 0.26.0 to 0.26.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/740
    • Bump @playwright/test from 1.18.1 to 1.19.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/742
    • Bump webpack-dev-server from 4.7.3 to 4.7.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/746
    • License updates for master by @github-actions in https://github.com/markphelps/flipt/pull/750
    • Bump node-notifier from 10.0.0 to 10.0.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/748
    • Tired of licensed not working correctly by @markphelps in https://github.com/markphelps/flipt/pull/752
    • Bump buefy from 0.9.16 to 0.9.19 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/739
    • Bump github.com/stretchr/testify from 1.7.0 to 1.7.1 by @dependabot in https://github.com/markphelps/flipt/pull/753
    • Update issue tmpl by @markphelps in https://github.com/markphelps/flipt/pull/755
    • Add ability to quickly duplicate constraints/variants by @markphelps in https://github.com/markphelps/flipt/pull/754
    • Bump alpine from 3.15.0 to 3.15.1 in /build by @dependabot in https://github.com/markphelps/flipt/pull/757
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.8.0 to 2.9.0 by @dependabot in https://github.com/markphelps/flipt/pull/756
    • Disallow rule create with no distributions; update imports by @markphelps in https://github.com/markphelps/flipt/pull/759
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.9.0 to 2.10.0 by @dependabot in https://github.com/markphelps/flipt/pull/764

    New Contributors

    • @github-actions made their first contribution in https://github.com/markphelps/flipt/pull/750

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.6.3...v1.7.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.7.0_linux_x86_64.tar.gz(7.79 MB)
    flipt_1.7.0_linux_x86_64.tar.gz.sbom(59.65 KB)
  • v1.6.3(Feb 21, 2022)

    What's Changed

    • Add test for expected migration version count by @markphelps in https://github.com/markphelps/flipt/pull/712
    • Fuzz Testing by @markphelps in https://github.com/markphelps/flipt/pull/713
    • Bump buefy from 0.9.14 to 0.9.16 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/717
    • Bump jest-circus from 27.4.6 to 27.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/718
    • Bump bufbuild/buf-setup-action from 0.7.0 to 1.0.0 by @dependabot in https://github.com/markphelps/flipt/pull/715
    • Licensed by @markphelps in https://github.com/markphelps/flipt/pull/714
    • Bump babel-jest from 27.4.6 to 27.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/720
    • Mv config testdata up one dir by @markphelps in https://github.com/markphelps/flipt/pull/721

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.6.2...v1.6.3

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.6.3_linux_x86_64.tar.gz(7.77 MB)
    flipt_1.6.3_linux_x86_64.tar.gz.sbom(59.65 KB)
  • v1.6.2(Feb 19, 2022)

    What's Changed

    • Bump axios from 0.21.4 to 0.26.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/703
    • Bump github.com/markphelps/flipt-grpc-go from 0.5.0 to 0.6.0 by @dependabot in https://github.com/markphelps/flipt/pull/707
    • Bump jest from 27.4.7 to 27.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/701
    • Bump @babel/plugin-proposal-decorators from 7.16.7 to 7.17.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/702
    • Fixes segment export/import match_type by @markphelps in https://github.com/markphelps/flipt/pull/711

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.6.1...v1.6.2

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.6.2_linux_x86_64.tar.gz(7.73 MB)
    flipt_1.6.2_linux_x86_64.tar.gz.sbom(59.65 KB)
  • v1.6.1(Feb 13, 2022)

    tl;dr

    This is a re-do of 1.6.0 that did not include the necessary code to identify that there were new migrations added at startup.

    See: #700

    Added

    Changed

    All Changes

    • Bump @babel/runtime-corejs2 from 7.16.3 to 7.16.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/640
    • Upgrade to ES syntax or something idk; also modify some goreleaser se… by @markphelps in https://github.com/markphelps/flipt/pull/647
    • Bump ora from 4.1.1 to 6.0.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/557
    • Bump chalk from 4.1.2 to 5.0.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/628
    • Bump follow-redirects from 1.14.5 to 1.14.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/648
    • Bump shelljs from 0.8.4 to 0.8.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/649
    • UI update show by @markphelps in https://github.com/markphelps/flipt/pull/650
    • Bump copy-webpack-plugin from 5.1.2 to 6.4.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/638
    • Add missing jest peer dependencies (yarn) by @markphelps in https://github.com/markphelps/flipt/pull/651
    • Bump eslint-plugin-vue from 7.20.0 to 8.3.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/656
    • Bump eslint-config-standard from 14.1.1 to 15.0.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/655
    • Bump node-notifier from 8.0.2 to 10.0.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/652
    • Bump jest from 27.0.6 to 27.4.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/653
    • Bump github.com/prometheus/client_golang from 1.11.0 to 1.12.0 by @dependabot in https://github.com/markphelps/flipt/pull/657
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.7.2 to 2.7.3 by @dependabot in https://github.com/markphelps/flipt/pull/658
    • Rootless by @markphelps in https://github.com/markphelps/flipt/pull/659
    • Fix webpack & eslint setup by @amayvs in https://github.com/markphelps/flipt/pull/667
    • docs: add amayvs as a contributor for code by @allcontributors in https://github.com/markphelps/flipt/pull/668
    • Merge 1.5.1 bugfix into master by @markphelps in https://github.com/markphelps/flipt/pull/669
    • Bump google.golang.org/grpc from 1.43.0 to 1.44.0 by @dependabot in https://github.com/markphelps/flipt/pull/666
    • Bump eslint-plugin-prettier from 3.4.1 to 4.0.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/661
    • Bump eslint-config-prettier from 6.15.0 to 8.3.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/660
    • Bump webpack-cli from 4.9.1 to 4.9.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/671
    • Bump uuid from 3.4.0 to 8.2.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/654
    • Devcontainer by @markphelps in https://github.com/markphelps/flipt/pull/672
    • Taskfile by @markphelps in https://github.com/markphelps/flipt/pull/673
    • Bump github.com/prometheus/client_golang from 1.12.0 to 1.12.1 by @dependabot in https://github.com/markphelps/flipt/pull/678
    • Bump @babel/core from 7.16.7 to 7.16.12 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/674
    • Bump @babel/plugin-transform-runtime from 7.16.8 to 7.16.10 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/676
    • Bump eslint-plugin-vue from 8.3.0 to 8.4.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/677
    • Bump @babel/preset-env from 7.16.8 to 7.16.11 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/679
    • Bump @playwright/test from 1.17.2 to 1.18.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/675
    • Bump playwright from 1.17.2 to 1.18.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/670
    • Flag variant attachment by @kevin-ip in https://github.com/markphelps/flipt/pull/685
    • docs: add kevin-ip as a contributor for code by @allcontributors in https://github.com/markphelps/flipt/pull/693
    • Bump aquasecurity/trivy-action from 0.2.1 to 0.2.2 by @dependabot in https://github.com/markphelps/flipt/pull/686
    • Add Paradigm on README by @kevin-ip in https://github.com/markphelps/flipt/pull/692
    • Bump @babel/runtime-corejs2 from 7.16.7 to 7.17.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/696
    • Bump eslint-plugin-vue from 8.4.0 to 8.4.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/688
    • Bump jest-environment-node from 27.4.6 to 27.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/695
    • Bump @babel/plugin-transform-runtime from 7.16.10 to 7.17.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/691
    • Bump @babel/core from 7.16.12 to 7.17.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/694
    • Go 1.17 by @markphelps in https://github.com/markphelps/flipt/pull/684
    • Bump follow-redirects from 1.14.7 to 1.14.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/698
    • Attachment yaml by @markphelps in https://github.com/markphelps/flipt/pull/699

    New Contributors

    • @amayvs made their first contribution in https://github.com/markphelps/flipt/pull/667
    • @kevin-ip made their first contribution in https://github.com/markphelps/flipt/pull/685

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.5.0...v1.6.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(201 bytes)
    flipt_1.6.1_linux_x86_64.tar.gz(7.73 MB)
    flipt_1.6.1_linux_x86_64.tar.gz.sbom(59.65 KB)
  • v1.5.1(Jan 27, 2022)

  • v1.5.0(Jan 11, 2022)

    ⚠️ Breaking Change ⚠️

    This release inadvertently introduced a breaking change with how null literal is handled in the context map in the REST API /evaluate method.

    See https://github.com/markphelps/flipt/issues/664 for more info.

    A 1.5.1 version will be released with a fix for the issue.

    What's Changed

    • Update DEVELOPMENT.md by @eltociear in https://github.com/markphelps/flipt/pull/522
    • Bump actions/setup-node from 2.3.0 to 2.4.0 by @dependabot in https://github.com/markphelps/flipt/pull/521
    • docs: add eltociear as a contributor for doc by @allcontributors in https://github.com/markphelps/flipt/pull/523
    • Bump path-parse from 1.0.6 to 1.0.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/524
    • Bump url-parse from 1.5.1 to 1.5.3 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/526
    • Bump github.com/spf13/cobra from 1.1.3 to 1.2.1 by @dependabot in https://github.com/markphelps/flipt/pull/496
    • Bump google.golang.org/grpc from 1.39.1 to 1.40.0 by @dependabot in https://github.com/markphelps/flipt/pull/527
    • Bump @babel/runtime-corejs2 from 7.12.5 to 7.15.3 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/525
    • Bump vue and vue-template-compiler in /ui by @dependabot in https://github.com/markphelps/flipt/pull/501
    • Replace hdrhistogram dep with moved version by @markphelps in https://github.com/markphelps/flipt/pull/529
    • Bump webpack-bundle-analyzer from 4.4.1 to 4.4.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/533
    • Bump vue-loader from 15.9.6 to 15.9.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/532
    • Bump @babel/plugin-proposal-function-sent from 7.12.13 to 7.14.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/531
    • Bump github.com/markphelps/flipt-grpc-go from 0.3.0 to 0.4.0 by @dependabot in https://github.com/markphelps/flipt/pull/534
    • Bump aquasecurity/trivy-action from 0.0.19 to 0.0.20 by @dependabot in https://github.com/markphelps/flipt/pull/535
    • Bump jest from 26.6.3 to 27.0.6 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/538
    • Bump eslint-plugin-vue from 7.13.0 to 7.16.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/539
    • Bump jpeg-js from 0.4.2 to 0.4.3 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/537
    • Bump @babel/plugin-syntax-jsx from 7.12.1 to 7.14.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/541
    • Bump eslint-plugin-import from 2.22.1 to 2.24.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/540
    • Bump chalk from 3.0.0 to 4.1.2 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/512
    • Bump codecov/codecov-action from 2.0.2 to 2.0.3 by @dependabot in https://github.com/markphelps/flipt/pull/542
    • Bump github.com/lib/pq from 1.10.2 to 1.10.3 by @dependabot in https://github.com/markphelps/flipt/pull/549
    • Bump babel-jest from 27.0.2 to 27.1.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/546
    • Bump @babel/plugin-transform-runtime from 7.14.5 to 7.15.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/544
    • Bump axios from 0.21.1 to 0.21.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/552
    • Bump github.com/fatih/color from 1.12.0 to 1.13.0 by @dependabot in https://github.com/markphelps/flipt/pull/560
    • Bump codecov/codecov-action from 2.0.3 to 2.1.0 by @dependabot in https://github.com/markphelps/flipt/pull/554
    • Bump tmpl from 1.0.4 to 1.0.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/559
    • Bump github.com/spf13/viper from 1.8.1 to 1.9.0 by @dependabot in https://github.com/markphelps/flipt/pull/558
    • Bump eslint-plugin-node from 10.0.0 to 11.1.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/545
    • Bump actions/setup-node from 2.4.0 to 2.4.1 by @dependabot in https://github.com/markphelps/flipt/pull/565
    • Bump @babel/plugin-transform-modules-commonjs from 7.14.5 to 7.15.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/566
    • Bump babel-jest from 27.1.0 to 27.2.4 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/567
    • Bump aquasecurity/trivy-action from 0.0.20 to 0.0.22 by @dependabot in https://github.com/markphelps/flipt/pull/578
    • Bump github.com/Masterminds/squirrel from 1.5.0 to 1.5.1 by @dependabot in https://github.com/markphelps/flipt/pull/572
    • Use coverpkg by @markphelps in https://github.com/markphelps/flipt/pull/585
    • Bump github.com/mattn/go-sqlite3 from 1.14.8 to 1.14.9 by @dependabot in https://github.com/markphelps/flipt/pull/574
    • Keep base image for production image up-to-date by @sagikazarmark in https://github.com/markphelps/flipt/pull/575
    • docs: add sagikazarmark as a contributor for code by @allcontributors in https://github.com/markphelps/flipt/pull/582
    • Bump google.golang.org/grpc from 1.40.0 to 1.42.0 by @dependabot in https://github.com/markphelps/flipt/pull/581
    • Bump alpine from 3.10.9 to 3.14.3 in /build by @dependabot in https://github.com/markphelps/flipt/pull/590
    • Bump aquasecurity/trivy-action from 0.0.22 to 0.1.0 by @dependabot in https://github.com/markphelps/flipt/pull/588
    • Revert "Use coverpkg" by @markphelps in https://github.com/markphelps/flipt/pull/591
    • Bump github.com/lib/pq from 1.10.3 to 1.10.4 by @dependabot in https://github.com/markphelps/flipt/pull/587
    • Buf by @markphelps in https://github.com/markphelps/flipt/pull/594
    • Bump github.com/gofrs/uuid from 3.4.0+incompatible to 4.1.0+incompatible by @dependabot in https://github.com/markphelps/flipt/pull/593
    • Bump github.com/markphelps/flipt-grpc-go from 0.4.0 to 0.5.0 by @dependabot in https://github.com/markphelps/flipt/pull/598
    • Bump alpine from 3.14.3 to 3.15.0 in /build by @dependabot in https://github.com/markphelps/flipt/pull/599
    • Bump github.com/prometheus/client_golang from 1.7.1 to 1.11.0 by @dependabot in https://github.com/markphelps/flipt/pull/597
    • Bump github.com/gofrs/uuid from 4.1.0+incompatible to 4.2.0+incompatible by @dependabot in https://github.com/markphelps/flipt/pull/601
    • Bump webpack-dev-server from 3.11.2 to 4.6.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/600
    • Bump github.com/spf13/viper from 1.7.1 to 1.9.0 by @dependabot in https://github.com/markphelps/flipt/pull/596
    • Add action to lint/check protos by @markphelps in https://github.com/markphelps/flipt/pull/605
    • Bump github.com/Masterminds/squirrel from 1.5.1 to 1.5.2 by @dependabot in https://github.com/markphelps/flipt/pull/604
    • Bump aquasecurity/trivy-action from 0.1.0 to 0.2.0 by @dependabot in https://github.com/markphelps/flipt/pull/602
    • Bump bufbuild/buf-setup-action from 0.6.0 to 0.7.0 by @dependabot in https://github.com/markphelps/flipt/pull/610
    • Bump actions/setup-node from 2.4.1 to 2.5.0 by @dependabot in https://github.com/markphelps/flipt/pull/611
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.7.0 to 2.7.1 by @dependabot in https://github.com/markphelps/flipt/pull/607
    • Bump github.com/uber/jaeger-client-go from 2.29.1+incompatible to 2.30.0+incompatible by @dependabot in https://github.com/markphelps/flipt/pull/613
    • Bump github.com/spf13/viper from 1.9.0 to 1.10.0 by @dependabot in https://github.com/markphelps/flipt/pull/614
    • Bump playwright-core from 1.5.2 to 1.17.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/612
    • Bump node-notifier from 8.0.1 to 10.0.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/569
    • Add Sonatype Nancy by @markphelps in https://github.com/markphelps/flipt/pull/620
    • Replace with jwt-go by @markphelps in https://github.com/markphelps/flipt/pull/621
    • Fix grpc insecure by @markphelps in https://github.com/markphelps/flipt/pull/622
    • [UI] Upgrade packages and engines by @pietdaniel in https://github.com/markphelps/flipt/pull/625
    • docs: add pietdaniel as a contributor for code by @allcontributors in https://github.com/markphelps/flipt/pull/626
    • Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.7.1 to 2.7.2 by @dependabot in https://github.com/markphelps/flipt/pull/619
    • Bump github.com/spf13/viper from 1.10.0 to 1.10.1 by @dependabot in https://github.com/markphelps/flipt/pull/618
    • Bump eslint from 6.8.0 to 8.2.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/592
    • Bump @babel/plugin-transform-modules-commonjs from 7.16.0 to 7.16.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/630
    • Bump @babel/core from 7.16.0 to 7.16.5 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/631
    • Bump prettier from 2.5.0 to 2.5.1 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/629
    • Actions cleanup by @markphelps in https://github.com/markphelps/flipt/pull/632
    • Bump eslint-plugin-promise from 4.3.1 to 6.0.0 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/627
    • Bump github.com/spf13/cobra from 1.1.3 to 1.3.0 by @dependabot in https://github.com/markphelps/flipt/pull/617
    • Rename db pkg by @markphelps in https://github.com/markphelps/flipt/pull/634
    • Bump github.com/mattn/go-sqlite3 from 1.14.9 to 1.14.10 by @dependabot in https://github.com/markphelps/flipt/pull/635
    • Bump actions/setup-node from 2.5.0 to 2.5.1 by @dependabot in https://github.com/markphelps/flipt/pull/636
    • Bump @babel/plugin-proposal-decorators from 7.16.4 to 7.16.7 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/639
    • Fix tools by @markphelps in https://github.com/markphelps/flipt/pull/641
    • Bump github.com/go-chi/chi from 4.0.3-0.20191031103402-221acf29d02b+incompatible to 4.1.2+incompatible by @dependabot in https://github.com/markphelps/flipt/pull/645
    • Bump @babel/plugin-transform-modules-commonjs from 7.16.5 to 7.16.8 in /ui by @dependabot in https://github.com/markphelps/flipt/pull/646
    • Bump aquasecurity/trivy-action from 0.2.0 to 0.2.1 by @dependabot in https://github.com/markphelps/flipt/pull/643

    New Contributors

    • @eltociear made their first contribution in https://github.com/markphelps/flipt/pull/522
    • @pietdaniel made their first contribution in https://github.com/markphelps/flipt/pull/625

    Full Changelog: https://github.com/markphelps/flipt/compare/v1.4.0...v1.5.0

    Source code(tar.gz)
    Source code(zip)
    checksums.txt(98 bytes)
    flipt_1.5.0_linux_x86_64.tar.gz(7.48 MB)
  • v1.4.0(Aug 7, 2021)

    • PR #520 Prettify everything
    • PR #519 docs: add itaischwartz as a contributor for code
    • PR #518 Feature: batch evaluate exclude not found
    • PR #517 Feature: Add commit hash to dev build
    • PR #516 bugfix: Fix corrupted rule issue
    • PR #514 Bump google.golang.org/grpc from 1.39.0 to 1.39.1
    • PR #511 Bump aquasecurity/trivy-action from 0.0.18 to 0.0.19
    • PR #510 Bump @babel/plugin-transform-runtime from 7.13.15 to 7.14.5 in /ui
    • PR #508 Bump codecov/codecov-action from 1 to 2.0.2
    • PR #507 Bump actions/setup-node from 2.2.0 to 2.3.0
    • PR #505 Bump prettier from 1.19.1 to 2.3.2 in /ui
    • PR #504 Bump optimize-css-assets-webpack-plugin from 5.0.4 to 6.0.1 in /ui
    • PR #500 Bump github.com/mattn/go-sqlite3 from 1.14.7 to 1.14.8
    • PR #499 Bump eslint-plugin-vue from 6.2.2 to 7.13.0 in /ui
    • PR #498 Bump actions/setup-node from 2.1.5 to 2.2.0
    • PR #497 Build IT image and use for ITs
    • PR #494 Bump github.com/prometheus/client_golang from 1.7.1 to 1.11.0
    • PR #493 Bump google.golang.org/grpc from 1.38.0 to 1.39.0
    • PR #492 Go embed
    • PR #489 Bump google.golang.org/protobuf from 1.27.0 to 1.27.1
    • PR #488 Bump color-string from 1.5.4 to 1.5.5 in /ui
    • PR #487 Bump @babel/preset-env from 7.12.1 to 7.14.7 in /ui
    • PR #485 Bump github.com/spf13/viper from 1.8.0 to 1.8.1
    • PR #484 Bump google.golang.org/protobuf from 1.26.0 to 1.27.0
    • PR #483 Bump github.com/spf13/viper from 1.7.1 to 1.8.0
    • PR #482 Native goreleaser

    Docker images

    • docker pull markphelps/flipt:v1.4.0
    • docker pull ghcr.io/markphelps/flipt:v1.4.0
    Source code(tar.gz)
    Source code(zip)
    checksums.txt(98 bytes)
    flipt_1.4.0_linux_x86_64.tar.gz(7.57 MB)
  • v1.2.0(Feb 14, 2021)

  • v1.1.0(Jan 16, 2021)

    • PR #376 Batch evaluate ignore disabled flags
    • PR #372 Bump node-notifier from 6.0.0 to 8.0.1 in /ui
    • PR #371 Bump github.com/prometheus/client_golang from 1.8.0 to 1.9.0
    • PR #370 Try to use docker buildx action with build cache
    • PR #369 Bump ini from 1.3.5 to 1.3.7 in /ui
    • PR #366 Bump google.golang.org/grpc from 1.33.2 to 1.34.0
    • PR #365 Bump github.com/lib/pq from 1.8.0 to 1.9.0
    • PR #364 Bump gopkg.in/yaml.v2 from 2.3.0 to 2.4.0
    • PR #363 Bump github.com/Masterminds/squirrel from 1.4.0 to 1.5.0
    • PR #362 Bump github.com/mattn/go-sqlite3 from 1.14.4 to 1.14.5
    • PR #361 Ui licenses
    • PR #360 Bump google.golang.org/grpc from 1.33.1 to 1.33.2
    • PR #359 Bump github.com/grpc-ecosystem/grpc-gateway from 1.15.2 to 1.16.0
    • PR #358 Bump github.com/fatih/color from 1.9.0 to 1.10.0
    • PR #357 Update some yarn deps
    Source code(tar.gz)
    Source code(zip)
    checksums.txt(98 bytes)
    flipt_1.1.0_linux_x86_64.tar.gz(8.68 MB)
Owner
Mark Phelps
Mark Phelps
Flagr is a feature flagging, A/B testing and dynamic configuration microservice

Introduction Flagr is an open source Go service that delivers the right experience to the right entity and monitors the impact. It provides feature fl

Checkr 2.1k Dec 25, 2022
Flagr is an open source Go service that delivers the right experience to the right entity and monitors the impact.

Flagr is an open source Go service that delivers the right experience to the right entity and monitors the impact. It provides feature flags, experimentation (A/B testing), and dynamic configuration. It has clear swagger REST APIs for flags management and flag evaluation.

null 2.1k Dec 25, 2022
CasaOS - A simple, easy-to-use, elegant open-source home server system.

CasaOS - A simple, easy-to-use, elegant open-source home server system. CasaOS is an open-source home server system based on the Docker ecosystem and

IceWhale 8.1k Jan 8, 2023
The Zuri Core is an open-source API that serves as the backend and backbone of Zuri Chat

The Zuri Core is an open-source API that serves as the backend and backbone of Zuri Chat

Zuri Chat 131 Dec 26, 2022
RoadRunner: an open-source high-performance PHP application server, load balancer, and process manager

RoadRunner is an open-source (MIT licensed) high-performance PHP application server, load balancer, and process manager. It supports running as a serv

Spiral Scout 0 Jan 13, 2022
Go package for the BeagleBone open source hardware

go-beaglebone Go package for the BeagleBone open source hardware Also check out https://github.com/SpaceLeap/go-embedded This package builds on top of

Space Leap 15 Jul 6, 2019
Open platform to collect and prioritize product feedback

Fider A platform to collect and organize customer feedback. Let your customers share, vote and discuss on suggestions they have to make your product e

getfider 2.1k Jan 1, 2023
A feature flag solution, with only a YAML file in the backend (S3, GitHub, HTTP, local file ...), no server to install, just add a file in a central system and refer to it. 🎛️

??️ go-feature-flag A feature flag solution, with YAML file in the backend (S3, GitHub, HTTP, local file ...). No server to install, just add a file i

Thomas Poignant 565 Dec 29, 2022
Package varflag implements command-line flag parsing into vars.Variables for easy type handling with additional flag types.

varflag Package flag implements command-line flag parsing into vars.Variables for easy type handling with additional flag types. varflag Flags String

Marko Kungla 2 Aug 2, 2022
Magma is an open-source software platform that gives network operators an open, flexible and extendable mobile core network solution.

Connecting the Next Billion People Magma is an open-source software platform that gives network operators an open, flexible and extendable mobile core

Magma 1.5k Dec 31, 2022
A Micro-UTP, plug-able sanity checker for any on-prem JFrog platform instance

hello-frog About this plugin This plugin is a template and a functioning example for a basic JFrog CLI plugin. This README shows the expected structur

rdar 0 Dec 7, 2021
A simple application, demo at this point, on how to pull a backup from Collibra on prem (say for Cohesity backup)

go-get-collibra-backup Introduction This repository is a very simple go application that's intended, at this point, more of a demonstration about how

David Thole 0 Dec 10, 2021
golang feature toggle library - a library to help make golang feature toggling clean and easy

toggle supports env_variable backed toggling. It can also be updated via a pubsub interface (tested w/ redis) 2 engines for toggle backing are include

John Calabrese 24 Mar 29, 2022
SigNoz helps developers monitor their applications & troubleshoot problems, an open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool

Monitor your applications and troubleshoot problems in your deployed applications, an open-source alternative to DataDog, New Relic, etc. Documentatio

SigNoz 4.7k Sep 24, 2021
An open-source, distributed, cloud-native CD (Continuous Delivery) product designed for developersAn open-source, distributed, cloud-native CD (Continuous Delivery) product designed for developers

Developer-oriented Continuous Delivery Product ⁣ English | 简体中文 Table of Contents Zadig Table of Contents What is Zadig Quick start How to use? How to

null 0 Oct 19, 2021
Upterm is an open-source solution for sharing terminal sessions instantly over the public internet via secure tunnels.

Upterm is an open-source solution for sharing terminal sessions instantly over the public internet via secure tunnels.

Owen Ou 570 Jan 8, 2023
Hybridnet is an open source container networking solution, integrated with Kubernetes and used officially by following well-known PaaS platforms

Hybridnet What is Hybridnet? Hybridnet is an open source container networking solution, integrated with Kubernetes and used officially by following we

Alibaba 164 Jan 4, 2023
Scout is a standalone open source software solution for DIY video security.

scout Scout is a standalone open source software solution for DIY video security. https://www.jonoton-innovation.com Features No monthly fees! Easy In

null 8 Oct 25, 2022
Argparse for golang. Just because `flag` sucks

Golang argparse Let's be honest -- Go's standard command line arguments parser flag terribly sucks. It cannot come anywhere close to the Python's argp

Alexey Kamenskiy 486 Dec 28, 2022