Skip to content

Commit

Permalink
Merge branch 'master' into move-dugout
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi committed May 26, 2021
2 parents 104dc80 + 6b5819c commit 67b6f57
Show file tree
Hide file tree
Showing 23 changed files with 889 additions and 541 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
# Runs a single command using the runners shell
- name: NPM Install
run: npm install


- name: NPM Audit
run: npm audit --audit-level=high

- name: NPM build
run: npm run build
# - run: npm test -- Eventually.
4 changes: 3 additions & 1 deletion .teamsnap/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ production:
hosting_platform:
performance_monitoring: []
error_monitoring: []
continuous_integration: []
continuous_integration:
- name: github_actions
reference_id: main.yml
bug_tracking: []
documentation: []
deployment: []
Expand Down
52 changes: 50 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,58 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `Fixed` for any bug fixes.
- `Security`

## [3.8.5] - 2020-10-19
-
## [3.10.8] - 2021-05-26
- `Changed` font paths to new teamsnap-ui CDN.

## [3.10.7] - 2021-05-25
- https://github.com/teamsnap/teamsnap-ui/pull/644
- `Fixed` Updated to patch CVE-2021-27515, CVE-2021-23337, CVE-2020-7733, and CVE-2021-27292

## [3.10.6] - 2021-04-06
- https://github.com/teamsnap/teamsnap-ui/pull/581
- `Updated` Center paginated table elements as a group

## [3.10.5] - 2021-04-06
- https://github.com/teamsnap/teamsnap-ui/pull/564
- `Added` Allow paginated table to export placement options type

## [3.10.4] - 2021-04-05
- https://github.com/teamsnap/teamsnap-ui/pull/557
- `Added` Allow paginated table to choose pagination placement via prop

## [3.10.3] - 2021-03-30
- https://github.com/teamsnap/teamsnap-ui/pull/538
- `Updated` Allow paginated table to take in custom filter objects

## [3.10.2] - 2021-02-26
- https://github.com/teamsnap/teamsnap-ui/pull/504/files
- `Updated` Table headers to be spans instead of anchors

## [3.10.1] - 2020-12-08
- https://github.com/teamsnap/teamsnap-ui/pull/429
- `Updated` React to 17
- `Fixed` event delegation in Popup components for breaking React 17 changes

## [3.10.0] - 2020-11-04
- https://github.com/teamsnap/teamsnap-ui/pull/366
- `Added` more options to Popup component to make it more customizable.

## [3.9.2] - 2020-11-04
- https://github.com/teamsnap/teamsnap-ui/pull/366
- `Fixed` Popup component - popup would not "stick" when trigger was clicked.
- `Security` Bumped a dependency on object-path to resolve a known vulnerability in that dependency.

## [3.9.1] - 2020-11-03
- https://github.com/teamsnap/teamsnap-ui/pull/365
- `Changed` Avatar component - Mods no longer a required prop
- `Changed` Avatar component - Image should now fill the parent even if smaller than the parent.
- `Changed` Tabs component - Mods no longer a required propr

## [3.9.0] - 2020-11-03
- https://github.com/teamsnap/teamsnap-ui/pull/359
- `Added` Avatar component
- `Added` Tabs component

## [3.8.4] - 2020-10-19
- https://github.com/teamsnap/teamsnap-ui/pull/332
- `Changed` Pagination Control import structure to be publicly accessible
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Once your user is created and added to the org this guide details the steps to p

* rebase and get your branch ahead of master
* then from your working branch
* run `npm audit --audit-level=high` to ensure there are no vulnerabilities with level high or critical.
* As necessary, update packages to resolve npm audit failures for level high or critical vulnerabilities.
* Update the package.json version number `npm version [major|minor|patch] -m "commit message"`
* Update CHANGELOG.md with new npm version and release notes
* Commit CHANGELOG
Expand Down

0 comments on commit 67b6f57

Please sign in to comment.