Changelog History
Page 7
-
v0.15.0.beta1
May 29, 2020 -
v0.14.1 Changes
May 23, 2020- ๐ฆ Patch to fix PluginManager
yarn addbug when there is nodependencieskey inpackage.json
- ๐ฆ Patch to fix PluginManager
-
v0.14.0 Changes
May 17, 2020๐ Release Notes
โก๏ธ You can update your Gemfile to remove the line pointing to the Liquid fork under
jaredcwhite, it's no longer necessary.โก๏ธ There's also an update to
start.jsyou can copy from the repository here.๐ More general information available in a blog post here.
๐ Changes
- ๐ Use
liquid-render-tagbackport gem and remove references to temporary GitHub fork of Liquid #52 (jaredcwhite) - ๐จ Refactor
Bridgetown::Siteinto multiple Concerns #51 (jaredcwhite) - ๐ Fix for
start.jsto eliminate junk terminal characters (jaredcwhite) - ๐ New Unified Plugins API with Builders, Source Manifests, and Autoreload #41 (jaredcwhite)
- โ Add a Posts page to the new site template #39 (andrewmcodes)
- โ Add
titleizeLiquid filter and improveslugifyfilter description #38 (jaredcwhite) - โ Add Bundler cache to the build GH action to improve test speed #40 (andrewmcodes)
- โฌ๏ธ Bump minimum Node requirement to 10.13 (jaredcwhite)
- ๐ Use
-
v0.13.0 Changes
May 05, 2020- ๐ง Configurable setting to allow executable Ruby code in Front Matter #9
- ๐ง Honor the configured site encoding when loading Liquid components #33
- ๐ Allow configuration file as well as site metadata file to pull YAML options out of an environment specific block #34
- โ Add Faraday to the default set of gems that get installed with Bridgetown #30
- โ Add blank favicon.ico file to prevent error when generating a new site for the first time #32 (jaredmoody)
-
v0.12.1 Changes
May 01, 2020- โก๏ธ Update the minimum Ruby version requirement to 2.5
-
v0.12.0 Changes
April 27, 2020๐ Happy Monday! Some much-needed improvements to the CLI experience of Bridgetown in this release. From the changelog:
- โ Add Concurrently and Browsersync for live reload, plus add new Yarn scripts #21. Take a look at the updated documentation [here]([https://www.bridgetownrb.com/docs/#quick-instructions]](https://www.bridgetownrb.com/docs/#quick-instructions%5D) and here.
- โ Add some color to terminal output
- โ Add code name for minor SemVer version updates
-
v0.11.2 Changes
April 24, 2020๐ A handy little collection of bug fixes and improvements.
- โ Add components source folder to sass-loader include paths
- โ Add a git init step to
bridgetown newcommand #18 - โก๏ธ Update sass-loader webpack config to support .sass #14 (jaredmoody)
- Add customizable permalinks to Prototype Pages (aka
/path/to/:term/and/beyond). Use hooks and in-memory caching to speed up Pagination. Inspired by use cases like thisโฆ #12
-
v0.11.1 Changes
April 24, 2020- โ Add a git init step to
bridgetown newcommand #18 - โก๏ธ Update sass-loader webpack config to support .sass #14 (jaredmoody)
- Add customizable permalinks to Prototype Pages (aka
/path/to/:term/and/beyond). Use hooks and in-memory caching to speed up Pagination. Inspired by use cases like thisโฆ #12
- โ Add a git init step to
-
v0.11.0 Changes
April 21, 2020๐ The release that's getting promoted to a broader audience now!
From the changelog:
Prototype Pages
You can now create a page, say
categories/category.html, and add aprototypeconfig
to the Front Matter:layout: defaulttitle: Posts in category :prototype-termprototype: term: categoryAnd then all the site's different categories will have archives pages at this location
(e.g.categories/awesome-movies,categories/my-cool-vacation, etc.) It enables
pagination automatically, so you'd just usepaginator.documentsto loop through the
๐ posts. See the docs here. -
v0.10.2 Changes
April 19, 20200.10.2 / 2020-04-19
๐ Automatic Yarn Step for New Plugins
๐ Now with Gem-based plugins for Bridgetown, all you need to do is add
yarn-add
๐ metadata matching the NPM package name and keep the version the same as the Gem
๐ version. For example:spec.metadata = { "yarn-add" =\> "my-awesome-plugin@#{MyAwesomePlugin::VERSION}" }๐ With that bit of metadata, Bridgetown will know always to look for that package in
๐ฆ the users'package.jsonfile when they load Bridgetown, and it will trigger a
๐ฆyarn addcommand if the package and exact version number isn't present.0.10.1 / 2020-04-18
โ Add
{% webpack_path [js|css] }tag which pulls in the Webpack manifest and finds
the hashed output bundles. Also works in concert with the Watcher so every time
Webpack rebuilds the bundles, Bridgetown regenerates the site.