Skip to content

Commit f838e07

Browse files
gustavomarques00Gustavo
andauthored
Release/v1.1.0 (#19)
* chore(release): 1.0.4 * fix(release-publish): corrige push usando token no workflow para evitar erro 403 * ci(release): automatiza versionamento, changelog e publicação no npm via GitHub Actions - workflow atualizado para: - executar standard-version no CI - push automático de commits e tags gerados - publicar pacote no npm automaticamente após release - uso de token de acesso pessoal do GitHub para push seguro - uso de token npm via secrets para publicação segura Facilita releases automáticas e reduz passos manuais. * fix(ci): corrige push no workflow de release usando token correto para evitar erro 403 * fix(release): corrigir push no workflow com token npm * ci: add release create PR and publish workflows - Adiciona workflow para criar branch de release e abrir PR automático - Adiciona workflow para publicar pacote no npm após merge na main - Mantém CI de testes e cobertura separados * refactor: separar workflows em ci, release-create-pr e release-publish para automação correta - Criado workflow para testes e cobertura (ci.yml) - Criado workflow para criação automática de branch e PR de release (release-create-pr.yml) - Criado workflow para publicar pacote npm após merge na main (release-publish.yml) * fix(ci): desabilitar verificação GPG no upload para Codecov - Adiciona variável de ambiente CODECOV_GPG_VERIFY=false para evitar erro de assinatura GPG - Corrige falha na action do Codecov ao validar a assinatura do binário * fix(release): corrigir token npm para publicação e separar workflows em release-create-pr e release-publish * fix(workflow): ajusta release-publish.yml e release-create-pr.yml - Corrige nome do token NPM (NODE_AUTH_TOKEN) - Refatora publish para só ocorrer em merges da release/* - Implementa fluxo profissional com PR de release automática * Ajuste no release pr * chore(release): 1.1.0 --------- Co-authored-by: Gustavo <gustavomarquesm@gmail.com>
1 parent 52b666a commit f838e07

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
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.
44

5+
## [1.1.0](https://github.com/devflow-modules/jwt-auth/compare/v1.0.4...v1.1.0) (2025-07-24)
6+
7+
8+
### Features
9+
10+
* **roles-middleware:** adiciona middleware protectWithRoles para proteção por roles ([#9](https://github.com/devflow-modules/jwt-auth/issues/9)) ([3694ac2](https://github.com/devflow-modules/jwt-auth/commit/3694ac26e8784d3b7e209620cfb38aeb942065c4))
11+
12+
13+
### Bug Fixes
14+
15+
* **ci:** corrige push no workflow de release usando token correto para evitar erro 403 ([22161e6](https://github.com/devflow-modules/jwt-auth/commit/22161e6864d835dc710275d99a04586d8ccf7469))
16+
* **ci:** desabilitar verificação GPG no upload para Codecov ([fe23a5d](https://github.com/devflow-modules/jwt-auth/commit/fe23a5d7d0c29b706d91759b4fa6f231936b13e1))
17+
* **release-publish:** corrige push usando token no workflow para evitar erro 403 ([35b7536](https://github.com/devflow-modules/jwt-auth/commit/35b7536969c3366e79f7a807b979c5db1f6dd5b4))
18+
* **release:** corrigir push no workflow com token npm ([5e7beb0](https://github.com/devflow-modules/jwt-auth/commit/5e7beb0ea49add7a362411dc7cd6c1fc94e8d327))
19+
* **release:** corrigir token npm e separar workflows de release e PR ([#15](https://github.com/devflow-modules/jwt-auth/issues/15)) ([b785ee7](https://github.com/devflow-modules/jwt-auth/commit/b785ee7641caa201b855eeb8f85f16f08cfa910c))
20+
* **release:** corrigir token npm para publicação e separar workflows em release-create-pr e release-publish ([0036764](https://github.com/devflow-modules/jwt-auth/commit/0036764089675c178cea1371e2dd390f29a35082))
21+
* **workflow:** ajusta release-publish.yml e release-create-pr.yml ([27aeeda](https://github.com/devflow-modules/jwt-auth/commit/27aeeda71343cf8357e73053043dbbd0d6af42bc))
22+
523
### [1.0.4](https://github.com/devflow-modules/jwt-auth/compare/v1.0.1...v1.0.4) (2025-07-24)
624

725

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devflow-modules/jwt-auth",
3-
"version": "1.0.4",
3+
"version": "1.1.0",
44
"description": "Autenticação JWT modular para Node.js com suporte a refresh token, cookies HTTP-only, bcrypt e middleware Express.",
55
"main": "./src/index.js",
66
"exports": {

0 commit comments

Comments
 (0)