Skip to content

Commit

Permalink
security update
Browse files Browse the repository at this point in the history
  • Loading branch information
Slevinski committed Jan 9, 2023
1 parent 4919a32 commit 1185558
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 22 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,7 +12,12 @@ Evaluation report: https://www.skypack.dev/view/@sutton-signwriting/core
- clean up generated regular expressions for consistency
- copy QuerySignbox types for QueryPrefix

## [1.5.6] - 2023-01-09
### Fixed
- security issue

## [1.5.5] - 2022-11-07

### Changed
- donate link

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -74,11 +74,11 @@ The distribution is available in three flavors. 26 KB for the whole library min
#### Unpkg
// import entire library
// available as ssw.core
<script src="https://unpkg.com/@sutton-signwriting/core@1.5.5"></script>
<script src="https://unpkg.com/@sutton-signwriting/core@1.5.6"></script>

// import individual module
// available as ssw.fsw
<script src="https://unpkg.com/@sutton-signwriting/core@1.5.5/fsw/fsw.js"></script>
<script src="https://unpkg.com/@sutton-signwriting/core@1.5.6/fsw/fsw.js"></script>

## License
MIT
Expand Down
8 changes: 4 additions & 4 deletions docs/index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset='utf-8'>
<title>@sutton-signwriting/core 1.5.5 | Documentation</title>
<title>@sutton-signwriting/core 1.5.6 | Documentation</title>
<meta name='description' content='a javascript package for node and browsers that supports general processing of the Sutton SignWriting script'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' rel='stylesheet'>
Expand All @@ -15,7 +15,7 @@
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>@sutton-signwriting/core</h3>
<div class='mb1'><code>1.5.5</code></div>
<div class='mb1'><code>1.5.6</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down Expand Up @@ -1048,11 +1048,11 @@ <h4>Local files</h4>
<h4>Unpkg</h4>
<pre><code>// import entire library
// available as ssw.core
&#x3C;script src="https://unpkg.com/@sutton-signwriting/core@1.5.5">&#x3C;/script>
&#x3C;script src="https://unpkg.com/@sutton-signwriting/core@1.5.6">&#x3C;/script>

// import individual module
// available as ssw.fsw
&#x3C;script src="https://unpkg.com/@sutton-signwriting/core@1.5.5/fsw/fsw.js">&#x3C;/script>
&#x3C;script src="https://unpkg.com/@sutton-signwriting/core@1.5.6/fsw/fsw.js">&#x3C;/script>
</code></pre>
<h2>License</h2>
<p>MIT</p>
Expand Down
16 changes: 8 additions & 8 deletions 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 package.json
@@ -1,7 +1,7 @@
{
"name": "@sutton-signwriting/core",
"description": "a javascript package for node and browsers that supports general processing of the Sutton SignWriting script",
"version": "1.5.5",
"version": "1.5.6",
"keywords": [
"SignWriting",
"sign language",
Expand Down
12 changes: 6 additions & 6 deletions release.md
Expand Up @@ -8,16 +8,16 @@
## Commit and tag
git commit -m "version details"
git push origin master
git tag -am "version details" v1.5.4
git tag -am "version details" v1.5.6
git push --tags

## Packaging Binaries
npm pack
gunzip sutton-signwriting-core-1.5.4.tgz
tar -xvf sutton-signwriting-core-1.5.4.tar
mv package sutton-signwriting-core-1.5.4
zip -r sutton-signwriting-core-1.5.4.zip sutton-signwriting-core-1.5.4
tar -zcvf sutton-signwriting-core-1.5.4.tar.gz sutton-signwriting-core-1.5.4
gunzip sutton-signwriting-core-1.5.6.tgz
tar -xvf sutton-signwriting-core-1.5.6.tar
mv package sutton-signwriting-core-1.5.6
zip -r sutton-signwriting-core-1.5.6.zip sutton-signwriting-core-1.5.6
tar -zcvf sutton-signwriting-core-1.5.6.tar.gz sutton-signwriting-core-1.5.6

## Create Github Release
* Go to https://github.com/sutton-signwriting/core/tags
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Expand Up @@ -10,7 +10,7 @@ const banner = (name) => '/**' +
'\n* Author: Steve Slevinski (https://SteveSlevinski.me)' +
'\n* ' + name + ' is released under the MIT License.' +
'\n*/\n';
const footer = '\n/* support ongoing development on https://patreon.com/signwriting */';
const footer = '\n/* support ongoing development */\n/* https://patreon.com/signwriting */\n/* https://donate.sutton-signwriting.io */';
const bannerMin = () => '/* Sutton SignWriting Core Module v' + version + ' (https://github.com/sutton-signwriting/core)' +
', author: Steve Slevinski (https://SteveSlevinski.me), license: MIT */';
const footerMin = '/* the end */';
Expand Down

0 comments on commit 1185558

Please sign in to comment.