Skip to content

Commit

Permalink
v0.1.0-alpha.8
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Sep 20, 2020
1 parent aea81a4 commit f67c28f
Show file tree
Hide file tree
Showing 17 changed files with 104 additions and 15 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)


### Bug Fixes

* make error summary title localisable ([aea81a4](https://github.com/getindiekit/indiekit/commit/aea81a47b658cdf42a3ad409ca2e2548925e2ee5))
* **indiekit:** add missing translation string for session.logout ([ddd1776](https://github.com/getindiekit/indiekit/commit/ddd1776eae4ef0f65541b236a5265c5fe164b19a))
* **indiekit:** prevent log in with other URLs. fixes [#283](https://github.com/getindiekit/indiekit/issues/283) ([9c151b7](https://github.com/getindiekit/indiekit/commit/9c151b79680a2b836ac2fc3d79c28770b54269b6))
* application name shown on status page ([7a83028](https://github.com/getindiekit/indiekit/commit/7a830288232024205585c7668dda95fd2ad18fef))
* locale used and shown on status page ([30ba27d](https://github.com/getindiekit/indiekit/commit/30ba27d8cb215e703078b1fe90600962d4ffbcd5))


### Features

* **endpoint-share:** add validation to share page. fixes [#284](https://github.com/getindiekit/indiekit/issues/284) ([31a875d](https://github.com/getindiekit/indiekit/commit/31a875de5b6bfe8366fab8c455fdf6804d15288c))
* **endpoint-share:** move url field above others ([88f6d32](https://github.com/getindiekit/indiekit/commit/88f6d32931fcd887867ed200dd49662e93717761))
* **endpoint-share:** translate validation errors. fixes [#285](https://github.com/getindiekit/indiekit/issues/285) ([df5067d](https://github.com/getindiekit/indiekit/commit/df5067d4612ad526381d555da3f06eb2196f96cb))
* **indiekit:** add translation string for optional value ([568be40](https://github.com/getindiekit/indiekit/commit/568be404200a65d00f3bb82160178cc68cf8f70c))





# [0.1.0-alpha.7](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.6...v0.1.0-alpha.7) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"--no-package-lock"
]
},
"version": "0.1.0-alpha.7"
"version": "0.1.0-alpha.8"
}
8 changes: 8 additions & 0 deletions packages/endpoint-media/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)

**Note:** Version bump only for package @indiekit/endpoint-media





# [0.1.0-alpha.7](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.6...v0.1.0-alpha.7) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/endpoint-media/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/endpoint-media/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@indiekit/endpoint-media",
"version": "0.1.0-alpha.7",
"version": "0.1.0-alpha.8",
"description": "Micropub media endpoint for Indiekit",
"keywords": [
"indiekit",
Expand Down
8 changes: 8 additions & 0 deletions packages/endpoint-micropub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)

**Note:** Version bump only for package @indiekit/endpoint-micropub





# [0.1.0-alpha.7](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.6...v0.1.0-alpha.7) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/endpoint-micropub/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/endpoint-micropub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@indiekit/endpoint-micropub",
"version": "0.1.0-alpha.7",
"version": "0.1.0-alpha.8",
"description": "Micropub endpoint for Indiekit",
"keywords": [
"indiekit",
Expand Down
18 changes: 18 additions & 0 deletions packages/endpoint-share/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)


### Bug Fixes

* make error summary title localisable ([aea81a4](https://github.com/getindiekit/indiekit/commit/aea81a47b658cdf42a3ad409ca2e2548925e2ee5))


### Features

* **endpoint-share:** add validation to share page. fixes [#284](https://github.com/getindiekit/indiekit/issues/284) ([31a875d](https://github.com/getindiekit/indiekit/commit/31a875de5b6bfe8366fab8c455fdf6804d15288c))
* **endpoint-share:** move url field above others ([88f6d32](https://github.com/getindiekit/indiekit/commit/88f6d32931fcd887867ed200dd49662e93717761))
* **endpoint-share:** translate validation errors. fixes [#285](https://github.com/getindiekit/indiekit/issues/285) ([df5067d](https://github.com/getindiekit/indiekit/commit/df5067d4612ad526381d555da3f06eb2196f96cb))





# [0.1.0-alpha.7](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.6...v0.1.0-alpha.7) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/endpoint-share/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/endpoint-share/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@indiekit/endpoint-share",
"version": "0.1.0-alpha.7",
"version": "0.1.0-alpha.8",
"description": "Share endpoint for Indiekit",
"keywords": [
"indiekit",
Expand Down
12 changes: 12 additions & 0 deletions packages/frontend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)


### Bug Fixes

* locale used and shown on status page ([30ba27d](https://github.com/getindiekit/indiekit/commit/30ba27d8cb215e703078b1fe90600962d4ffbcd5))
* make error summary title localisable ([aea81a4](https://github.com/getindiekit/indiekit/commit/aea81a47b658cdf42a3ad409ca2e2548925e2ee5))





# [0.1.0-alpha.6](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.4...v0.1.0-alpha.6) (2020-09-18)


Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/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/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@indiekit/frontend",
"version": "0.1.0-alpha.6",
"version": "0.1.0-alpha.8",
"description": "An IndieWeb publishing toolkit",
"keywords": [
"express",
Expand Down
20 changes: 20 additions & 0 deletions packages/indiekit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0-alpha.8](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.7...v0.1.0-alpha.8) (2020-09-20)


### Bug Fixes

* make error summary title localisable ([aea81a4](https://github.com/getindiekit/indiekit/commit/aea81a47b658cdf42a3ad409ca2e2548925e2ee5))
* **indiekit:** add missing translation string for session.logout ([ddd1776](https://github.com/getindiekit/indiekit/commit/ddd1776eae4ef0f65541b236a5265c5fe164b19a))
* **indiekit:** prevent log in with other URLs. fixes [#283](https://github.com/getindiekit/indiekit/issues/283) ([9c151b7](https://github.com/getindiekit/indiekit/commit/9c151b79680a2b836ac2fc3d79c28770b54269b6))
* application name shown on status page ([7a83028](https://github.com/getindiekit/indiekit/commit/7a830288232024205585c7668dda95fd2ad18fef))
* locale used and shown on status page ([30ba27d](https://github.com/getindiekit/indiekit/commit/30ba27d8cb215e703078b1fe90600962d4ffbcd5))


### Features

* **indiekit:** add translation string for optional value ([568be40](https://github.com/getindiekit/indiekit/commit/568be404200a65d00f3bb82160178cc68cf8f70c))





# [0.1.0-alpha.7](https://github.com/getindiekit/indiekit/compare/v0.1.0-alpha.6...v0.1.0-alpha.7) (2020-09-19)


Expand Down
2 changes: 1 addition & 1 deletion packages/indiekit/package-lock.json

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

10 changes: 5 additions & 5 deletions packages/indiekit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@indiekit/indiekit",
"version": "0.1.0-alpha.7",
"version": "0.1.0-alpha.8",
"description": "An IndieWeb publishing toolkit",
"keywords": [
"express",
Expand Down Expand Up @@ -36,10 +36,10 @@
"directory": "packages/indiekit"
},
"dependencies": {
"@indiekit/endpoint-media": "0.1.0-alpha.7",
"@indiekit/endpoint-micropub": "0.1.0-alpha.7",
"@indiekit/endpoint-share": "0.1.0-alpha.7",
"@indiekit/frontend": "0.1.0-alpha.6",
"@indiekit/endpoint-media": "^0.1.0-alpha.8",
"@indiekit/endpoint-micropub": "^0.1.0-alpha.8",
"@indiekit/endpoint-share": "^0.1.0-alpha.8",
"@indiekit/frontend": "^0.1.0-alpha.8",
"@indiekit/preset-jekyll": "0.1.0-alpha.6",
"cookie-session": "^1.4.0",
"debug": "^4.2.0",
Expand Down

0 comments on commit f67c28f

Please sign in to comment.