Skip to content

Commit

Permalink
Merge branch 'release/0.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
mblomdahl committed Dec 13, 2017
2 parents dc03359 + 4511943 commit 3ff8cf9
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 8 deletions.
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,23 @@ DB Models
Changelog
=========

v. 0.6.4
--------

* Provisioning and stability updates (`#121 <https://github.com/libris/xl_auth/issues/121>`_,
`#122 <https://github.com/libris/xl_auth/issues/122>`_)


v. 0.6.3
--------

* Added "view collection" link to user profile page
* *Terms of Service* view added, requesting the user to approve
(`#112 <https://github.com/libris/xl_auth/issues/112>`_)
* Bug fix for loading Voyager permissions on SEK
(`#113 <https://github.com/libris/xl_auth/issues/113>`_)
* Bug fix for permissions exchange with LibrisXL
(`#110 <https://github.com/libris/xl_auth/issues/110>`_)


v. 0.6.2
Expand Down
1 change: 1 addition & 0 deletions ansible/roles/common/tasks/install-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- tree
- gcc
- python-devel
- yum-plugin-versionlock

- name: install emacs
yum: name=emacs state=present
Expand Down
7 changes: 7 additions & 0 deletions ansible/roles/docker/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---

- name: restart docker
service: name=docker state=restarted
check_mode: no

...
23 changes: 17 additions & 6 deletions ansible/roles/docker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,31 @@
gpgkey: https://download.docker.com/linux/centos/gpg
tags: docker

- name: install docker-ce-17.09.0.ce
yum: name=docker-ce-17.09.0.ce state=present
- name: remove docker-ce version lock
shell: yum versionlock delete docker-ce
register: versionlock_delete_docker
changed_when: '"versionlock delete: no matches" in versionlock_delete_docker.stdout'
failed_when: no
tags: docker

- name: install docker-ce-17.09.1.ce
yum: name=docker-ce-17.09.1.ce state=present allow_downgrade=yes
tags: docker

- name: add docker-ce version lock
shell: yum versionlock docker-ce
changed_when: no
tags: docker

- name: install docker-compose-1.16.1
pip: name=docker-compose version=1.16.1 state=present
tags: docker

- name: template docker daemon.json
lineinfile:
template:
src: daemon.json.j2
dest: /etc/docker/daemon.json
state: absent
create: yes
line: '{"experimental": true}'
notify: restart docker
tags: docker

- name: docker running and enabled
Expand Down
3 changes: 3 additions & 0 deletions ansible/roles/docker/templates/daemon.json.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"iptables": false
}
2 changes: 2 additions & 0 deletions ansible/roles/xl_auth/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
name: postgres
image: postgres:9.4-alpine
state: started
restart_policy: unless-stopped
volume_driver: local
volumes:
- postgres:/var/lib/postgresql/data
Expand All @@ -23,6 +24,7 @@
pull: yes
command: run -h 0.0.0.0 -p 5000 --with-threads
state: started
restart_policy: unless-stopped
links:
- postgres
ports:
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xl_auth",
"version": "0.6.3",
"version": "0.6.4",
"author": "National Library of Sweden",
"license": "Apache-2.0",
"description": "Authorization and OAuth2 provider for LibrisXL",
Expand Down

0 comments on commit 3ff8cf9

Please sign in to comment.