Skip to content

Commit

Permalink
chore(release): 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lholmquist committed Jul 2, 2020
1 parent b48cbf5 commit 215e4ea
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [7.0.0](https://github.com/nodeshift/nodeshift/compare/v6.2.0...v7.0.0) (2020-07-02)


### Features

* **knative:** Each deploy should create a new revision. ([#467](https://github.com/nodeshift/nodeshift/issues/467)) ([3ba9cb0](https://github.com/nodeshift/nodeshift/commit/3ba9cb0592417ac067dd072ff34d30cd45cb111a))
* **project-archiver:** Adding .gitignore ([#463](https://github.com/nodeshift/nodeshift/issues/463)) ([3f7d48d](https://github.com/nodeshift/nodeshift/commit/3f7d48d2661a34fd5c46f3d2c26f1532f16d6de4))


### Bug Fixes

* upgrade js-yaml from 3.13.1 to 3.14.0 ([#461](https://github.com/nodeshift/nodeshift/issues/461)) ([afc4cb3](https://github.com/nodeshift/nodeshift/commit/afc4cb3153c3326e60d17f0111d3751d5d80518d))

## [6.2.0](https://github.com/nodeshift/nodeshift/compare/v6.1.0...v6.2.0) (2020-06-05)


Expand Down
9 changes: 7 additions & 2 deletions docs/index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset='utf-8'>
<title>nodeshift 6.2.0 | Documentation</title>
<title>nodeshift 7.0.0 | Documentation</title>
<meta name='description' content='Plugin for running openshift deployments'>
<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'>nodeshift</h3>
<div class='mb1'><code>6.2.0</code></div>
<div class='mb1'><code>7.0.0</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down Expand Up @@ -164,6 +164,11 @@ <h4>Resource Fragment Parameters</h4>
<pre><code>nodeshift -d SSO_AUTH_SERVER_URL=https://sercure-url
</code></pre>
<!-- For more on writing openshift templates, [see here](https://docs.openshift.org/latest/dev_guide/templates.html#writing-templates) -->
<h3>Project Archive</h3>
<p>A user can specify exactly what files would like nodeshift to include to the archive it will generate by using the files property in package.json.</p>
<p>If a user does not use the files property in the package.json to filter what files they would like to include, then nodeshift by default will include everything except the <strong>node_modules</strong>, <strong>.git</strong> and <strong>tmp</strong> directories. </p>
<p>Nodeshift will also look for additional exclusion rules at a .gitignore file if there is one. Same thing with a .dockerignore file.</p>
<p>If both ignore files are present, nodeshift will union them together and use that.</p>
<h3>API</h3>
<p>Along with the command line, there is also a public API. The API mirrors the commands.</p>
<p>API Docs - <a href="https://nodeshift.github.io/nodeshift/">https://nodeshift.github.io/nodeshift/</a></p>
Expand Down
2 changes: 1 addition & 1 deletion 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,6 +1,6 @@
{
"name": "nodeshift",
"version": "6.2.0",
"version": "7.0.0",
"description": "Plugin for running openshift deployments",
"bin": {
"nodeshift": "./bin/nodeshift"
Expand Down

0 comments on commit 215e4ea

Please sign in to comment.