Featbit Versions Save

A feature flags service written in .NET

2.5.2

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/featbit/featbit/compare/2.5.1...2.5.2

2.5.1

6 months ago

What's Changed

Breaking Changes

  • Change the way to configure kafka in #503, check the appsetting.json section for more details
  • Change feature flag trigger method from put to post in #511

New Contributors

Full Changelog: https://github.com/featbit/featbit/compare/2.5.0...2.5.1

2.5.0

7 months ago

What's Changed

Full Changelog: https://github.com/featbit/featbit/compare/2.4.5...2.5.0

2.4.5

7 months ago

What's Changed

Full Changelog: https://github.com/featbit/featbit/compare/2.4.4...2.4.5

2.4.4

8 months ago

What's Changed

NOTE We have introduced flag change scheduling in this release; however, it is not ready yet and disabled by default for now (check #485 for more details). It will be available in the upcoming version.

Breaking Changes

We have introduced a breaking change to the code in #467, please make sure to run the following script against your MongoDB before upgrading

db.FeatureFlags.updateMany(
  {},
  [
    {
      $set: {
        rules: {
          $map: {
            input: "$rules",
            as: "rule",
            in: {
              $mergeObjects: [
                "$$rule",
                {
                  conditions: {
                    $map: {
                      input: "$$rule.conditions",
                      as: "condition",
                      in: {
                        $mergeObjects: [
                          "$$condition",
                          {
                            _id: UUID().toString().split('"')[1]
                          }
                        ]
                      }
                    }
                  }
                }
              ]
            }
          }
        }
      }
    }
  ]
)

Full Changelog: https://github.com/featbit/featbit/compare/2.4.3...2.4.4

2.4.4-rc1

8 months ago

What's Changed

Full Changelog: https://github.com/featbit/featbit/compare/2.4.3...2.4.4-rc1

2.4.3

9 months ago

What's Changed

New Contributors

Breaking Changes

We've introduced some breaking changes in this release

  • PR #476, which removes the zookeeper component, upgrade kafka and clickhouse-server.
  • PR #468, the da-server service now requires the complete Redis connection string. We need to specify REDIS_HOST REDIS_PORT REDIS_PASSWORD separately before, now we just need to set REDIS_URL.

Full Changelog: https://github.com/featbit/featbit/compare/2.4.2...2.4.3

2.4.2

9 months ago

What's Changed

Full Changelog: https://github.com/featbit/featbit/compare/2.4.1...2.4.2

2.4.1

10 months ago

What's Changed

Breaking Changes

We've introduced some breaking changes in PR #452 and #454. If you are upgrading from version 2.x to 2.4.1, please make sure to run the migration script in the release attachment against your MongoDB.

Full Changelog: https://github.com/featbit/featbit/compare/2.4.0...2.4.1

2.4.0

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/featbit/featbit/compare/2.3.2...2.4.0