Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
manegron committed Oct 10, 2024
2 parents f0807eb + 4379c74 commit 5ea078a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 17 deletions.
25 changes: 15 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
cookbook-webui CHANGELOG
===============

## 0.4.2

- Miguel Negrón
- [8481910] Add pre and postun to clean the cookbook

## 0.4.1

- Daniel Castro
Expand All @@ -11,7 +16,7 @@ cookbook-webui CHANGELOG
- Miguel Negrón
- [2701d25] Merge pull request #45 from redBorder/feature/#18077_addPuppeteerGrover
- [cce4c28] Merge pull request #57 from redBorder/bugfix/#18648_dont_use_point_node_in_nginx
- Miguel Negron
- Miguel Negrón
- [59ad767] Rename puppeteer RPM to redborder-webui-node-modules
- [493e0c1] resolve conflicts with development
- [1f1c52f] Update provider to pass lint
Expand All @@ -25,7 +30,7 @@ cookbook-webui CHANGELOG

## 0.3.7

- Miguel Negron
- Miguel Negrón
- [6ab4784] Add new way to trigger webui upgrade steps
- [fd31222] Bump version & CHANGELOG
- [e01cb56] dont use .node in nginx
Expand All @@ -36,7 +41,7 @@ cookbook-webui CHANGELOG

- Miguel Negrón
- [cce4c28] Merge pull request #57 from redBorder/bugfix/#18648_dont_use_point_node_in_nginx
- Miguel Negron
- Miguel Negrón
- [e01cb56] dont use .node in nginx

## 0.3.5
Expand All @@ -46,12 +51,12 @@ cookbook-webui CHANGELOG

## 0.3.4

- Miguel Negron
- Miguel Negrón
- [c30c503] fix bug

## 0.3.3

- Miguel Negron
- Miguel Negrón
- [c7971ff] Add and improve delete code by accident

## 0.3.2
Expand Down Expand Up @@ -84,12 +89,12 @@ cookbook-webui CHANGELOG

## 0.2.3

- Miguel Negron
- Miguel Negrón
- [8c95c91] clean assets before precompile on updates

## 0.2.2

- Miguel Negron
- Miguel Negrón
- [6293c0c] Dont run seed everytime

## 0.2.1
Expand All @@ -105,7 +110,7 @@ cookbook-webui CHANGELOG

## 0.1.15

- Miguel Negron
- Miguel Negrón
- [28ce81e] Run assets precompile as root

## 0.1.14
Expand All @@ -120,7 +125,7 @@ cookbook-webui CHANGELOG

## 0.1.12

- Miguel Negron
- Miguel Negrón
- [f530cb2] Remove bi module

## 0.1.11
Expand All @@ -133,7 +138,7 @@ cookbook-webui CHANGELOG

## 0.1.10

- Miguel Negron
- Miguel Negrón
- [02252f6] lint

This file is used to list changes made in each version of the redborder webui cookbook.
Expand Down
27 changes: 21 additions & 6 deletions packaging/rpm/cookbook-webui.spec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ chmod -R 0755 %{buildroot}/var/chef/cookbooks/webui
install -D -m 0644 README.md %{buildroot}/var/chef/cookbooks/webui/README.md

%pre
if [ -d /var/chef/cookbooks/webui ]; then
rm -rf /var/chef/cookbooks/webui
fi

%post
case "$1" in
Expand All @@ -37,6 +40,12 @@ case "$1" in
;;
esac

%postun
# Deletes directory when uninstall the package
if [ "$1" = 0 ] && [ -d /var/chef/cookbooks/webui ]; then
rm -rf /var/chef/cookbooks/webui
fi

%files
%defattr(0755,root,root)
/var/chef/cookbooks/webui
Expand All @@ -47,14 +56,20 @@ esac
%doc

%changelog
* Thu Jan 18 2024 Miguel Negrón <[email protected]> - 0.1.7-1
* Thu Oct 10 2024 Miguel Negrón <[email protected]>
- Add pre and postun

* Thu Jan 18 2024 Miguel Negrón <[email protected]>
- Fix multidatasource and location druid datastore name
* Thu Nov 16 2023 Miguel Negrón <[email protected]> - 0.1.6-1

* Thu Nov 16 2023 Miguel Negrón <[email protected]>
- Add optional audits for webui
* Fri Sep 22 2023 Miguel Negrón <[email protected]> - 0.1.5-1
* Fri May 05 2023 Luis J. Blanco Mier <[email protected]> - 0.1.4

* Fri May 05 2023 Luis J. Blanco Mier <[email protected]>
- default dashboard
* Fri Jan 07 2022 David Vanhoucke <[email protected]> - 0.0.10-1

* Fri Jan 07 2022 David Vanhoucke <[email protected]>
- change register to consul
* Tue Nov 08 2016 Your name <[email protected]> - 1.0.0-1

* Tue Nov 08 2016 Your name <[email protected]>
- first spec version
2 changes: 1 addition & 1 deletion resources/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
maintainer_email '[email protected]'
license 'AGPL-3.0'
description 'Installs/Configures cookbook-webui'
version '0.4.1'
version '0.4.2'

0 comments on commit 5ea078a

Please sign in to comment.