All Versions
181
Latest Version
Avg Release Cycle
28 days
Latest Release
512 days ago

Changelog History
Page 6

  • v2.6.0 Changes

    November 06, 2019
    • Added: ES6 compilation targets and module keyword in package.json. If your bundler supports tree shaking, you no longer have to use direct imports manually - simply use import { X } from 'uniforms'. #612
    • 🔄 Changed: Internal structure of imports to stay in align with the ES5/ES6 bundles. #629
    • 🛠 Fixed: Handling of default props of NumField in uniforms-material. #631.
    • 🛠 Fixed: Missing wrapField export in uniforms-material. #629.
  • v2.5.0 Changes

    October 16, 2019
    • 🔄 Changed: We've migrated to TypeScript! There should be no impact on plain JavaScript code and the runtime. We are still working on proper (not any) typings.
  • v2.4.1 Changes

    October 02, 2019
    • 🛠 Fixed: Name conflict of type in JSONSchemaBridge. #604
    • 🛠 Fixed: Parsing of dataPath in JSONSchemaBridge. #593
  • v2.4.0 Changes

    August 28, 2019
    • Added: Default labels in GraphQLSchemaBridge. #577
    • Added: Handling of placeholder and label in JSONSchemaBridge. #586
    • 🛠 Fixed: Unified logic of getProps between all bridges. Right now it has a clear semantic: bridge.getProps(fieldName[, props]) should resolve all props that the schema defines, based on the field definition and given props (if applicable). Especially, it should not merge in given props nor resolve the final label or placeholder - BaseField handles that. It'll affect you only if you've called getProps directly. It also got rid of some additional undefined props in JSONSchemaBridge.
  • v2.3.1 Changes

    August 14, 2019
    • 🛠 Fixed: Handling of default attribute in JSONSchemaBridge. #569
    • 🛠 Fixed: Handling of placeholder and required props in most themes. #570
    • 🛠 Fixed: Rendering placeholder in SelectField in uniforms-antd. #568
  • v2.3.0 Changes

    August 01, 2019
    • Added: Default exports in bridge packages. #562
    • Added: Support for extra and help in uniforms-antd theme. #559
    • 🛠 Fixed: Conditional wrapper of NumFields in most themes is now React version specific. #558
    • 🛠 Fixed: Deprecated icon in BoolField in uniforms-antd. #563
  • v2.2.0 Changes

    July 12, 2019
    • Added: Support for labelClassName in uniforms-bootstrap3 and uniforms-bootstrap4 themes. #548
    • 🛠 Fixed: Handling of required validation in JSONSchemaBridge. #554
    • 🛠 Fixed: Weird behaviour of SelectField with checkboxes in uniforms-antd. #549
  • v2.1.0 Changes

    June 18, 2019
    • Added: Support for @material-ui/core@4. #542
  • v2.0.0

    June 10, 2019
  • v2.0.0-alpha.1 Changes

    May 16, 2019
    • 🛠 Fixed: Nested arrays in GraphQLBridge. #535
    • 🛠 Fixed: SelectField in uniforms-material rendered inline error twice in certain situations.