Skip to content

1.0.0

Choose a tag to compare

@Meldiron Meldiron released this 18 Nov 17:04
· 26 commits to main since this release
6672bf6

1.0.0 Release

  • Default branch is now main
  • New config loading adapters: JSON, YAML, Dotenv
  • Breaking change requiring adapter when loading a config

Before:

use Utopia\Config\Config;
Config::load('codes', __DIR__.'/codes.php');

After:

use Utopia\Config\Config;
use Utopia\Config\Adapters\PHP;
Config::load('codes', __DIR__.'/codes.php', new PHP());

What's Changed

New Contributors

Full Changelog: 0.2.2...1.0.0