Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 9 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions packages/analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
* Better support for resolving `export {foo as bar}` statements.
<!-- ## Unreleased -->
<!-- Add new, unreleased changes here. -->

## [3.0.2] - 2018-06-28
* Better support for resolving `export {foo as bar}` statements.

## [3.0.1] - 2018-05-11
* Better support for handling errors early on in the analysis process (load,
parse, scan). This should solve the vast majority of Internal Error warnings.
Expand Down
18 changes: 4 additions & 14 deletions packages/analyzer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polymer-analyzer",
"version": "3.0.1",
"version": "3.0.2",
"description": "Static analysis for Web Components",
"homepage": "https://github.com/Polymer/tools/tree/master/packages/analyzer",
"repository": "github:Polymer/tools",
Expand Down
6 changes: 4 additions & 2 deletions packages/browser-capabilities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Change Log

## Unreleased
<!-- ## Unreleased -->
<!-- Add new, unreleased changes here. -->

## [1.1.1] - 2018-06-28
* Chrome for iOS is now handled correctly, by delegating to the corresponding
Safari feature matrix.
* Safari for iOS is handled more accurately, using iOS version.
<!-- Add new, unreleased changes here. -->

## [1.1.0] - 2018-05-03
* Added new capabilities for es2016, es2017, and es2018.
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-capabilities/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/browser-capabilities/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-capabilities",
"version": "1.1.0",
"version": "1.1.1",
"description": "Detect browser capabilities from a user agent string.",
"homepage": "https://github.com/Polymer/tools/tree/master/packages/browser-capabilities",
"repository": "github:Polymer/tools",
Expand Down
3 changes: 3 additions & 0 deletions packages/build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ## Unreleased -->
<!-- Add new, unreleased changes here. -->

## [3.0.4] - 2018-06-28
* Fix NPM audit warnings.

## [3.0.3] - 2018-06-25
* Service Worker generation uses a consistent spacing for anonymous
functions (i.e. space between keyword and parentheses `function ()`)
Expand Down
Loading