Skip to content

Commit

Permalink
v1.0.0-beta.18
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Aug 25, 2024
1 parent 7b33856 commit 4b6395e
Show file tree
Hide file tree
Showing 43 changed files with 307 additions and 99 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-beta.18](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2024-08-25)


### Bug Fixes

* **endpoint-auth:** exclude client_id from introspection response ([53d6eae](https://github.com/getindiekit/indiekit/commit/53d6eaec29fa7b3c0f3dedf3c9eeebfad2bcb308))
* **endpoint-auth:** remove console debugging ([14ef31f](https://github.com/getindiekit/indiekit/commit/14ef31f9bd0c9ea68d5fa27a0aaa99ba935c0305))
* **endpoint-auth:** validate client_id against local client.id ([4721836](https://github.com/getindiekit/indiekit/commit/47218360c744def2b4217bf372a8683f7f089d74))
* **endpoint-micropub:** ignore empty name property in PTD. fixes [#756](https://github.com/getindiekit/indiekit/issues/756) ([6bbb284](https://github.com/getindiekit/indiekit/commit/6bbb28414b533a9e640950f34c62420c44089844))
* **frontend:** allow detail summary to wrap. fixes [#753](https://github.com/getindiekit/indiekit/issues/753) ([c8cdb89](https://github.com/getindiekit/indiekit/commit/c8cdb899a57290ea2659ffbe4a1c8db1b95c3593))


### Features

* **endpoint-auth:** accept client metadata ([212684d](https://github.com/getindiekit/indiekit/commit/212684da3925855ea10b6b5266ebefb06cd84cdf))
* **indiekit:** add debug logs to troubleshoot Indiekit/Express server configuration ([d02b5b8](https://github.com/getindiekit/indiekit/commit/d02b5b8c6e0ac9711592ba210766a9d43a46cb3f))
* **indiekit:** add debug logs to troubleshoot the connection to MongoDB ([20bc5a3](https://github.com/getindiekit/indiekit/commit/20bc5a377d86056c96754261c56b72e82532a89e))
* **indiekit:** client metadata endpoint ([7a36846](https://github.com/getindiekit/indiekit/commit/7a3684666ed7df2fedaa2f4927b5d6882f96d0e5))
* **store-github:** improve error messages for CRUD operations ([bbb9990](https://github.com/getindiekit/indiekit/commit/bbb9990907ee74651a648438ff389a3e5c761cb7))





# [1.0.0-beta.17](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2024-05-11)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
}
},
"ignoreChanges": ["**/tests/**", "**/*.md"],
"version": "1.0.0-beta.17"
"version": "1.0.0-beta.18"
}
98 changes: 49 additions & 49 deletions package-lock.json

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

8 changes: 8 additions & 0 deletions packages/create-indiekit/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.

# [1.0.0-beta.18](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2024-08-25)

**Note:** Version bump only for package create-indiekit





# [1.0.0-beta.16](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2024-04-19)

**Note:** Version bump only for package create-indiekit
Expand Down
8 changes: 4 additions & 4 deletions packages/create-indiekit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-indiekit",
"version": "1.0.0-beta.16",
"version": "1.0.0-beta.18",
"description": "Get started with Indiekit",
"keywords": [
"express",
Expand Down Expand Up @@ -40,11 +40,11 @@
"@indiekit/preset-hugo": "^1.0.0-beta.10",
"@indiekit/preset-jekyll": "^1.0.0-beta.15",
"@indiekit/store-bitbucket": "^1.0.0-beta.15",
"@indiekit/store-ftp": "^1.0.0-beta.15",
"@indiekit/store-ftp": "^1.0.0-beta.18",
"@indiekit/store-gitea": "^1.0.0-beta.15",
"@indiekit/store-github": "^1.0.0-beta.15",
"@indiekit/store-github": "^1.0.0-beta.18",
"@indiekit/store-gitlab": "^1.0.0-beta.15",
"@indiekit/syndicator-mastodon": "^1.0.0-beta.16",
"@indiekit/syndicator-mastodon": "^1.0.0-beta.18",
"base-create": "^3.0.7",
"chalk": "^5.0.0",
"prompts": "^2.4.2",
Expand Down
18 changes: 18 additions & 0 deletions packages/endpoint-auth/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.

# [1.0.0-beta.18](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2024-08-25)


### Bug Fixes

* **endpoint-auth:** exclude client_id from introspection response ([53d6eae](https://github.com/getindiekit/indiekit/commit/53d6eaec29fa7b3c0f3dedf3c9eeebfad2bcb308))
* **endpoint-auth:** remove console debugging ([14ef31f](https://github.com/getindiekit/indiekit/commit/14ef31f9bd0c9ea68d5fa27a0aaa99ba935c0305))
* **endpoint-auth:** validate client_id against local client.id ([4721836](https://github.com/getindiekit/indiekit/commit/47218360c744def2b4217bf372a8683f7f089d74))


### Features

* **endpoint-auth:** accept client metadata ([212684d](https://github.com/getindiekit/indiekit/commit/212684da3925855ea10b6b5266ebefb06cd84cdf))





# [1.0.0-beta.17](https://github.com/getindiekit/indiekit/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2024-05-11)


Expand Down
Loading

0 comments on commit 4b6395e

Please sign in to comment.