- Updated
auth-client
to2.15.1
. #531
- Updated
auth-client
to2.14.0
. #529
- Replaced use of
http-server
during internal e2e tests. #527
- Added support for
@skyux/[email protected]
and@skyux/[email protected]
. #526
- Added support for
@skyux/[email protected]
which fixes a circular reference error for later versions of SKY UX. #524
- Added support for
@skyux/[email protected]
and@blackbaud/[email protected]
. #523
- Fixed module aliases to work properly for
skyux build
andskyux e2e
commands. #519
- Added configuration option to allow for custom module resolution at build time. #517
- Backported fix for
webpack-dev-server
to support Node 10. #512
- Added support for
@skyux/[email protected]
. #510 - Added checks for existing file to
skyux generate
. #500
- Added
SkyAuthHttpClientModule
that can be used in conjunction with Angular'sHttpClient
to make authenticated calls to services backed by Blackbaud ID. (blackbaud/skyux-http#11)[blackbaud/skyux-http#11] - Fixed coverage reports to accurately match against configured thresholds. #499
- Added support for
@blackbaud/[email protected]
which allows permission scopes to specify a legal entity ID. #498
- Added support for
@skyux/[email protected]
. #496
- Added config option to include style sheets in bundle. #484
- Added support for Node.js 8. #490
- Bugfix to allow custom
NotFoundComponent
. #485 - Bugfix to address endless loops and crashes during unit tests. #492
- Updated
skyux e2e
to automatically install appropriate ChromeDriver version for the installed version of Chrome. Previous functionality was to always install the latest version, which caused version mismatches. - Added support for developing builder on Node 8.
- Added support for
@skyux/[email protected]
. #486 - Fixed bootstrapper to allow for TypeScript strict mode. #464
- Updated auth-client library to pick up change that displays the omnibar inactivity prompt at a z-index high enough to display over SKY UX modals. #481
- Bugfix to address endless loop when running
skyux watch
. #479
- Bugfix to re-add
SkyAuthHttp
to primary module's providers. #476
- Fixed help widget to not display when SPA is in add-in mode. #475
- Fixed library bundler to also transpile source files located in the root public directory. #474
- Added support for libraries to include an isolated "testing" module. #471
- Upgraded
skyux-lib-help
to1.3.1
. #473
- Added preload hook to the
skyux build-public-library
command to let plugins modify library files. #469
- Replaced the expired local server certificate used with the
skyux serve
andskyux e2e
commands. #467
- Disabled the
aria-allowed-attr
rule in aXe a11y testing. This will be re-enabled when we can update toaxe-core
version3.1.1
. #465
Note Updating to this version of SKY UX Builder requires that SKY UX also be updated to 2.21.0 because it takes advantages of new features in SKY UX.
- Minor tweaks to code coverage instrumentation for SKY UX libraries. #457
- CSS imports now reference the new
@skyux/theme
library that is part of the latest version of SKY UX 2. #458 - Added the ability to specify a
browserSet
for e2e tests similar to the option that exists for unit tests. Currently the only supportedbrowserSet
value isspeedy
. #459 - Addressed a minor issue when logging build status. #460
- SPAs can now force a legal entity context and allow users to pick a legal entity from a list if the user belongs to more than one legal entity, or to automatically select a default legal entity if the user only belongs to one legal entity. To use this feature, ensure that the
parameters
section ofskyuxconfig.json
specifiesleid
as a required parameter. #461 Example:
"params": {
"leid": {
"required": true
}
}
- Updated
@blackbaud/auth-client
package to reflect a change in policy for changing BBID user session timeouts from 15 minutes of inactivity to 90 minutes. #462
- Bugfix to allow SPAs to reference resource files in libraries even if the SPAs do not include resource files. #449
- Bugfix to catch JavaScript errors in browsers during unit tests. #452
- Reverted stricter type information for
SkyPactService
. #446 - Bugfix for
skyux build-public-library
command to successfully run on Windows. #445
- Bugfix to allow component libraries to properly consume external components. #439
- Updated the
skyux build-public-library
command to use same compiler asskyux build
. #417 - Added better type info and documentation to
SkyPactService
. #430 Thanks @Blackbaud-KrisMahon! - Exposed
skyuxconfig.json
toskyux test
andskyux e2e
configuration files. #431 - Created the
$schema
property inskyuxconfig.json
to allow for better IDE intergration. The value of./node_modules/@blackbaud/skyux-builder/skyuxconfig-schema.json
is applied to the default template and can be retroactively added to older SPAs. #358 - Created the
browserSet
property inskyuxconfig.json
to control which browsers to use during testing. Applicable values arespeedy
,quirky
, andparanoid
. #431 - Created the
excludeFromRequest
property inskyuxconfig.json
to exlude parameters from requests. #432
- Added LCOV code coverage output when running
skyux test
. #416 - Added support to use tildes for imports in SCSS files in libraries. #415
- Added support for route navigation during
skyux e2e
. #414 - Bugfix to properly handle multiline entry of
styleUrls
. #418
- Updated
auth-client
to2.7.0
which supports omnibar theming. #412
- Updated
auth-client
to2.6.0
to support passingleid
to the omnibar, to automatically includeleid
inSkyAuthHttp
requests, and to add anleid
flag forskyux serve
that adds a legal entity ID to the Host URL. #406
- Bugfix to properly fail
skyux e2e
if build step fails. #404 - Updated
skyAppLink
directive to not include parameters whose current values match their default values. #402 - Upgraded
auth-client
to2.5.0
. #407 - Upgraded
skyux-lib-help
to1.3.0
. #401, #405
-
SKY UX libraries can now define their own locale files for localizing strings. #379
-
Changed the Webpack source map devtool from
cheap-module-eval-source-map
tosource-map
. This fixes source maps in Firefox. #384 -
Added the ability to resolve a missing environment ID context before rendering the application. For instance, if the
envid
parameter is required by your application, but none is supplied either through the query string or the SPA'sskyuxconfig.json
file, the user will be presented with a screen to select an environment. If the user is only in one environment, the application will automatically be reloaded with that environment. #399
To opt into this new behavior, simply add the following to your skyuxconfig.json
file (or merge it with your existing params
section if it already exists):
"params": {
"envid": {
"required": true
}
}
- Added support for the
addin
parameter. #396 - Added support for JSON files when using
require
. #395 - Bugfix to properly encode and decode parameters. #394
- Bugfix to prevent new instances of the omnibar when HMR is enabled. #393 Thanks @Blackbaud-MitchellThomas!
- Bugfix to make
skyAppLink
respect thequeryParams
attribute. #390 Thanks @Blackbaud-MitchellThomas! - Bugfix in
toHaveText
test method. #392 - Exposed
SkyAppRuntimeModule
through@blackbaud/skyux-builder/runtime
. #391
- Made
skyux test
more efficient by checking for spec files before initializing. #381 - Bugfix when parsing querystring parameters. #385
- Added test utility from SKY UX. #382 and #386
- Added ability to import individual SKY UX modules using the
skyuxModules
property inskyuxconfig.json
. #383
- Fixed an issue where URL parameters did not persist when navigating to another route within a SPA. #377
- Fixed errors that occur when building a library that implements the
skyAppResources
pipe. #371 - Fixed an issue where Karma and Protractor configs did not use the correct logger. #376
- Fixed an issue that occurs when navigating to a URL that partially matches the current base URL. #372
- Added support for required parameters in
skyuxconfig.json
. #370 Thanks @Blackbaud-BrandonHare! - Enabled the use of Hot Module Replacement (HMR) during
skyux serve
with the--hmr
flag. #359 - Initial creation of
skyAppLinkExternal
directive. #366 Thanks @Blackbaud-MitchellThomas! - Migrated all logging to use the
@blackbaud/skyux-logger
package. #357
- Fixed errors that occur when building a library that imports from Builder's runtime directory. #368
- Added support for the
codeCoverageThreshold
property inskyuxconfig.json
. #355 - Created
skyuxconfig-schema.json
to provide IntelliSense capabilities. #347
- Added support for reading locale from SKYUX_HOST global variable. #345
- Disabled standalone install for webdriver manager. #349
- Using the latest release of Chrome when testing on Appveyor. #352
- Removed process.exit(0) from the generate module so the generate command can be passed through to plugins. #351
- Created e2e tests around integration with the help service. #311
- Release
skyux pact
command to allow Pact testing without usingskyux e2e
. #319 and #350 Thanks @Blackbaud-JoshLandi!
- Upgraded
@blackbaud/auth-client
to 2.2.0. #344
- Fixed slowness and out-of-memory issues with build. #340
- Added ability to generate a component from the SKY UX CLI. Run
skyux generate component <component-name>
where<component-name>
is the name of the component preceded by an optional subfolder (e.g.skyux generate component some-folder/some-thing
). This will generate the TypeScript, HTML, CSS and spec files for your new component in the specified folder. #330
- Reduced number of console logs for output keep alive. #334
- Fixed navigation via Omnibar due to loading outside Angular. #332
- Added webpack
OutputKeepAlivePlugin
to periodically print to the console to reset any timeouts associated with watched output. #328 - Added support for RxJS 5.4.3. #298 Thanks @Blackbaud-MikitaYankouski!
- Adjusted regular expression specificity for elements referencing static assets. #326
- Added
SkyAppOmnibarProvider
to enable customenvId
andsvcId
to be provided to the omnibar. #323 - Cleaned up logging by only generating config for known commands. #321
- Enabled default
envid
andsvcid
params inskyuxconfig.json
. #320 - Exposed
--platform
flag and adjusted config paths to improve internal continuous integration. #297, #322 - Performance enhancement to load omnibar outside context of Angular. #317
- Bugfix to handle stopping
skyux test
before linter finishes. #316
- Adjusted class names used to hide help invoker on full-page modal. #314
- Bugfix to not force URLs to lowercase when calling
navigateByUrl
. #313 - Using AppVeyor to validate building on the Windows platform. #310, #312
- Upgraded
@blackbaud/auth-client
to 2.0.0. Providing backwards compatibility until 2.x.x release. #308 - Fixed the paths used for automatically excluding files from code coverage. #306
- Fixed help invoker not being hidden when full-page modal opened. #304
- Added support for
@blackbaud/auth-client
1.18.0. #302 - Separated coverage and e2e steps into separate environments. #299
- Created
SkyAppViewportService
for tracking when properties of the viewport change, such as when all styles and fonts have been loaded and the contents are ready for display. #300 - Upgraded
@blackbaud/skyux-lib-help
to1.1.10
. #293 - Bugfix regarding merging of multiple
skyuxconfig.json
files. #292 Thanks @Blackbaud-BrandonHare!
- Updated
runCommmand
to return a boolean toskyux-cli
, indicating whether the command was handled. #277 - Bugfix to correctly merge multiple
skyuxconfig.json
files. #288 Thanks @Blackbaud-BrandonHare! - Upgraded
@blackbaud/auth-client
to 1.15.0. SupplyingallowAnonymous
flag to Omnibar. #290 - Added ability to handle child route with parameter. #286 Thanks @Blackbaud-JoshGerdes!
- Exporting
SkyAppAssetsService
in default@blackbaud/skyux-builder/runtime
barrel. #287
- Removed
help-client
from dependencies as it was causing a conflict with the help library. (#284)[#284]
- Bugfix: Reverted some dependencies to fix
@angular/animations
errors. #281
- Updated reference to new
@blackbaud/skyux-lib-help
. #270 Thanks @Blackbaud-BrandonJones! - Increased linter line-length to 140. #275 Thanks @Blackbaud-BrandonHare!
- Upgraded dependency versions and internally changed how
skyux e2e
launches Protractor. #266
- Upgraded
@blackbaud/auth-client
to 1.15.0. #268 - Bugfix to allow periods in the filenames of JavaScript assets. #271
- Created the
--no-build
flag forskyux e2e
to skip the build step before running end-to-end tests. #262 - Disabled downloading Gecko driver when running
skyux e2e
. #263 - More verbose messages when using
toHaveText
helper inskyux test
. #264 Thanks @Blackbaud-BryonWilkins!
- Created the
--serve
/-s
flag forskyux build
to serve the SPA locally after it builds. Can use in conjunction with the--launch
and--browser
flags. #219 - Upgraded
@blackbaud/auth-client
to 1.12.0. #259
- Created
SkyA11y
class. It's available duringskyux e2e
and aids in testing accessibility guidelines. #250 - Bugfix when running
skyux serve
more than once at the same time on Windows. #257 - Made
skyux e2e
more efficient by checking for spec files before performing a build. #256 Thanks @blackbaud-brandonhare!
- Fixed issue where the default port for local files during
skyux serve
could not be manually overridden inskyuxconfig.json
. #254
- Added support for
@blackbaud/[email protected]
. #251 - Fixed bug where files were being processed twice by plugins during AoT compilation (Windows only). #252
- Fixed TSLint checking node_modules #247
- Added ability to specify a permission scope with
SkyAuthHttp
. #245 - Added string formatting method to
SkyAppResourcesTestService
. #239 - Added
skyux lint
command and fixed TSLint rules (that require type checking) not failing the build. #205 - Added check to prevent window scroll if a route fragment exists. #232
- Added colors to console logs. #244
- Made public and referenced route properties optional. #240
- Fixed bug with change detection when a resource string is loaded asynchronously. #243
- Fixed transient dependency of
enhanced-resolve
created by@ngtools/webpack
, which was breakingskyux build
andskyux e2e
. #241
- Fixed bug around Font Face Observer to allow compatibility with SKY UX 2.0.0-rc.7 and above.
- Upgraded rxjs to 5.4.2
- Added ability to format a templated resource string. #231
- Added version range to install latest
rc-x
branch from SKY UX. #233 - Fixed bug with static assets URL in e2e tests. #234
- Fixed
redirects
type inSkyAppConfig
. #229
- Bugfix to allow
redirects
property inskyuxconfig.json
. #224 - Bugfix that caused plugins to process files twice during AOT compilation. #225
- Implemented a better caching strategy and fallback to non-region-specific languages. #226
- Upgraded
@blackbaud/auth-client
to 1.9.1. #227
- Added ability to configure route redirects in
skyuxconfig.json
. #217 - Added a new CLI command,
skyux build-public-library
, which bundles Angular component libraries into a consumable module for NPM. #198 - Fixed various issues with Builder development in a Windows environment. #185
- Added
SkyAppResourcesService
andskyAppResources
pipe for retrieving and displaying strings in theassets/locale
folder. #552 - Added
SkyAppAssetsService
for getting a URL for an asset file. #766
- Updated the auth client library to pick up logic for showing the search button based on whether search has been implemented by the SPA author. #214
- Added web-animations polyfill to support Angular animations in more browsers. #204
- Added support for Angular v4.2.5 and SKY UX 2.0.0-rc.4. #208
- Added support for
useHashRouting
inskyuxconfig.json
. #206
- Added support for SKY UX 2.0.0-rc.2.
- Fixed typo when passing
svcid
toauth-client
. #201 - Improved execution time for
skyux test
andskyux watch
. #202
- Added support for SKY UX 2.0.0-rc.1.
- Fixed a typings bug with
SkyAuthHttp
.
- Fixed invalid glob pattern (and unit tests) for ignored auto-generated components.
- Ignoring
src/app/public
directory when auto-generating components. #187 - Updated path and rules related to Codelyzer. #192
- Correctly setting
envId
andsvcId
forauth-client
. #193
- Added support for Angular v4.1.3 and SKY UX 2.0.0-rc.0.
- Bugfix to stop
SkyAuthHttp
from adding duplicateenvid
orsvcid
params. #182
- Bugfix for plugins to successfully run in an AOT build. #180
- Upgraded the default 404 route to use the SKY UX error component. #178
- Added support for a root route guard and child routes. #177 Thanks @blackbaud-brandonstirnaman!
- Added support for route guards. #168 Thanks @blackbaud-brandonstirnaman!
- Bugfix for
skyux test
not returning non-zero exit code during failure. #173
- Bugfix for
SkyAuthHttp
. #171
- Implemented style loader to resolve FOUC (flash of unstyled content). #166
- Initial creation of
skyRouterLink
directive. #159 - Updated testing suite to include internal files in
src/app
directory. - Added the
--browser
or-b
flag to determine which browser to open duringskyux serve
. #167
- Bugfix to correct incorrect paths specified when running
skyux e2e
.
- Passing
enableHelp
to the omnibar config. #160 - Bugfix where
skyux e2e
failed if theskyuxconfig.json
file contained more than 8000 characters. #161 - Added the
--no-coverage
flag to theskyux test
andskyux watch
commands. #157 - Passing
SkyAppConfig
to any plugins defined inskyuxconfig.json
. #156
- Added support for passing local navigation to omnibar via
skyuxconfig.json
. #152 - Refactored
publicRoutes
property inskyuxconfig.json
toroutes
withpublic
andreferenced
properties in preparation for publishing SPA routes to the navigation service. #152 - Fixed bug parsing
skyuxconfig.json
when a BOM was present. #153 - Updated
@blackbaud\auth-client
to 1.5.0. #154
- Added
appSettings
property toskyuxconfig.json
. #146 - Removed internal duplicate interface for AuthClient. #145, #149
- Removed internal duplicate interface for HelpClient. #147
- Bugfix: Correctly expose
SkyAppConfig.runtime.routes
. #150
- Bugfix: Correctly return a non-zero exit code if the
skyux build
command fails.
- Correctly displaying sourcemaps for TypeScript file. #136
- Updated dependencies. #133
- Fixed dependency reference for
remap-istanbul
. - Excluding
src/app/lib/
folder from code coverage instrumentation. #135 - Allowing TSLint errors to fail the
skyux build
command. #139
- Added ability for tokens to be provided via a token provider rather than always using
BBAuth
to obtain a token. #129 - Fixed issue where not all possible properties for help config were specified in the help config interface. #130
- Upgraded
@blackbaud/auth-client
to 1.3.1. #131
- Using
subjectAltName
in SSL certificate in order to support Chrome 58+. #127 - Bugfix to allow content to pass through multiple plugins. #124
- Explicitly adding
Access-Control-Allow-Origin
header when runningskyux serve
.
- Bugfix: Removed unnecessary route information in order to fix
skyux e2e
on Windows. #122
- Preventing
skyux test
from failing if no*.spec.ts
files are specified.
- Bugfix to correctly read
importPath
fromskyuxconfig.json
.
- Bundling images stored in
src/assets
and referenced via~/assets/
in all HTML/SCSS files. - Automatically including
envid
andsvcid
inSkyAuthHttp
requests. - Added
preload
andpostload
plugin hooks. Started initial work for lifecycle hooks. (Thanks @Blackbaud-SteveBrush!) - Created a consistent
SkyAppConfig
interface for passing around configuration.
- Merging
skyuxconfig.{current-skyux-command}.json
, if it exists, into theskyuxconfig.json
file. For example,skyuxconfig.serve.json
. - Adding
--envid
and--svcid
to be specified via the CLI and added to the Host URL opened when runningskyux serve
. For example,skyux serve --envid 1234
- SKY UX styles are now loaded when running unit tests so CSS rules defined in SKY UX take effect during tests. This allows you to check the the expected computed style of an element when using things like the HTML
hidden
property that only take effect when SKY UX styles are loaded.
- Bugfix: Fixes AOT + Auth build.
- Bugfix: Reorganized runtime exports into
browser
ande2e
.
- Updated URI used when accessing HOST to https://host.nxt.blackbaud.com.
- Removed hard-coded port used in
skyux serve
in favor of dynamically finding an available one. Port is configurable inskyuxconfig.json
with theapp: { port: <port> }
setting. - Automatically passing SPA name when using host-utils.
- Created
SkyAppTestModule
to support better SPA unit testing. - Bugfix: Added json-loader as dependency.
- Bugfix: Calling
webdriver-manager update
before runningnpm run test
. (Testing SKY UX Builder). - Bugfix: Incorrectly passed SPA name twice in URL opened by
skyux serve
.
- Allowing
help-client
to be automatically included by adding"help": { "productId": "applicable-productId" }
toskyuxconfig.json
. Thanks @blackbaud-stevebrush! - Refactored
e2e
command to runbuild
, then lightly serve files to host. - Created
SkyHostBrowser
for easily communicating with SKY UX Host when runningskyux e2e
. - Deprecated
--noServe
option onskyux e2e
.
- Correctly passing
--launch none
when runningskyux e2e
. - Fixed import path for bootstrapper in AoT mode.
- Fixed 'No provider for SkyAuthHttp' error with AoT compilation.
- Relaxed constraints on omnibar configuration to account for all possible omnibar options.
- Fixed AoT compilation that broke when Blackbaud auth/omnibar support was added.
- Added Blackbaud auth/omnibar integration.
- Bugfix where
skyux e2e
would fail if no spec files were found. - Bugfix where
skyux version
incorrectly read version from SPA'spackage.json
. - Changed
skyux serve
to only pass externals, scripts, and localUrl in querystring. - Corrected documentation for
-l
or--launch
flags. - Added badges to README.
- Removed support for
--noOpen
flag. Instead added-launch
flag withnone
,local
, orhost
(default). Ex:-launch local
. - Bugfix where
e2e
task would always return an exit code of 0. - Passing any externals defined in
skyuxconfig.json
for local development.
- Added
externals
support inskyuxconfig.json
for adding external CSS and JS. - Upgraded SSL certificates used. Please follow installation instructions.
- Upgraded various NPM packages including SKY UX and Angular.
- Using single underscore to prefix routes with parameters.
- Bugfix where new folders were not added to the watch list when running
skyux serve
.
- Initial release to NPM.